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
3323da92
Kaydet (Commit)
3323da92
authored
Nis 11, 2015
tarafından
Ethan Furman
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue23826: fix doc test for -OO runs
üst
2995cc68
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
35 additions
and
4 deletions
+35
-4
test_enum.py
Lib/test/test_enum.py
+35
-4
No files found.
Lib/test/test_enum.py
Dosyayı görüntüle @
3323da92
...
...
@@ -1556,7 +1556,7 @@ class TestUnique(unittest.TestCase):
turkey
=
3
expected_help_output
=
"""
expected_help_output
_with_docs
=
"""
\
Help on class Color in module
%
s:
class Color(enum.Enum)
...
...
@@ -1593,8 +1593,36 @@ class Color(enum.Enum)
| Returns a mapping of member name->value.
|
\x20\x20\x20\x20\x20\x20
| This mapping lists all enum members, including aliases. Note that this
| is a read-only view of the internal mapping.
"""
.
strip
()
| is a read-only view of the internal mapping."""
expected_help_output_without_docs
=
"""
\
Help on class Color in module
%
s:
class Color(enum.Enum)
| Method resolution order:
| Color
| enum.Enum
| builtins.object
|
\x20\x20
| Data and other attributes defined here:
|
\x20\x20
| blue = <Color.blue: 3>
|
\x20\x20
| green = <Color.green: 2>
|
\x20\x20
| red = <Color.red: 1>
|
\x20\x20
| ----------------------------------------------------------------------
| Data descriptors inherited from enum.Enum:
|
\x20\x20
| name
|
\x20\x20
| value
|
\x20\x20
| ----------------------------------------------------------------------
| Data descriptors inherited from enum.EnumMeta:
|
\x20\x20
| __members__"""
class
TestStdLib
(
unittest
.
TestCase
):
...
...
@@ -1605,7 +1633,10 @@ class TestStdLib(unittest.TestCase):
def
test_pydoc
(
self
):
# indirectly test __objclass__
expected_text
=
expected_help_output
%
__name__
if
StrEnum
.
__doc__
is
None
:
expected_text
=
expected_help_output_without_docs
%
__name__
else
:
expected_text
=
expected_help_output_with_docs
%
__name__
output
=
StringIO
()
helper
=
pydoc
.
Helper
(
output
=
output
)
helper
(
self
.
Color
)
...
...
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