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
c43125a0
Kaydet (Commit)
c43125a0
authored
Nis 23, 2012
tarafından
R David Murray
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
#14638: pydoc now treats non-str __name__ as None instead of raising
Original patch by Peter Otten.
üst
88ec6209
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
16 additions
and
1 deletion
+16
-1
pydoc.py
Lib/pydoc.py
+2
-1
test_pydoc.py
Lib/test/test_pydoc.py
+11
-0
NEWS
Misc/NEWS
+3
-0
No files found.
Lib/pydoc.py
Dosyayı görüntüle @
c43125a0
...
...
@@ -1525,7 +1525,8 @@ def resolve(thing, forceload=0):
raise
ImportError
(
'no Python documentation found for
%
r'
%
thing
)
return
object
,
thing
else
:
return
thing
,
getattr
(
thing
,
'__name__'
,
None
)
name
=
getattr
(
thing
,
'__name__'
,
None
)
return
thing
,
name
if
isinstance
(
name
,
str
)
else
None
def
render_doc
(
thing
,
title
=
'Python Library Documentation:
%
s'
,
forceload
=
0
,
renderer
=
None
):
...
...
Lib/test/test_pydoc.py
Dosyayı görüntüle @
c43125a0
...
...
@@ -282,6 +282,17 @@ class PydocDocTest(unittest.TestCase):
result
,
doc_loc
=
get_pydoc_text
(
xml
.
etree
)
self
.
assertEqual
(
doc_loc
,
""
,
"MODULE DOCS incorrectly includes a link"
)
def
test_non_str_name
(
self
):
# issue14638
# Treat illegal (non-str) name like no name
class
A
:
__name__
=
42
class
B
:
pass
adoc
=
pydoc
.
render_doc
(
A
())
bdoc
=
pydoc
.
render_doc
(
B
())
self
.
assertEqual
(
adoc
.
replace
(
"A"
,
"B"
),
bdoc
)
def
test_not_here
(
self
):
missing_module
=
"test.i_am_not_here"
result
=
str
(
run_pydoc
(
missing_module
),
'ascii'
)
...
...
Misc/NEWS
Dosyayı görüntüle @
c43125a0
...
...
@@ -50,6 +50,9 @@ Core and Builtins
Library
-------
- Issue #14638: pydoc now treats non-string __name__ values as if they
were missing, instead of raising an error.
- Issue #13684: Fix httplib tunnel issue of infinite loops for certain sites
which send EOF without trailing \r\n.
...
...
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