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
5e5fbb61
Kaydet (Commit)
5e5fbb61
authored
Ock 17, 2009
tarafından
Benjamin Peterson
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
fix inspect.isclass() on instances with a custom __getattr__ #1225107
üst
59ce0427
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
16 additions
and
2 deletions
+16
-2
inspect.py
Lib/inspect.py
+1
-1
test_inspect.py
Lib/test/test_inspect.py
+12
-1
NEWS
Misc/NEWS
+3
-0
No files found.
Lib/inspect.py
Dosyayı görüntüle @
5e5fbb61
...
...
@@ -62,7 +62,7 @@ def isclass(object):
Class objects provide these attributes:
__doc__ documentation string
__module__ name of module in which this class was defined"""
return
isinstance
(
object
,
types
.
ClassType
)
or
hasattr
(
object
,
'__bases__'
)
return
isinstance
(
object
,
(
type
,
types
.
ClassType
)
)
def
ismethod
(
object
):
"""Return true if the object is an instance method.
...
...
Lib/test/test_inspect.py
Dosyayı görüntüle @
5e5fbb61
...
...
@@ -65,7 +65,6 @@ class TestPredicates(IsTestBase):
def
test_excluding_predicates
(
self
):
self
.
istest
(
inspect
.
isbuiltin
,
'sys.exit'
)
self
.
istest
(
inspect
.
isbuiltin
,
'[].append'
)
self
.
istest
(
inspect
.
isclass
,
'mod.StupidGit'
)
self
.
istest
(
inspect
.
iscode
,
'mod.spam.func_code'
)
self
.
istest
(
inspect
.
isframe
,
'tb.tb_frame'
)
self
.
istest
(
inspect
.
isfunction
,
'mod.spam'
)
...
...
@@ -91,6 +90,18 @@ class TestPredicates(IsTestBase):
self
.
assert_
(
inspect
.
isroutine
(
mod
.
spam
))
self
.
assert_
(
inspect
.
isroutine
([]
.
count
))
def
test_isclass
(
self
):
self
.
istest
(
inspect
.
isclass
,
'mod.StupidGit'
)
self
.
assertTrue
(
inspect
.
isclass
(
list
))
class
newstyle
(
object
):
pass
self
.
assertTrue
(
inspect
.
isclass
(
newstyle
))
class
CustomGetattr
(
object
):
def
__getattr__
(
self
,
attr
):
return
None
self
.
assertFalse
(
inspect
.
isclass
(
CustomGetattr
()))
def
test_get_slot_members
(
self
):
class
C
(
object
):
__slots__
=
(
"a"
,
"b"
)
...
...
Misc/NEWS
Dosyayı görüntüle @
5e5fbb61
...
...
@@ -137,6 +137,9 @@ Core and Builtins
Library
-------
- Issue #1225107: inspect.isclass() returned True for instances with a custom
__getattr__.
- Issue #3997: zipfiles generated with more than 65536 files could not be
opened with other applications.
...
...
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