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
b54447f3
Kaydet (Commit)
b54447f3
authored
Ock 13, 2009
tarafından
Amaury Forgeot d'Arc
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
#1162154: inspect.getmembers() now skips attributes that raise AttributeError,
e.g. a __slots__ attribute which has not been set.
üst
a18392a3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
19 additions
and
2 deletions
+19
-2
inspect.py
Lib/inspect.py
+4
-1
test_inspect.py
Lib/test/test_inspect.py
+11
-0
NEWS
Misc/NEWS
+4
-1
No files found.
Lib/inspect.py
Dosyayı görüntüle @
b54447f3
...
...
@@ -253,7 +253,10 @@ def getmembers(object, predicate=None):
Optionally, only return members that satisfy a given predicate."""
results
=
[]
for
key
in
dir
(
object
):
value
=
getattr
(
object
,
key
)
try
:
value
=
getattr
(
object
,
key
)
except
AttributeError
:
continue
if
not
predicate
or
predicate
(
value
):
results
.
append
((
key
,
value
))
results
.
sort
()
...
...
Lib/test/test_inspect.py
Dosyayı görüntüle @
b54447f3
...
...
@@ -91,6 +91,17 @@ class TestPredicates(IsTestBase):
self
.
assert_
(
inspect
.
isroutine
(
mod
.
spam
))
self
.
assert_
(
inspect
.
isroutine
([]
.
count
))
def
test_get_slot_members
(
self
):
class
C
(
object
):
__slots__
=
(
"a"
,
"b"
)
x
=
C
()
x
.
a
=
42
members
=
dict
(
inspect
.
getmembers
(
x
))
self
.
assert_
(
'a'
in
members
)
self
.
assert_
(
'b'
not
in
members
)
class
TestInterpreterStack
(
IsTestBase
):
def
__init__
(
self
,
*
args
,
**
kwargs
):
unittest
.
TestCase
.
__init__
(
self
,
*
args
,
**
kwargs
)
...
...
Misc/NEWS
Dosyayı görüntüle @
b54447f3
...
...
@@ -137,7 +137,10 @@ Core and Builtins
Library
-------
- Issue #1696199: Add collections.Counter() for rapid and convenient
- Issue #1162154: inspect.getmembers() now skips attributes that raise
AttributeError, e.g. a __slots__ attribute which has not been set.
- Issue #1696199: Add collections.Counter() for rapid and convenient
counting.
- Issue #3860: GzipFile and BZ2File now support the context manager protocol.
...
...
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