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
e7dcc5e9
Kaydet (Commit)
e7dcc5e9
authored
Ock 28, 2014
tarafından
Yury Selivanov
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
inspect.signature: Support classes without user-defined __init__/__new__ #20308
üst
7aedea40
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
28 additions
and
0 deletions
+28
-0
inspect.py
Lib/inspect.py
+11
-0
test_inspect.py
Lib/test/test_inspect.py
+14
-0
NEWS
Misc/NEWS
+3
-0
No files found.
Lib/inspect.py
Dosyayı görüntüle @
e7dcc5e9
...
...
@@ -1561,6 +1561,17 @@ def signature(obj):
init
=
_get_user_defined_method
(
obj
,
'__init__'
)
if
init
is
not
None
:
sig
=
signature
(
init
)
if
sig
is
None
:
if
type
in
obj
.
__mro__
:
# 'obj' is a metaclass without user-defined __init__
# or __new__. Return a signature of 'type' builtin.
return
signature
(
type
)
else
:
# We have a class (not metaclass), but no user-defined
# __init__ or __new__ for it
return
signature
(
object
)
elif
not
isinstance
(
obj
,
_NonUserDefinedCallables
):
# An object with __call__
# We also check that the 'obj' is not an instance of
...
...
Lib/test/test_inspect.py
Dosyayı görüntüle @
e7dcc5e9
...
...
@@ -2045,6 +2045,20 @@ class TestSignatureObject(unittest.TestCase):
(
'bar'
,
2
,
...
,
"keyword_only"
)),
...
))
# Test classes without user-defined __init__ or __new__
class
C
:
pass
self
.
assertEqual
(
str
(
inspect
.
signature
(
C
)),
'()'
)
class
D
(
C
):
pass
self
.
assertEqual
(
str
(
inspect
.
signature
(
D
)),
'()'
)
# Test meta-classes without user-defined __init__ or __new__
class
C
(
type
):
pass
self
.
assertEqual
(
str
(
inspect
.
signature
(
C
)),
'(object_or_name, bases, dict)'
)
class
D
(
C
):
pass
self
.
assertEqual
(
str
(
inspect
.
signature
(
D
)),
'(object_or_name, bases, dict)'
)
def
test_signature_on_callable_objects
(
self
):
class
Foo
:
def
__call__
(
self
,
a
):
...
...
Misc/NEWS
Dosyayı görüntüle @
e7dcc5e9
...
...
@@ -13,6 +13,9 @@ Core and Builtins
Library
-------
- Issue #20308: inspect.signature now works on classes without user-defined
__init__ or __new__ methods.
What'
s
New
in
Python
3.4.0
Beta
3
?
==================================
...
...
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