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
46c5cd0f
Kaydet (Commit)
46c5cd0f
authored
Haz 11, 2018
tarafından
Matthias Bussonnier
Kaydeden (comit)
Ned Deily
Haz 11, 2018
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
bpo-33582: Emit deprecation warning for `formatargspec` (GH-6994)
üst
fd88f319
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
21 additions
and
6 deletions
+21
-6
inspect.py
Lib/inspect.py
+14
-2
test_inspect.py
Lib/test/test_inspect.py
+6
-4
2018-05-19-15-58-14.bpo-33582.qBZPmF.rst
...S.d/next/Library/2018-05-19-15-58-14.bpo-33582.qBZPmF.rst
+1
-0
No files found.
Lib/inspect.py
Dosyayı görüntüle @
46c5cd0f
...
...
@@ -18,7 +18,7 @@ Here are some of the useful functions provided by this module:
getargvalues(), getcallargs() - get info about function arguments
getfullargspec() - same, with support for Python 3 features
formatarg
spec(), formatarg
values() - format an argument spec
formatargvalues() - format an argument spec
getouterframes(), getinnerframes() - get info about frames
currentframe() - get the current stack frame
stack(), trace() - get info about frames on the stack or in a traceback
...
...
@@ -1211,7 +1211,19 @@ def formatargspec(args, varargs=None, varkw=None, defaults=None,
kwonlyargs, kwonlydefaults, annotations). The other five arguments
are the corresponding optional formatting functions that are called to
turn names and values into strings. The last argument is an optional
function to format the sequence of arguments."""
function to format the sequence of arguments.
Deprecated since Python 3.5: use the `signature` function and `Signature`
objects.
"""
from
warnings
import
warn
warn
(
"`formatargspec` is deprecated since Python 3.5. Use `signature` and "
" the `Signature` object directly"
,
DeprecationWarning
,
stacklevel
=
2
)
def
formatargandannotation
(
arg
):
result
=
formatarg
(
arg
)
if
arg
in
annotations
:
...
...
Lib/test/test_inspect.py
Dosyayı görüntüle @
46c5cd0f
...
...
@@ -712,8 +712,9 @@ class TestClassesAndFunctions(unittest.TestCase):
self
.
assertEqual
(
varkw
,
varkw_e
)
self
.
assertEqual
(
defaults
,
defaults_e
)
if
formatted
is
not
None
:
self
.
assertEqual
(
inspect
.
formatargspec
(
args
,
varargs
,
varkw
,
defaults
),
formatted
)
with
self
.
assertWarns
(
DeprecationWarning
):
self
.
assertEqual
(
inspect
.
formatargspec
(
args
,
varargs
,
varkw
,
defaults
),
formatted
)
def
assertFullArgSpecEquals
(
self
,
routine
,
args_e
,
varargs_e
=
None
,
varkw_e
=
None
,
defaults_e
=
None
,
...
...
@@ -729,8 +730,9 @@ class TestClassesAndFunctions(unittest.TestCase):
self
.
assertEqual
(
kwonlydefaults
,
kwonlydefaults_e
)
self
.
assertEqual
(
ann
,
ann_e
)
if
formatted
is
not
None
:
self
.
assertEqual
(
inspect
.
formatargspec
(
args
,
varargs
,
varkw
,
defaults
,
kwonlyargs
,
kwonlydefaults
,
ann
),
with
self
.
assertWarns
(
DeprecationWarning
):
self
.
assertEqual
(
inspect
.
formatargspec
(
args
,
varargs
,
varkw
,
defaults
,
kwonlyargs
,
kwonlydefaults
,
ann
),
formatted
)
def
test_getargspec
(
self
):
...
...
Misc/NEWS.d/next/Library/2018-05-19-15-58-14.bpo-33582.qBZPmF.rst
0 → 100644
Dosyayı görüntüle @
46c5cd0f
Emit a deprecation warning for inspect.formatargspec
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