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
35184edd
Kaydet (Commit)
35184edd
authored
Kas 20, 2010
tarafından
Michael Foord
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue 9732: __class__ no longer checked on objects by getattr_static
üst
e516265b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
2 deletions
+13
-2
inspect.py
Lib/inspect.py
+8
-1
test_inspect.py
Lib/test/test_inspect.py
+5
-1
No files found.
Lib/inspect.py
Dosyayı görüntüle @
35184edd
...
...
@@ -1080,6 +1080,13 @@ def _check_class(klass, attr):
pass
return
_sentinel
def
_is_type
(
obj
):
try
:
_static_getmro
(
obj
)
except
TypeError
:
return
False
return
True
def
getattr_static
(
obj
,
attr
,
default
=
_sentinel
):
"""Retrieve attributes without triggering dynamic lookup via the
...
...
@@ -1093,7 +1100,7 @@ def getattr_static(obj, attr, default=_sentinel):
documentation for details.
"""
instance_result
=
_sentinel
if
not
isinstance
(
obj
,
type
):
if
not
_is_type
(
obj
):
instance_result
=
_check_instance
(
obj
,
attr
)
klass
=
type
(
obj
)
else
:
...
...
Lib/test/test_inspect.py
Dosyayı görüntüle @
35184edd
...
...
@@ -860,11 +860,15 @@ class TestGetattrStatic(unittest.TestCase):
foo
=
3
class
Something
(
Base
):
executed
=
False
@property
def
__class__
(
self
):
self
.
executed
=
True
return
object
self
.
assertEqual
(
inspect
.
getattr_static
(
Something
(),
'foo'
),
3
)
instance
=
Something
()
self
.
assertEqual
(
inspect
.
getattr_static
(
instance
,
'foo'
),
3
)
self
.
assertFalse
(
instance
.
executed
)
self
.
assertEqual
(
inspect
.
getattr_static
(
Something
,
'foo'
),
3
)
def
test_mro_as_property
(
self
):
...
...
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