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
e5044459
Kaydet (Commit)
e5044459
authored
Mar 19, 2008
tarafından
Eric Smith
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Use test.test_support.captured_stdout instead of a custom contextmanager.
Thanks Nick Coghlan.
üst
4f4738f0
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
13 deletions
+1
-13
test_print.py
Lib/test/test_print.py
+1
-13
No files found.
Lib/test/test_print.py
Dosyayı görüntüle @
e5044459
...
...
@@ -14,8 +14,6 @@ except ImportError:
# 2.x
from
StringIO
import
StringIO
from
contextlib
import
contextmanager
NotDefined
=
object
()
# A dispatch table all 8 combinations of providing
...
...
@@ -42,15 +40,6 @@ dispatch = {
lambda
args
,
sep
,
end
,
file
:
print
(
sep
=
sep
,
end
=
end
,
file
=
file
,
*
args
),
}
@contextmanager
def
stdout_redirected
(
new_stdout
):
save_stdout
=
sys
.
stdout
sys
.
stdout
=
new_stdout
try
:
yield
None
finally
:
sys
.
stdout
=
save_stdout
# Class used to test __str__ and print
class
ClassWith__str__
:
def
__init__
(
self
,
x
):
...
...
@@ -71,8 +60,7 @@ class TestPrint(unittest.TestCase):
end
is
not
NotDefined
,
file
is
not
NotDefined
)]
t
=
StringIO
()
with
stdout_redirected
(
t
):
with
test_support
.
captured_stdout
()
as
t
:
fn
(
args
,
sep
,
end
,
file
)
self
.
assertEqual
(
t
.
getvalue
(),
expected
)
...
...
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