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
6a772861
Kaydet (Commit)
6a772861
authored
Nis 10, 2015
tarafından
Serhiy Storchaka
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Merge heads
üst
3d2279f9
ecb75e26
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
26 additions
and
28 deletions
+26
-28
test_argparse.py
Lib/test/test_argparse.py
+26
-28
No files found.
Lib/test/test_argparse.py
Dosyayı görüntüle @
6a772861
...
...
@@ -3845,34 +3845,6 @@ class TestHelpNoHelpOptional(HelpTestCase):
version
=
''
class
TestHelpVersionOptional
(
HelpTestCase
):
"""Test that the --version argument can be suppressed help messages"""
parser_signature
=
Sig
(
prog
=
'PROG'
)
argument_signatures
=
[
Sig
(
'-v'
,
'--version'
,
action
=
'version'
,
version
=
'1.0'
),
Sig
(
'--foo'
,
help
=
'foo help'
),
Sig
(
'spam'
,
help
=
'spam help'
),
]
argument_group_signatures
=
[]
usage
=
'''
\
usage: PROG [-h] [-v] [--foo FOO] spam
'''
help
=
usage
+
'''
\
positional arguments:
spam spam help
optional arguments:
-h, --help show this help message and exit
-v, --version show program's version number and exit
--foo FOO foo help
'''
version
=
'''
\
1.0
'''
class
TestHelpNone
(
HelpTestCase
):
"""Test that no errors occur if no help is specified"""
...
...
@@ -4080,6 +4052,32 @@ class TestHelpVersionAction(HelpTestCase):
'''
version
=
''
class
TestHelpVersionActionSuppress
(
HelpTestCase
):
"""Test that the --version argument can be suppressed in help messages"""
parser_signature
=
Sig
(
prog
=
'PROG'
)
argument_signatures
=
[
Sig
(
'-v'
,
'--version'
,
action
=
'version'
,
version
=
'1.0'
,
help
=
argparse
.
SUPPRESS
),
Sig
(
'--foo'
,
help
=
'foo help'
),
Sig
(
'spam'
,
help
=
'spam help'
),
]
argument_group_signatures
=
[]
usage
=
'''
\
usage: PROG [-h] [--foo FOO] spam
'''
help
=
usage
+
'''
\
positional arguments:
spam spam help
optional arguments:
-h, --help show this help message and exit
--foo FOO foo help
'''
class
TestHelpSubparsersOrdering
(
HelpTestCase
):
"""Test ordering of subcommands in help matches the code"""
parser_signature
=
Sig
(
prog
=
'PROG'
,
...
...
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