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
dc8cb3d0
Kaydet (Commit)
dc8cb3d0
authored
May 01, 2012
tarafından
Senthil Kumaran
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Have Bdb frame_returning in the finally clause
üst
7f6d4e19
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
3 deletions
+5
-3
bdb.py
Lib/bdb.py
+5
-3
No files found.
Lib/bdb.py
Dosyayı görüntüle @
dc8cb3d0
...
@@ -83,9 +83,11 @@ class Bdb:
...
@@ -83,9 +83,11 @@ class Bdb:
def
dispatch_return
(
self
,
frame
,
arg
):
def
dispatch_return
(
self
,
frame
,
arg
):
if
self
.
stop_here
(
frame
)
or
frame
==
self
.
returnframe
:
if
self
.
stop_here
(
frame
)
or
frame
==
self
.
returnframe
:
self
.
frame_returning
=
frame
try
:
self
.
user_return
(
frame
,
arg
)
self
.
frame_returning
=
frame
self
.
frame_returning
=
None
self
.
user_return
(
frame
,
arg
)
finally
:
self
.
frame_returning
=
None
if
self
.
quitting
:
raise
BdbQuit
if
self
.
quitting
:
raise
BdbQuit
return
self
.
trace_dispatch
return
self
.
trace_dispatch
...
...
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