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
59ade080
Kaydet (Commit)
59ade080
authored
Mar 01, 2001
tarafından
Ka-Ping Yee
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Add getlineno() routine to account for LINENO optimization.
üst
abb379e1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
19 additions
and
3 deletions
+19
-3
inspect.py
Lib/inspect.py
+19
-3
No files found.
Lib/inspect.py
Dosyayı görüntüle @
59ade080
...
...
@@ -560,20 +560,36 @@ def getframeinfo(frame, context=1):
raise
TypeError
,
'arg is not a frame or traceback object'
filename
=
getsourcefile
(
frame
)
lineno
=
getlineno
(
frame
)
if
context
>
0
:
start
=
frame
.
f_
lineno
-
1
-
context
/
2
start
=
lineno
-
1
-
context
/
2
try
:
lines
,
lnum
=
findsource
(
frame
)
start
=
max
(
start
,
1
)
start
=
min
(
start
,
len
(
lines
)
-
context
)
lines
=
lines
[
start
:
start
+
context
]
index
=
frame
.
f_
lineno
-
1
-
start
index
=
lineno
-
1
-
start
except
:
lines
=
index
=
None
else
:
lines
=
index
=
None
return
(
filename
,
frame
.
f_lineno
,
frame
.
f_code
.
co_name
,
lines
,
index
)
return
(
filename
,
lineno
,
frame
.
f_code
.
co_name
,
lines
,
index
)
def
getlineno
(
frame
):
"""Get the line number from a frame object, allowing for optimization."""
# Written by Marc-André Lemburg; revised by Jim Hugunin and Fredrik Lundh.
lineno
=
frame
.
f_lineno
code
=
frame
.
f_code
if
hasattr
(
code
,
'co_lnotab'
):
table
=
code
.
co_lnotab
lineno
=
code
.
co_firstlineno
addr
=
0
for
i
in
range
(
0
,
len
(
table
),
2
):
addr
=
addr
+
ord
(
table
[
i
])
if
addr
>
frame
.
f_lasti
:
break
lineno
=
lineno
+
ord
(
table
[
i
+
1
])
return
lineno
def
getouterframes
(
frame
,
context
=
1
):
"""Get a list of records for a frame and all higher (calling) frames.
...
...
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