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
5cf2b725
Kaydet (Commit)
5cf2b725
authored
Nis 03, 2015
tarafından
Serhiy Storchaka
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #15582: inspect.getdoc() now follows inheritance chains.
üst
41525e31
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
110 additions
and
1 deletion
+110
-1
inspect.rst
Doc/library/inspect.rst
+3
-0
inspect.py
Lib/inspect.py
+73
-0
inspect_fodder.py
Lib/test/inspect_fodder.py
+10
-0
test_inspect.py
Lib/test/test_inspect.py
+22
-1
NEWS
Misc/NEWS
+2
-0
No files found.
Doc/library/inspect.rst
Dosyayı görüntüle @
5cf2b725
...
...
@@ -356,6 +356,9 @@ Retrieving source code
.. function:: getdoc(object)
Get the documentation string for an object, cleaned up with :func:`cleandoc`.
If the documentation string for an object is not provided and the object is
a class, a method, a property or a descriptor, retrieve the documentation
string from the inheritance hierarchy.
.. function:: getcomments(object)
...
...
Lib/inspect.py
Dosyayı görüntüle @
5cf2b725
...
...
@@ -468,6 +468,74 @@ def indentsize(line):
expline
=
line
.
expandtabs
()
return
len
(
expline
)
-
len
(
expline
.
lstrip
())
def
_findclass
(
func
):
cls
=
sys
.
modules
.
get
(
func
.
__module__
)
if
cls
is
None
:
return
None
for
name
in
func
.
__qualname__
.
split
(
'.'
)[:
-
1
]:
cls
=
getattr
(
cls
,
name
)
if
not
isclass
(
cls
):
return
None
return
cls
def
_finddoc
(
obj
):
if
isclass
(
obj
):
for
base
in
obj
.
__mro__
:
if
base
is
not
object
:
try
:
doc
=
base
.
__doc__
except
AttributeError
:
continue
if
doc
is
not
None
:
return
doc
return
None
if
ismethod
(
obj
):
name
=
obj
.
__func__
.
__name__
self
=
obj
.
__self__
if
(
isclass
(
self
)
and
getattr
(
getattr
(
self
,
name
,
None
),
'__func__'
)
is
obj
.
__func__
):
# classmethod
cls
=
self
else
:
cls
=
self
.
__class__
elif
isfunction
(
obj
):
name
=
obj
.
__name__
cls
=
_findclass
(
obj
)
if
cls
is
None
or
getattr
(
cls
,
name
)
is
not
obj
:
return
None
elif
isbuiltin
(
obj
):
name
=
obj
.
__name__
self
=
obj
.
__self__
if
(
isclass
(
self
)
and
self
.
__qualname__
+
'.'
+
name
==
obj
.
__qualname__
):
# classmethod
cls
=
self
else
:
cls
=
self
.
__class__
elif
ismethoddescriptor
(
obj
)
or
isdatadescriptor
(
obj
):
name
=
obj
.
__name__
cls
=
obj
.
__objclass__
if
getattr
(
cls
,
name
)
is
not
obj
:
return
None
elif
isinstance
(
obj
,
property
):
func
=
f
.
fget
name
=
func
.
__name__
cls
=
_findclass
(
func
)
if
cls
is
None
or
getattr
(
cls
,
name
)
is
not
obj
:
return
None
else
:
return
None
for
base
in
cls
.
__mro__
:
try
:
doc
=
getattr
(
base
,
name
)
.
__doc__
except
AttributeError
:
continue
if
doc
is
not
None
:
return
doc
return
None
def
getdoc
(
object
):
"""Get the documentation string for an object.
...
...
@@ -478,6 +546,11 @@ def getdoc(object):
doc
=
object
.
__doc__
except
AttributeError
:
return
None
if
doc
is
None
:
try
:
doc
=
_finddoc
(
object
)
except
(
AttributeError
,
TypeError
):
return
None
if
not
isinstance
(
doc
,
str
):
return
None
return
cleandoc
(
doc
)
...
...
Lib/test/inspect_fodder.py
Dosyayı görüntüle @
5cf2b725
...
...
@@ -45,8 +45,15 @@ class StupidGit:
self
.
ex
=
sys
.
exc_info
()
self
.
tr
=
inspect
.
trace
()
def
contradiction
(
self
):
'The automatic gainsaying.'
pass
# line 48
class
MalodorousPervert
(
StupidGit
):
def
abuse
(
self
,
a
,
b
,
c
):
pass
def
contradiction
(
self
):
pass
Tit
=
MalodorousPervert
...
...
@@ -55,4 +62,7 @@ class ParrotDroppings:
pass
class
FesteringGob
(
MalodorousPervert
,
ParrotDroppings
):
def
abuse
(
self
,
a
,
b
,
c
):
pass
def
contradiction
(
self
):
pass
Lib/test/test_inspect.py
Dosyayı görüntüle @
5cf2b725
...
...
@@ -292,6 +292,27 @@ class TestRetrievingSourceCode(GetSourceBase):
self
.
assertEqual
(
inspect
.
getdoc
(
git
.
abuse
),
'Another
\n\n
docstring
\n\n
containing
\n\n
tabs'
)
@unittest.skipIf
(
sys
.
flags
.
optimize
>=
2
,
"Docstrings are omitted with -O2 and above"
)
def
test_getdoc_inherited
(
self
):
self
.
assertEqual
(
inspect
.
getdoc
(
mod
.
FesteringGob
),
'A longer,
\n\n
indented
\n\n
docstring.'
)
self
.
assertEqual
(
inspect
.
getdoc
(
mod
.
FesteringGob
.
abuse
),
'Another
\n\n
docstring
\n\n
containing
\n\n
tabs'
)
self
.
assertEqual
(
inspect
.
getdoc
(
mod
.
FesteringGob
()
.
abuse
),
'Another
\n\n
docstring
\n\n
containing
\n\n
tabs'
)
self
.
assertEqual
(
inspect
.
getdoc
(
mod
.
FesteringGob
.
contradiction
),
'The automatic gainsaying.'
)
@unittest.skipIf
(
MISSING_C_DOCSTRINGS
,
"test requires docstrings"
)
def
test_finddoc
(
self
):
finddoc
=
inspect
.
_finddoc
self
.
assertEqual
(
finddoc
(
int
),
int
.
__doc__
)
self
.
assertEqual
(
finddoc
(
int
.
to_bytes
),
int
.
to_bytes
.
__doc__
)
self
.
assertEqual
(
finddoc
(
int
()
.
to_bytes
),
int
.
to_bytes
.
__doc__
)
self
.
assertEqual
(
finddoc
(
int
.
from_bytes
),
int
.
from_bytes
.
__doc__
)
self
.
assertEqual
(
finddoc
(
int
.
real
),
int
.
real
.
__doc__
)
def
test_cleandoc
(
self
):
self
.
assertEqual
(
inspect
.
cleandoc
(
'An
\n
indented
\n
docstring.'
),
'An
\n
indented
\n
docstring.'
)
...
...
@@ -316,7 +337,7 @@ class TestRetrievingSourceCode(GetSourceBase):
def
test_getsource
(
self
):
self
.
assertSourceEqual
(
git
.
abuse
,
29
,
39
)
self
.
assertSourceEqual
(
mod
.
StupidGit
,
21
,
46
)
self
.
assertSourceEqual
(
mod
.
StupidGit
,
21
,
50
)
def
test_getsourcefile
(
self
):
self
.
assertEqual
(
normcase
(
inspect
.
getsourcefile
(
mod
.
spam
)),
modfile
)
...
...
Misc/NEWS
Dosyayı görüntüle @
5cf2b725
...
...
@@ -16,6 +16,8 @@ Core and Builtins
Library
-------
- Issue #15582: inspect.getdoc() now follows inheritance chains.
- Issue #2175: SAX parsers now support a character stream of InputSource object.
- Issue #16840: Tkinter now supports 64-bit integers added in Tcl 8.4 and
...
...
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