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
1994dd36
Kaydet (Commit)
1994dd36
authored
Kas 08, 2016
tarafından
Yury Selivanov
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Merge 3.5 (issue #28613)
üst
1ec1cd16
6ea2b8fc
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
0 deletions
+5
-0
events.py
Lib/asyncio/events.py
+1
-0
test_events.py
Lib/test/test_asyncio/test_events.py
+4
-0
No files found.
Lib/asyncio/events.py
Dosyayı görüntüle @
1994dd36
...
...
@@ -6,6 +6,7 @@ __all__ = ['AbstractEventLoopPolicy',
'get_event_loop_policy'
,
'set_event_loop_policy'
,
'get_event_loop'
,
'set_event_loop'
,
'new_event_loop'
,
'get_child_watcher'
,
'set_child_watcher'
,
'_set_running_loop'
,
'_get_running_loop'
,
]
import
functools
...
...
Lib/test/test_asyncio/test_events.py
Dosyayı görüntüle @
1994dd36
...
...
@@ -2732,9 +2732,11 @@ class PolicyTests(unittest.TestCase):
try
:
asyncio
.
set_event_loop_policy
(
Policy
())
loop
=
asyncio
.
new_event_loop
()
self
.
assertIs
(
asyncio
.
_get_running_loop
(),
None
)
async
def
func
():
self
.
assertIs
(
asyncio
.
get_event_loop
(),
loop
)
self
.
assertIs
(
asyncio
.
_get_running_loop
(),
loop
)
loop
.
run_until_complete
(
func
())
finally
:
...
...
@@ -2742,6 +2744,8 @@ class PolicyTests(unittest.TestCase):
if
loop
is
not
None
:
loop
.
close
()
self
.
assertIs
(
asyncio
.
_get_running_loop
(),
None
)
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