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
362c1b51
Kaydet (Commit)
362c1b51
authored
Eyl 05, 2013
tarafından
Serhiy Storchaka
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #18830: inspect.getclasstree() no more produces duplicated entries even
when input list contains duplicates.
üst
e1040e27
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
26 additions
and
3 deletions
+26
-3
inspect.py
Lib/inspect.py
+2
-1
inspect_fodder.py
Lib/test/inspect_fodder.py
+2
-0
test_inspect.py
Lib/test/test_inspect.py
+19
-2
NEWS
Misc/NEWS
+3
-0
No files found.
Lib/inspect.py
Dosyayı görüntüle @
362c1b51
...
...
@@ -753,7 +753,8 @@ def getclasstree(classes, unique=False):
for
parent
in
c
.
__bases__
:
if
not
parent
in
children
:
children
[
parent
]
=
[]
children
[
parent
]
.
append
(
c
)
if
c
not
in
children
[
parent
]:
children
[
parent
]
.
append
(
c
)
if
unique
and
parent
in
classes
:
break
elif
c
not
in
roots
:
roots
.
append
(
c
)
...
...
Lib/test/inspect_fodder.py
Dosyayı görüntüle @
362c1b51
...
...
@@ -49,6 +49,8 @@ class StupidGit:
class
MalodorousPervert
(
StupidGit
):
pass
Tit
=
MalodorousPervert
class
ParrotDroppings
:
pass
...
...
Lib/test/test_inspect.py
Dosyayı görüntüle @
362c1b51
...
...
@@ -224,8 +224,25 @@ class TestRetrievingSourceCode(GetSourceBase):
[(
'FesteringGob'
,
mod
.
FesteringGob
),
(
'MalodorousPervert'
,
mod
.
MalodorousPervert
),
(
'ParrotDroppings'
,
mod
.
ParrotDroppings
),
(
'StupidGit'
,
mod
.
StupidGit
)])
tree
=
inspect
.
getclasstree
([
cls
[
1
]
for
cls
in
classes
],
1
)
(
'StupidGit'
,
mod
.
StupidGit
),
(
'Tit'
,
mod
.
MalodorousPervert
),
])
tree
=
inspect
.
getclasstree
([
cls
[
1
]
for
cls
in
classes
])
self
.
assertEqual
(
tree
,
[(
object
,
()),
[(
mod
.
ParrotDroppings
,
(
object
,)),
[(
mod
.
FesteringGob
,
(
mod
.
MalodorousPervert
,
mod
.
ParrotDroppings
))
],
(
mod
.
StupidGit
,
(
object
,)),
[(
mod
.
MalodorousPervert
,
(
mod
.
StupidGit
,)),
[(
mod
.
FesteringGob
,
(
mod
.
MalodorousPervert
,
mod
.
ParrotDroppings
))
]
]
]
])
tree
=
inspect
.
getclasstree
([
cls
[
1
]
for
cls
in
classes
],
True
)
self
.
assertEqual
(
tree
,
[(
object
,
()),
[(
mod
.
ParrotDroppings
,
(
object
,)),
...
...
Misc/NEWS
Dosyayı görüntüle @
362c1b51
...
...
@@ -66,6 +66,9 @@ Core and Builtins
Library
-------
- Issue #18830: inspect.getclasstree() no more produces duplicated entries even
when input list contains duplicates.
- Issue #18909: Fix _tkinter.tkapp.interpaddr() on Windows 64-bit, don'
t
cast
64
-
bit
pointer
to
long
(
32
bits
).
...
...
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