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
b0199518
Kaydet (Commit)
b0199518
authored
Eyl 18, 2009
tarafından
Georg Brandl
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Use str.format() to fix beginner's mistake with %-style string formatting.
üst
c40e60e5
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
7 deletions
+7
-7
inspect.py
Lib/inspect.py
+7
-7
No files found.
Lib/inspect.py
Dosyayı görüntüle @
b0199518
...
...
@@ -402,12 +402,12 @@ def getfile(object):
if
ismodule
(
object
):
if
hasattr
(
object
,
'__file__'
):
return
object
.
__file__
raise
TypeError
(
'
%
r is a built-in module'
%
object
)
raise
TypeError
(
'
{!r} is a built-in module'
.
format
(
object
)
)
if
isclass
(
object
):
object
=
sys
.
modules
.
get
(
object
.
__module__
)
if
hasattr
(
object
,
'__file__'
):
return
object
.
__file__
raise
TypeError
(
'
%
r is a built-in class'
%
object
)
raise
TypeError
(
'
{!r} is a built-in class'
.
format
(
object
)
)
if
ismethod
(
object
):
object
=
object
.
im_func
if
isfunction
(
object
):
...
...
@@ -418,8 +418,8 @@ def getfile(object):
object
=
object
.
f_code
if
iscode
(
object
):
return
object
.
co_filename
raise
TypeError
(
'
%
r
is not a module, class, method, '
'function, traceback, frame, or code object'
%
object
)
raise
TypeError
(
'
{!r}
is not a module, class, method, '
'function, traceback, frame, or code object'
.
format
(
object
)
)
ModuleInfo
=
namedtuple
(
'ModuleInfo'
,
'name suffix mode module_type'
)
...
...
@@ -741,7 +741,7 @@ def getargs(co):
'varargs' and 'varkw' are the names of the * and ** arguments or None."""
if
not
iscode
(
co
):
raise
TypeError
(
'
%
r is not a code object'
%
co
)
raise
TypeError
(
'
{!r} is not a code object'
.
format
(
co
)
)
nargs
=
co
.
co_argcount
names
=
co
.
co_varnames
...
...
@@ -805,7 +805,7 @@ def getargspec(func):
if
ismethod
(
func
):
func
=
func
.
im_func
if
not
isfunction
(
func
):
raise
TypeError
(
'
%
r is not a Python function'
%
func
)
raise
TypeError
(
'
{!r} is not a Python function'
.
format
(
func
)
)
args
,
varargs
,
varkw
=
getargs
(
func
.
func_code
)
return
ArgSpec
(
args
,
varargs
,
varkw
,
func
.
func_defaults
)
...
...
@@ -902,7 +902,7 @@ def getframeinfo(frame, context=1):
else
:
lineno
=
frame
.
f_lineno
if
not
isframe
(
frame
):
raise
TypeError
(
'
%
r is not a frame or traceback object'
%
frame
)
raise
TypeError
(
'
{!r} is not a frame or traceback object'
.
format
(
frame
)
)
filename
=
getsourcefile
(
frame
)
or
getfile
(
frame
)
if
context
>
0
:
...
...
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