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
d5a8f580
Kaydet (Commit)
d5a8f580
authored
Eyl 25, 2014
tarafından
Yury Selivanov
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
asyncio.test_tasks: Fix test_env_var_debug to use correct asyncio module
üst
592ada9b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
4 deletions
+11
-4
test_tasks.py
Lib/test/test_asyncio/test_tasks.py
+11
-4
No files found.
Lib/test/test_asyncio/test_tasks.py
Dosyayı görüntüle @
d5a8f580
"""Tests for tasks.py."""
import
os
import
re
import
sys
import
types
...
...
@@ -1768,25 +1769,31 @@ class GatherTestsBase:
self
.
assertEqual
(
fut
.
result
(),
[
3
,
1
,
exc
,
exc2
])
def
test_env_var_debug
(
self
):
aio_path
=
os
.
path
.
dirname
(
os
.
path
.
dirname
(
asyncio
.
__file__
))
code
=
'
\n
'
.
join
((
'import asyncio.coroutines'
,
'print(asyncio.coroutines._DEBUG)'
))
# Test with -E to not fail if the unit test was run with
# PYTHONASYNCIODEBUG set to a non-empty string
sts
,
stdout
,
stderr
=
assert_python_ok
(
'-E'
,
'-c'
,
code
)
sts
,
stdout
,
stderr
=
assert_python_ok
(
'-E'
,
'-c'
,
code
,
PYTHONPATH
=
aio_path
)
self
.
assertEqual
(
stdout
.
rstrip
(),
b
'False'
)
sts
,
stdout
,
stderr
=
assert_python_ok
(
'-c'
,
code
,
PYTHONASYNCIODEBUG
=
''
)
PYTHONASYNCIODEBUG
=
''
,
PYTHONPATH
=
aio_path
)
self
.
assertEqual
(
stdout
.
rstrip
(),
b
'False'
)
sts
,
stdout
,
stderr
=
assert_python_ok
(
'-c'
,
code
,
PYTHONASYNCIODEBUG
=
'1'
)
PYTHONASYNCIODEBUG
=
'1'
,
PYTHONPATH
=
aio_path
)
self
.
assertEqual
(
stdout
.
rstrip
(),
b
'True'
)
sts
,
stdout
,
stderr
=
assert_python_ok
(
'-E'
,
'-c'
,
code
,
PYTHONASYNCIODEBUG
=
'1'
)
PYTHONASYNCIODEBUG
=
'1'
,
PYTHONPATH
=
aio_path
)
self
.
assertEqual
(
stdout
.
rstrip
(),
b
'False'
)
...
...
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