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
4bd81725
Kaydet (Commit)
4bd81725
authored
Ock 06, 2011
tarafından
Victor Stinner
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #10492: bdb.Bdb.run() only traces the execution of the code
And not the compilation (if the input is a string).
üst
457ab068
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
0 deletions
+5
-0
bdb.py
Lib/bdb.py
+2
-0
NEWS
Misc/NEWS
+3
-0
No files found.
Lib/bdb.py
Dosyayı görüntüle @
4bd81725
...
...
@@ -385,6 +385,8 @@ class Bdb:
if
locals
is
None
:
locals
=
globals
self
.
reset
()
if
isinstance
(
cmd
,
str
):
cmd
=
compile
(
cmd
,
"<string>"
,
"exec"
)
sys
.
settrace
(
self
.
trace_dispatch
)
try
:
exec
(
cmd
,
globals
,
locals
)
...
...
Misc/NEWS
Dosyayı görüntüle @
4bd81725
...
...
@@ -30,6 +30,9 @@ Core and Builtins
Library
-------
- Issue #10492: bdb.Bdb.run() only traces the execution of the code, not the
compilation (if the input is a string).
- Issue #7995: When calling accept() on a socket with a timeout, the returned
socket is now always blocking, regardless of the operating system.
...
...
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