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
7ca6c55a
Kaydet (Commit)
7ca6c55a
authored
Agu 17, 2015
tarafından
Yury Selivanov
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #24867: Fix asyncio.Task.get_stack() for 'async def' coroutines
üst
6707906e
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
56 additions
and
1 deletion
+56
-1
tasks.py
Lib/asyncio/tasks.py
+5
-1
test_pep492.py
Lib/test/test_asyncio/test_pep492.py
+17
-0
test_tasks.py
Lib/test/test_asyncio/test_tasks.py
+32
-0
NEWS
Misc/NEWS
+2
-0
No files found.
Lib/asyncio/tasks.py
Dosyayı görüntüle @
7ca6c55a
...
...
@@ -128,7 +128,11 @@ class Task(futures.Future):
returned for a suspended coroutine.
"""
frames
=
[]
f
=
self
.
_coro
.
gi_frame
try
:
# 'async def' coroutines
f
=
self
.
_coro
.
cr_frame
except
AttributeError
:
f
=
self
.
_coro
.
gi_frame
if
f
is
not
None
:
while
f
is
not
None
:
if
limit
is
not
None
:
...
...
Lib/test/test_asyncio/test_pep492.py
Dosyayı görüntüle @
7ca6c55a
...
...
@@ -186,6 +186,23 @@ class CoroutineTests(BaseTest):
data
=
self
.
loop
.
run_until_complete
(
coro
())
self
.
assertEqual
(
data
,
'spam'
)
def
test_task_print_stack
(
self
):
T
=
None
async
def
foo
():
f
=
T
.
get_stack
(
limit
=
1
)
try
:
self
.
assertEqual
(
f
[
0
]
.
f_code
.
co_name
,
'foo'
)
finally
:
f
=
None
async
def
runner
():
nonlocal
T
T
=
asyncio
.
ensure_future
(
foo
(),
loop
=
self
.
loop
)
await
T
self
.
loop
.
run_until_complete
(
runner
())
if
__name__
==
'__main__'
:
unittest
.
main
()
Lib/test/test_asyncio/test_tasks.py
Dosyayı görüntüle @
7ca6c55a
...
...
@@ -2,6 +2,7 @@
import
contextlib
import
functools
import
io
import
os
import
re
import
sys
...
...
@@ -162,6 +163,37 @@ class TaskTests(test_utils.TestCase):
'function is deprecated, use ensure_'
):
self
.
assertIs
(
f
,
asyncio
.
async
(
f
))
def
test_get_stack
(
self
):
T
=
None
@asyncio.coroutine
def
foo
():
yield
from
bar
()
@asyncio.coroutine
def
bar
():
# test get_stack()
f
=
T
.
get_stack
(
limit
=
1
)
try
:
self
.
assertEqual
(
f
[
0
]
.
f_code
.
co_name
,
'foo'
)
finally
:
f
=
None
# test print_stack()
file
=
io
.
StringIO
()
T
.
print_stack
(
limit
=
1
,
file
=
file
)
file
.
seek
(
0
)
tb
=
file
.
read
()
self
.
assertRegex
(
tb
,
r'foo\(\) running'
)
@asyncio.coroutine
def
runner
():
nonlocal
T
T
=
asyncio
.
ensure_future
(
foo
(),
loop
=
self
.
loop
)
yield
from
T
self
.
loop
.
run_until_complete
(
runner
())
def
test_task_repr
(
self
):
self
.
loop
.
set_debug
(
False
)
...
...
Misc/NEWS
Dosyayı görüntüle @
7ca6c55a
...
...
@@ -74,6 +74,8 @@ Library
- Issue #24791: Fix grammar regression for call syntax: '
g
(*
a
or
b
)
'.
- Issue #24867: Fix Task.get_stack() for '
async
def
' coroutines
Documentation
-------------
...
...
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