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
cced0762
Kaydet (Commit)
cced0762
authored
Kas 27, 2013
tarafından
Guido van Rossum
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
asyncio: Fix get_event_loop() to call set_event_loop() when setting the loop. By Anthony Baire.
üst
1314ef73
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
17 additions
and
1 deletion
+17
-1
events.py
Lib/asyncio/events.py
+1
-1
test_events.py
Lib/test/test_asyncio/test_events.py
+16
-0
No files found.
Lib/asyncio/events.py
Dosyayı görüntüle @
cced0762
...
...
@@ -360,7 +360,7 @@ class BaseDefaultEventLoopPolicy(AbstractEventLoopPolicy):
if
(
self
.
_local
.
_loop
is
None
and
not
self
.
_local
.
_set_called
and
isinstance
(
threading
.
current_thread
(),
threading
.
_MainThread
)):
self
.
_local
.
_loop
=
self
.
new_event_loop
(
)
self
.
set_event_loop
(
self
.
new_event_loop
()
)
assert
self
.
_local
.
_loop
is
not
None
,
\
(
'There is no current event loop in thread
%
r.'
%
threading
.
current_thread
()
.
name
)
...
...
Lib/test/test_asyncio/test_events.py
Dosyayı görüntüle @
cced0762
...
...
@@ -1599,6 +1599,22 @@ class PolicyTests(unittest.TestCase):
self
.
assertIs
(
loop
,
policy
.
get_event_loop
())
loop
.
close
()
def
test_get_event_loop_calls_set_event_loop
(
self
):
policy
=
self
.
create_policy
()
with
unittest
.
mock
.
patch
.
object
(
policy
,
"set_event_loop"
,
wraps
=
policy
.
set_event_loop
)
as
m_set_event_loop
:
loop
=
policy
.
get_event_loop
()
# policy._local._loop must be set through .set_event_loop()
# (the unix DefaultEventLoopPolicy needs this call to attach
# the child watcher correctly)
m_set_event_loop
.
assert_called_with
(
loop
)
loop
.
close
()
def
test_get_event_loop_after_set_none
(
self
):
policy
=
self
.
create_policy
()
policy
.
set_event_loop
(
None
)
...
...
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