Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
0081cc52
Kaydet (Commit)
0081cc52
authored
Agu 14, 1999
tarafından
Greg Ward
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Better detection of bad entries in option table.
Better error messages for bad entries in option table.
üst
8c66b697
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
3 deletions
+11
-3
fancy_getopt.py
Lib/distutils/fancy_getopt.py
+11
-3
No files found.
Lib/distutils/fancy_getopt.py
Dosyayı görüntüle @
0081cc52
...
...
@@ -47,16 +47,24 @@ def fancy_getopt (options, object, args):
attr_name
=
{}
takes_arg
=
{}
for
(
long
,
short
,
help
)
in
options
:
for
option
in
options
:
try
:
(
long
,
short
,
help
)
=
option
except
ValueError
:
raise
DistutilsGetoptError
,
\
"invalid option tuple "
+
str
(
option
)
# Type-check the option names
if
type
(
long
)
is
not
StringType
or
len
(
long
)
<
2
:
raise
DistutilsGetoptError
,
\
"long option must be a string of length >= 2"
"long option '
%
s' must be a string of length >= 2"
%
\
long
if
(
not
((
short
is
None
)
or
(
type
(
short
)
is
StringType
and
len
(
short
)
==
1
))):
raise
DistutilsGetoptError
,
\
"short option must be None or string of length 1"
"short option '
%
s' must be None or string of length 1"
%
\
short
long_opts
.
append
(
long
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment