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
c18574c9
Kaydet (Commit)
c18574c9
authored
Eki 22, 2008
tarafından
Benjamin Peterson
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
fix #4150: pdb's up command didn't work for generators in post-mortem
üst
cd29e9d9
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
6 deletions
+7
-6
bdb.py
Lib/bdb.py
+2
-0
pdb.py
Lib/pdb.py
+2
-6
NEWS
Misc/NEWS
+3
-0
No files found.
Lib/bdb.py
Dosyayı görüntüle @
c18574c9
...
...
@@ -320,6 +320,8 @@ class Bdb:
while
t
is
not
None
:
stack
.
append
((
t
.
tb_frame
,
t
.
tb_lineno
))
t
=
t
.
tb_next
if
f
is
None
:
i
=
max
(
0
,
len
(
stack
)
-
1
)
return
stack
,
i
#
...
...
Lib/pdb.py
Dosyayı görüntüle @
c18574c9
...
...
@@ -1224,9 +1224,7 @@ def post_mortem(t=None):
p
=
Pdb
()
p
.
reset
()
while
t
.
tb_next
is
not
None
:
t
=
t
.
tb_next
p
.
interaction
(
t
.
tb_frame
,
t
)
p
.
interaction
(
None
,
t
)
def
pm
():
post_mortem
(
sys
.
last_traceback
)
...
...
@@ -1289,9 +1287,7 @@ def main():
print
"Uncaught exception. Entering post mortem debugging"
print
"Running 'cont' or 'step' will restart the program"
t
=
sys
.
exc_info
()[
2
]
while
t
.
tb_next
is
not
None
:
t
=
t
.
tb_next
pdb
.
interaction
(
t
.
tb_frame
,
t
)
pdb
.
interaction
(
None
,
t
)
print
"Post mortem debugger finished. The "
+
mainpyfile
+
" will be restarted"
...
...
Misc/NEWS
Dosyayı görüntüle @
c18574c9
...
...
@@ -24,6 +24,9 @@ Core and Builtins
Library
-------
- Issue #4150: Pdb's "up" command now works for generator frames in post-mortem
debugging.
- Issue #4092: Return ArgInfo as promised in the documentation from
inspect.getargvalues.
...
...
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