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
e98e8a3a
Kaydet (Commit)
e98e8a3a
authored
Ara 13, 2010
tarafından
Nick Coghlan
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Captured IO streams with embedded backslashes are always such a fun combination...
üst
9466fe88
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
2 deletions
+8
-2
test_tempfile.py
Lib/test/test_tempfile.py
+8
-2
No files found.
Lib/test/test_tempfile.py
Dosyayı görüntüle @
e98e8a3a
...
@@ -989,7 +989,13 @@ class test_TemporaryDirectory(TC):
...
@@ -989,7 +989,13 @@ class test_TemporaryDirectory(TC):
# Issue 10888: may write to stderr if modules are nulled out
# Issue 10888: may write to stderr if modules are nulled out
# ResourceWarning will be triggered by __del__
# ResourceWarning will be triggered by __del__
with
self
.
do_create
()
as
dir
:
with
self
.
do_create
()
as
dir
:
d
=
self
.
do_create
(
dir
=
dir
)
if
os
.
sep
!=
'
\\
'
:
# Embed a backslash in order to make sure string escaping
# in the displayed error message is dealt with correctly
suffix
=
'
\\
check_backslash_handling'
else
:
suffix
=
''
d
=
self
.
do_create
(
dir
=
dir
,
suf
=
suffix
)
#Check for the Issue 10888 message
#Check for the Issue 10888 message
modules
=
[
os
,
os
.
path
]
modules
=
[
os
,
os
.
path
]
...
@@ -998,7 +1004,7 @@ class test_TemporaryDirectory(TC):
...
@@ -998,7 +1004,7 @@ class test_TemporaryDirectory(TC):
with
support
.
captured_stderr
()
as
err
:
with
support
.
captured_stderr
()
as
err
:
with
NulledModules
(
*
modules
):
with
NulledModules
(
*
modules
):
d
.
cleanup
()
d
.
cleanup
()
message
=
err
.
getvalue
()
message
=
err
.
getvalue
()
.
replace
(
'
\\\\
'
,
'
\\
'
)
self
.
assertIn
(
"while cleaning up"
,
message
)
self
.
assertIn
(
"while cleaning up"
,
message
)
self
.
assertIn
(
d
.
name
,
message
)
self
.
assertIn
(
d
.
name
,
message
)
...
...
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