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
7b7120e1
Kaydet (Commit)
7b7120e1
authored
Haz 22, 2014
tarafından
Victor Stinner
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
asyncio: Enable the debug mode of event loops when the PYTHONASYNCIODEBUG
environment variable is set
üst
d6de5d84
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
11 additions
and
14 deletions
+11
-14
asyncio-eventloop.rst
Doc/library/asyncio-eventloop.rst
+5
-1
base_events.py
Lib/asyncio/base_events.py
+2
-1
test_selector_events.py
Lib/test/test_asyncio/test_selector_events.py
+0
-2
test_subprocess.py
Lib/test/test_asyncio/test_subprocess.py
+2
-2
test_tasks.py
Lib/test/test_asyncio/test_tasks.py
+2
-0
test_unix_events.py
Lib/test/test_asyncio/test_unix_events.py
+0
-8
No files found.
Doc/library/asyncio-eventloop.rst
Dosyayı görüntüle @
7b7120e1
...
@@ -585,7 +585,11 @@ Debug mode
...
@@ -585,7 +585,11 @@ Debug mode
.. method:: BaseEventLoop.get_debug()
.. method:: BaseEventLoop.get_debug()
Get the debug mode (:class:`bool`) of the event loop, ``False`` by default.
Get the debug mode (:class:`bool`) of the event loop.
The default value is ``True`` if the environment variable
:envvar:`PYTHONASYNCIODEBUG` is set to a non-empty string, ``False``
otherwise.
.. versionadded:: 3.4.2
.. versionadded:: 3.4.2
...
...
Lib/asyncio/base_events.py
Dosyayı görüntüle @
7b7120e1
...
@@ -137,7 +137,8 @@ class BaseEventLoop(events.AbstractEventLoop):
...
@@ -137,7 +137,8 @@ class BaseEventLoop(events.AbstractEventLoop):
self
.
_running
=
False
self
.
_running
=
False
self
.
_clock_resolution
=
time
.
get_clock_info
(
'monotonic'
)
.
resolution
self
.
_clock_resolution
=
time
.
get_clock_info
(
'monotonic'
)
.
resolution
self
.
_exception_handler
=
None
self
.
_exception_handler
=
None
self
.
_debug
=
False
self
.
_debug
=
(
not
sys
.
flags
.
ignore_environment
and
bool
(
os
.
environ
.
get
(
'PYTHONASYNCIODEBUG'
)))
# In debug mode, if the execution of a callback or a step of a task
# In debug mode, if the execution of a callback or a step of a task
# exceed this duration in seconds, the slow callback/task is logged.
# exceed this duration in seconds, the slow callback/task is logged.
self
.
slow_callback_duration
=
0.1
self
.
slow_callback_duration
=
0.1
...
...
Lib/test/test_asyncio/test_selector_events.py
Dosyayı görüntüle @
7b7120e1
...
@@ -682,8 +682,6 @@ class SelectorTransportTests(test_utils.TestCase):
...
@@ -682,8 +682,6 @@ class SelectorTransportTests(test_utils.TestCase):
self
.
assertEqual
(
2
,
sys
.
getrefcount
(
self
.
protocol
),
self
.
assertEqual
(
2
,
sys
.
getrefcount
(
self
.
protocol
),
pprint
.
pformat
(
gc
.
get_referrers
(
self
.
protocol
)))
pprint
.
pformat
(
gc
.
get_referrers
(
self
.
protocol
)))
self
.
assertIsNone
(
tr
.
_loop
)
self
.
assertIsNone
(
tr
.
_loop
)
self
.
assertEqual
(
3
,
sys
.
getrefcount
(
self
.
loop
),
pprint
.
pformat
(
gc
.
get_referrers
(
self
.
loop
)))
class
SelectorSocketTransportTests
(
test_utils
.
TestCase
):
class
SelectorSocketTransportTests
(
test_utils
.
TestCase
):
...
...
Lib/test/test_asyncio/test_subprocess.py
Dosyayı görüntüle @
7b7120e1
...
@@ -141,7 +141,7 @@ if sys.platform != 'win32':
...
@@ -141,7 +141,7 @@ if sys.platform != 'win32':
policy
=
asyncio
.
get_event_loop_policy
()
policy
=
asyncio
.
get_event_loop_policy
()
self
.
loop
=
policy
.
new_event_loop
()
self
.
loop
=
policy
.
new_event_loop
()
# ensure that the event loop is passed explicitly in
the code
# ensure that the event loop is passed explicitly in
asyncio
policy
.
set_event_loop
(
None
)
policy
.
set_event_loop
(
None
)
watcher
=
self
.
Watcher
()
watcher
=
self
.
Watcher
()
...
@@ -172,7 +172,7 @@ else:
...
@@ -172,7 +172,7 @@ else:
policy
=
asyncio
.
get_event_loop_policy
()
policy
=
asyncio
.
get_event_loop_policy
()
self
.
loop
=
asyncio
.
ProactorEventLoop
()
self
.
loop
=
asyncio
.
ProactorEventLoop
()
# ensure that the event loop is passed explicitly in
the code
# ensure that the event loop is passed explicitly in
asyncio
policy
.
set_event_loop
(
None
)
policy
.
set_event_loop
(
None
)
def
tearDown
(
self
):
def
tearDown
(
self
):
...
...
Lib/test/test_asyncio/test_tasks.py
Dosyayı görüntüle @
7b7120e1
...
@@ -1712,6 +1712,8 @@ class CoroutineGatherTests(GatherTestsBase, test_utils.TestCase):
...
@@ -1712,6 +1712,8 @@ class CoroutineGatherTests(GatherTestsBase, test_utils.TestCase):
self
.
assertIs
(
fut
.
_loop
,
self
.
one_loop
)
self
.
assertIs
(
fut
.
_loop
,
self
.
one_loop
)
gen1
.
close
()
gen1
.
close
()
gen2
.
close
()
gen2
.
close
()
self
.
set_event_loop
(
self
.
other_loop
,
cleanup
=
False
)
gen3
=
coro
()
gen3
=
coro
()
gen4
=
coro
()
gen4
=
coro
()
fut
=
asyncio
.
gather
(
gen3
,
gen4
,
loop
=
self
.
other_loop
)
fut
=
asyncio
.
gather
(
gen3
,
gen4
,
loop
=
self
.
other_loop
)
...
...
Lib/test/test_asyncio/test_unix_events.py
Dosyayı görüntüle @
7b7120e1
...
@@ -445,8 +445,6 @@ class UnixReadPipeTransportTests(test_utils.TestCase):
...
@@ -445,8 +445,6 @@ class UnixReadPipeTransportTests(test_utils.TestCase):
self
.
assertEqual
(
2
,
sys
.
getrefcount
(
self
.
protocol
),
self
.
assertEqual
(
2
,
sys
.
getrefcount
(
self
.
protocol
),
pprint
.
pformat
(
gc
.
get_referrers
(
self
.
protocol
)))
pprint
.
pformat
(
gc
.
get_referrers
(
self
.
protocol
)))
self
.
assertIsNone
(
tr
.
_loop
)
self
.
assertIsNone
(
tr
.
_loop
)
self
.
assertEqual
(
5
,
sys
.
getrefcount
(
self
.
loop
),
pprint
.
pformat
(
gc
.
get_referrers
(
self
.
loop
)))
def
test__call_connection_lost_with_err
(
self
):
def
test__call_connection_lost_with_err
(
self
):
tr
=
unix_events
.
_UnixReadPipeTransport
(
tr
=
unix_events
.
_UnixReadPipeTransport
(
...
@@ -462,8 +460,6 @@ class UnixReadPipeTransportTests(test_utils.TestCase):
...
@@ -462,8 +460,6 @@ class UnixReadPipeTransportTests(test_utils.TestCase):
self
.
assertEqual
(
2
,
sys
.
getrefcount
(
self
.
protocol
),
self
.
assertEqual
(
2
,
sys
.
getrefcount
(
self
.
protocol
),
pprint
.
pformat
(
gc
.
get_referrers
(
self
.
protocol
)))
pprint
.
pformat
(
gc
.
get_referrers
(
self
.
protocol
)))
self
.
assertIsNone
(
tr
.
_loop
)
self
.
assertIsNone
(
tr
.
_loop
)
self
.
assertEqual
(
5
,
sys
.
getrefcount
(
self
.
loop
),
pprint
.
pformat
(
gc
.
get_referrers
(
self
.
loop
)))
class
UnixWritePipeTransportTests
(
test_utils
.
TestCase
):
class
UnixWritePipeTransportTests
(
test_utils
.
TestCase
):
...
@@ -731,8 +727,6 @@ class UnixWritePipeTransportTests(test_utils.TestCase):
...
@@ -731,8 +727,6 @@ class UnixWritePipeTransportTests(test_utils.TestCase):
self
.
assertEqual
(
2
,
sys
.
getrefcount
(
self
.
protocol
),
self
.
assertEqual
(
2
,
sys
.
getrefcount
(
self
.
protocol
),
pprint
.
pformat
(
gc
.
get_referrers
(
self
.
protocol
)))
pprint
.
pformat
(
gc
.
get_referrers
(
self
.
protocol
)))
self
.
assertIsNone
(
tr
.
_loop
)
self
.
assertIsNone
(
tr
.
_loop
)
self
.
assertEqual
(
5
,
sys
.
getrefcount
(
self
.
loop
),
pprint
.
pformat
(
gc
.
get_referrers
(
self
.
loop
)))
def
test__call_connection_lost_with_err
(
self
):
def
test__call_connection_lost_with_err
(
self
):
tr
=
unix_events
.
_UnixWritePipeTransport
(
tr
=
unix_events
.
_UnixWritePipeTransport
(
...
@@ -747,8 +741,6 @@ class UnixWritePipeTransportTests(test_utils.TestCase):
...
@@ -747,8 +741,6 @@ class UnixWritePipeTransportTests(test_utils.TestCase):
self
.
assertEqual
(
2
,
sys
.
getrefcount
(
self
.
protocol
),
self
.
assertEqual
(
2
,
sys
.
getrefcount
(
self
.
protocol
),
pprint
.
pformat
(
gc
.
get_referrers
(
self
.
protocol
)))
pprint
.
pformat
(
gc
.
get_referrers
(
self
.
protocol
)))
self
.
assertIsNone
(
tr
.
_loop
)
self
.
assertIsNone
(
tr
.
_loop
)
self
.
assertEqual
(
5
,
sys
.
getrefcount
(
self
.
loop
),
pprint
.
pformat
(
gc
.
get_referrers
(
self
.
loop
)))
def
test_close
(
self
):
def
test_close
(
self
):
tr
=
unix_events
.
_UnixWritePipeTransport
(
tr
=
unix_events
.
_UnixWritePipeTransport
(
...
...
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