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
6c542b73
Kaydet (Commit)
6c542b73
authored
Agu 09, 2004
tarafından
Tim Peters
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Edward's latest checkins somehow managed to wipe out my previous latest
checkins. Reapplying the latter changes.
üst
a1ef6110
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
17 additions
and
15 deletions
+17
-15
doctest.py
Lib/doctest.py
+17
-14
test_doctest.py
Lib/test/test_doctest.py
+0
-1
No files found.
Lib/doctest.py
Dosyayı görüntüle @
6c542b73
...
...
@@ -1259,27 +1259,30 @@ class DocTestRunner:
if
compileflags
is
None
:
compileflags
=
_extract_future_flags
(
test
.
globs
)
save_stdout
=
sys
.
stdout
if
out
is
None
:
out
=
sys
.
stdout
.
write
saveout
=
sys
.
stdout
# Note that don't save away the previous pdb.set_trace. Rather,
# we safe pdb.set_trace on import (see import section above).
# We then call and restore that original cersion. We do it this
# way to make this feature testable. If we kept and called the
# previous version, we'd end up restoring the original stdout,
# which is not what we want.
out
=
save_stdout
.
write
sys
.
stdout
=
self
.
_fakeout
# Patch pdb.set_trace to restore sys.stdout, so that interactive
# debugging output is visible (not still redirected to self._fakeout).
# Note that we run "the real" pdb.set_trace (captured at doctest
# import time) in our replacement. Because the current run() may
# run another doctest (and so on), the current pdb.set_trace may be
# our set_trace function, which changes sys.stdout. If we called
# a chain of those, we wouldn't be left with the save_stdout
# *this* run() invocation wants.
def
set_trace
():
sys
.
stdout
=
saveout
sys
.
stdout
=
save
_std
out
real_pdb_set_trace
()
save_set_trace
=
pdb
.
set_trace
pdb
.
set_trace
=
set_trace
try
:
sys
.
stdout
=
self
.
_fakeout
pdb
.
set_trace
=
set_trace
return
self
.
__run
(
test
,
compileflags
,
out
)
finally
:
sys
.
stdout
=
saveout
pdb
.
set_trace
=
real_pdb
_set_trace
sys
.
stdout
=
save
_std
out
pdb
.
set_trace
=
save
_set_trace
if
clear_globs
:
test
.
globs
.
clear
()
...
...
Lib/test/test_doctest.py
Dosyayı görüntüle @
6c542b73
...
...
@@ -1044,7 +1044,6 @@ def test_pdb_set_trace():
... >>> calls_set_trace()
... '''
>>> test = parser.get_doctest(doc, globals(), "foo", "foo.py", 0)
>>> fake_stdin = tempfile.TemporaryFile(mode='w+')
>>> fake_stdin.write('\n'.join([
... 'up', # up out of pdb.set_trace
...
...
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