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
fb5a7ad4
Kaydet (Commit)
fb5a7ad4
authored
Ock 24, 2018
tarafından
Nathaniel J. Smith
Kaydeden (comit)
Yury Selivanov
Ock 24, 2018
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
bpo-32636: Fix @asyncio.coroutine debug mode bug exposed by gh-5250 (#5291)
üst
0a5e71b4
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
19 additions
and
1 deletion
+19
-1
coroutines.py
Lib/asyncio/coroutines.py
+2
-1
test_tasks.py
Lib/test/test_asyncio/test_tasks.py
+17
-0
No files found.
Lib/asyncio/coroutines.py
Dosyayı görüntüle @
fb5a7ad4
...
...
@@ -132,8 +132,9 @@ def coroutine(func):
res
=
yield
from
await_meth
()
return
res
coro
=
types
.
coroutine
(
coro
)
if
not
_DEBUG
:
wrapper
=
types
.
coroutine
(
coro
)
wrapper
=
coro
else
:
@functools.wraps
(
func
)
def
wrapper
(
*
args
,
**
kwds
):
...
...
Lib/test/test_asyncio/test_tasks.py
Dosyayı görüntüle @
fb5a7ad4
...
...
@@ -9,6 +9,7 @@ import io
import
random
import
re
import
sys
import
textwrap
import
types
import
unittest
import
weakref
...
...
@@ -3090,6 +3091,22 @@ class CompatibilityTests(test_utils.TestCase):
result
=
self
.
loop
.
run_until_complete
(
inner
())
self
.
assertEqual
([
'ok1'
,
'ok2'
],
result
)
def
test_debug_mode_interop
(
self
):
# https://bugs.python.org/issue32636
code
=
textwrap
.
dedent
(
"""
import asyncio
async def native_coro():
pass
@asyncio.coroutine
def old_style_coro():
yield from native_coro()
asyncio.run(old_style_coro())
"""
)
assert_python_ok
(
"-c"
,
code
,
PYTHONASYNCIODEBUG
=
"1"
)
if
__name__
==
'__main__'
:
unittest
.
main
()
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