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
4ca73559
Kaydet (Commit)
4ca73559
authored
Eki 19, 2013
tarafından
Antoine Pitrou
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #19299: fix refleak test failures in test_asyncio
üst
34d33a59
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
10 additions
and
0 deletions
+10
-0
base_events.py
Lib/asyncio/base_events.py
+8
-0
proactor_events.py
Lib/asyncio/proactor_events.py
+1
-0
selector_events.py
Lib/asyncio/selector_events.py
+1
-0
No files found.
Lib/asyncio/base_events.py
Dosyayı görüntüle @
4ca73559
...
...
@@ -185,6 +185,14 @@ class BaseEventLoop(events.AbstractEventLoop):
"""
self
.
call_soon
(
_raise_stop_error
)
def
close
(
self
):
self
.
_ready
.
clear
()
self
.
_scheduled
.
clear
()
executor
=
self
.
_default_executor
if
executor
is
not
None
:
self
.
_default_executor
=
None
executor
.
shutdown
(
wait
=
False
)
def
is_running
(
self
):
"""Returns running status of event loop."""
return
self
.
_running
...
...
Lib/asyncio/proactor_events.py
Dosyayı görüntüle @
4ca73559
...
...
@@ -276,6 +276,7 @@ class BaseProactorEventLoop(base_events.BaseEventLoop):
self
.
_proactor
.
close
()
self
.
_proactor
=
None
self
.
_selector
=
None
super
()
.
close
()
def
sock_recv
(
self
,
sock
,
n
):
return
self
.
_proactor
.
recv
(
sock
,
n
)
...
...
Lib/asyncio/selector_events.py
Dosyayı görüntüle @
4ca73559
...
...
@@ -56,6 +56,7 @@ class BaseSelectorEventLoop(base_events.BaseEventLoop):
self
.
_close_self_pipe
()
self
.
_selector
.
close
()
self
.
_selector
=
None
super
()
.
close
()
def
_socketpair
(
self
):
raise
NotImplementedError
...
...
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