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
d224b6a7
Kaydet (Commit)
d224b6a7
authored
Şub 21, 2014
tarafından
Yury Selivanov
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
inspect: Fix getfullargspec to support builtin module-level functions. Issue #20711
üst
b0b75a19
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
2 deletions
+16
-2
inspect.py
Lib/inspect.py
+9
-2
test_inspect.py
Lib/test/test_inspect.py
+7
-0
No files found.
Lib/inspect.py
Dosyayı görüntüle @
d224b6a7
...
...
@@ -1827,9 +1827,16 @@ def _signature_fromstr(cls, obj, s, skip_bound_arg=True):
p
(
f
.
args
.
kwarg
,
empty
)
if
self_parameter
is
not
None
:
# Possibly strip the bound argument:
# - We *always* strip first bound argument if
# it is a module.
# - We don't strip first bound argument if
# skip_bound_arg is False.
assert
parameters
if
getattr
(
obj
,
'__self__'
,
None
)
and
skip_bound_arg
:
# strip off self, it's already been bound
_self
=
getattr
(
obj
,
'__self__'
,
None
)
self_isbound
=
_self
is
not
None
self_ismodule
=
ismodule
(
_self
)
if
self_isbound
and
(
self_ismodule
or
skip_bound_arg
):
parameters
.
pop
(
0
)
else
:
# for builtins, self parameter is always positional-only!
...
...
Lib/test/test_inspect.py
Dosyayı görüntüle @
d224b6a7
...
...
@@ -643,6 +643,13 @@ class TestClassesAndFunctions(unittest.TestCase):
self
.
assertFullArgSpecEquals
(
_pickle
.
Pickler
(
io
.
BytesIO
())
.
dump
,
args_e
=
[
'self'
,
'obj'
],
formatted
=
'(self, obj)'
)
self
.
assertFullArgSpecEquals
(
os
.
stat
,
args_e
=
[
'path'
],
kwonlyargs_e
=
[
'dir_fd'
,
'follow_symlinks'
],
kwonlydefaults_e
=
{
'dir_fd'
:
None
,
'follow_symlinks'
:
True
},
formatted
=
'(path, *, dir_fd=None, follow_symlinks=True)'
)
@cpython_only
@unittest.skipIf
(
MISSING_C_DOCSTRINGS
,
"Signature information for builtins requires docstrings"
)
...
...
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