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
c63457b1
Kaydet (Commit)
c63457b1
authored
Eki 15, 2009
tarafından
Benjamin Peterson
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
make inspect.isabstract() always return a boolean; add a test for it, too #7069
üst
ca2d2529
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
26 additions
and
1 deletion
+26
-1
inspect.py
Lib/inspect.py
+1
-1
test_inspect.py
Lib/test/test_inspect.py
+23
-0
NEWS
Misc/NEWS
+2
-0
No files found.
Lib/inspect.py
Dosyayı görüntüle @
c63457b1
...
...
@@ -242,7 +242,7 @@ def isroutine(object):
def
isabstract
(
object
):
"""Return true if the object is an abstract base class (ABC)."""
return
isinstance
(
object
,
type
)
and
object
.
__flags__
&
TPFLAGS_IS_ABSTRACT
return
bool
(
isinstance
(
object
,
type
)
and
object
.
__flags__
&
TPFLAGS_IS_ABSTRACT
)
def
getmembers
(
object
,
predicate
=
None
):
"""Return all members of an object as (name, value) pairs sorted by name.
...
...
Lib/test/test_inspect.py
Dosyayı görüntüle @
c63457b1
...
...
@@ -115,6 +115,29 @@ class TestPredicates(IsTestBase):
self
.
assertTrue
(
'a'
in
members
)
self
.
assertTrue
(
'b'
not
in
members
)
def
test_isabstract
(
self
):
from
abc
import
ABCMeta
,
abstractmethod
class
AbstractClassExample
(
object
):
__metaclass__
=
ABCMeta
@abstractmethod
def
foo
(
self
):
pass
class
ClassExample
(
AbstractClassExample
):
def
foo
(
self
):
pass
a
=
ClassExample
()
# Test general behaviour.
self
.
assertTrue
(
inspect
.
isabstract
(
AbstractClassExample
))
self
.
assertFalse
(
inspect
.
isabstract
(
ClassExample
))
self
.
assertFalse
(
inspect
.
isabstract
(
a
))
self
.
assertFalse
(
inspect
.
isabstract
(
int
))
self
.
assertFalse
(
inspect
.
isabstract
(
5
))
class
TestInterpreterStack
(
IsTestBase
):
def
__init__
(
self
,
*
args
,
**
kwargs
):
...
...
Misc/NEWS
Dosyayı görüntüle @
c63457b1
...
...
@@ -405,6 +405,8 @@ Core and Builtins
Library
-------
- Issue #7069: Make inspect.isabstract() return a boolean.
- Add support to the `ihooks` module for relative imports.
- Issue #6894: Fixed the issue urllib2 doesn't respect "no_proxy" environment
...
...
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