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
056eb027
Kaydet (Commit)
056eb027
authored
Şub 19, 2014
tarafından
Serhiy Storchaka
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #20654: Fixed pydoc for enums with zero value. Patch by Vajrasky Kok.
üst
4ac30f17
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
18 additions
and
3 deletions
+18
-3
pydoc.py
Lib/pydoc.py
+6
-3
test_pydoc.py
Lib/test/test_pydoc.py
+10
-0
NEWS
Misc/NEWS
+2
-0
No files found.
Lib/pydoc.py
Dosyayı görüntüle @
056eb027
...
...
@@ -1244,9 +1244,12 @@ location listed above.
doc
=
getdoc
(
value
)
else
:
doc
=
None
push
(
self
.
docother
(
getattr
(
object
,
name
,
None
)
or
homecls
.
__dict__
[
name
],
name
,
mod
,
maxlen
=
70
,
doc
=
doc
)
+
'
\n
'
)
try
:
obj
=
getattr
(
object
,
name
)
except
AttributeError
:
obj
=
homecls
.
__dict__
[
name
]
push
(
self
.
docother
(
obj
,
name
,
mod
,
maxlen
=
70
,
doc
=
doc
)
+
'
\n
'
)
return
attrs
attrs
=
[(
name
,
kind
,
cls
,
value
)
...
...
Lib/test/test_pydoc.py
Dosyayı görüntüle @
056eb027
...
...
@@ -386,6 +386,16 @@ class PydocDocTest(unittest.TestCase):
print_diffs
(
expected_text
,
result
)
self
.
fail
(
"outputs are not equal, see diff above"
)
def
test_text_enum_member_with_value_zero
(
self
):
# Test issue #20654 to ensure enum member with value 0 can be
# displayed. It used to throw KeyError: 'zero'.
import
enum
class
BinaryInteger
(
enum
.
IntEnum
):
zero
=
0
one
=
1
doc
=
pydoc
.
render_doc
(
BinaryInteger
)
self
.
assertIn
(
'<BinaryInteger.zero: 0>'
,
doc
)
def
test_issue8225
(
self
):
# Test issue8225 to ensure no doc link appears for xml.etree
result
,
doc_loc
=
get_pydoc_text
(
xml
.
etree
)
...
...
Misc/NEWS
Dosyayı görüntüle @
056eb027
...
...
@@ -28,6 +28,8 @@ Core and Builtins
Library
-------
- Issue #20654: Fixed pydoc for enums with zero value. Patch by Vajrasky Kok.
- Issue #20635: Fixed grid_columnconfigure() and grid_rowconfigure() methods of
Tkinter widgets to work in wantobjects=True mode.
...
...
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