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
664ad76a
Kaydet (Commit)
664ad76a
authored
Kas 24, 2007
tarafından
Skip Montanaro
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
back in these go - thanks to Titus Brown for the fix
üst
30f61cbb
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
18 additions
and
0 deletions
+18
-0
doctest.py
Lib/doctest.py
+13
-0
trace.py
Lib/trace.py
+2
-0
NEWS
Misc/NEWS
+3
-0
No files found.
Lib/doctest.py
Dosyayı görüntüle @
664ad76a
...
...
@@ -320,8 +320,21 @@ class _OutputRedirectingPdb(pdb.Pdb):
"""
def
__init__
(
self
,
out
):
self
.
__out
=
out
self
.
__debugger_used
=
False
pdb
.
Pdb
.
__init__
(
self
,
stdout
=
out
)
def
set_trace
(
self
,
frame
=
None
):
self
.
__debugger_used
=
True
if
frame
is
None
:
frame
=
sys
.
_getframe
()
.
f_back
pdb
.
Pdb
.
set_trace
(
self
,
frame
)
def
set_continue
(
self
):
# Calling set_continue unconditionally would break unit test
# coverage reporting, as Bdb.set_continue calls sys.settrace(None).
if
self
.
__debugger_used
:
pdb
.
Pdb
.
set_continue
(
self
)
def
trace_dispatch
(
self
,
*
args
):
# Redirect stdout to the given stream.
save_stdout
=
sys
.
stdout
...
...
Lib/trace.py
Dosyayı görüntüle @
664ad76a
...
...
@@ -286,6 +286,8 @@ class CoverageResults:
# skip some "files" we don't care about...
if
filename
==
"<string>"
:
continue
if
filename
.
startswith
(
"<doctest "
):
continue
if
filename
.
endswith
((
".pyc"
,
".pyo"
)):
filename
=
filename
[:
-
1
]
...
...
Misc/NEWS
Dosyayı görüntüle @
664ad76a
...
...
@@ -41,6 +41,9 @@ Core and builtins
Library
-------
- Issue 1429818: patch for trace and doctest modules so they play nicely
together.
- doctest mis-used __loader__.get_data(), assuming universal newlines was used.
- Issue #1705170: contextlib.contextmanager was still swallowing
...
...
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