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
0742cae3
Kaydet (Commit)
0742cae3
authored
Ock 26, 2014
tarafından
Andrew Svetlov
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Merge latest Tulip into asyncio
üst
b62deac9
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
0 additions
and
7 deletions
+0
-7
base_subprocess.py
Lib/asyncio/base_subprocess.py
+0
-1
unix_events.py
Lib/asyncio/unix_events.py
+0
-3
windows_events.py
Lib/asyncio/windows_events.py
+0
-3
No files found.
Lib/asyncio/base_subprocess.py
Dosyayı görüntüle @
0742cae3
...
...
@@ -114,7 +114,6 @@ class BaseSubprocessTransport(transports.SubprocessTransport):
assert
returncode
is
not
None
,
returncode
assert
self
.
_returncode
is
None
,
self
.
_returncode
self
.
_returncode
=
returncode
self
.
_loop
.
_subprocess_closed
(
self
)
self
.
_call
(
self
.
_protocol
.
process_exited
)
self
.
_try_finish
()
...
...
Lib/asyncio/unix_events.py
Dosyayı görüntüle @
0742cae3
...
...
@@ -169,9 +169,6 @@ class _UnixSelectorEventLoop(selector_events.BaseSelectorEventLoop):
def
_child_watcher_callback
(
self
,
pid
,
returncode
,
transp
):
self
.
call_soon_threadsafe
(
transp
.
_process_exited
,
returncode
)
def
_subprocess_closed
(
self
,
transp
):
pass
def
_set_nonblocking
(
fd
):
flags
=
fcntl
.
fcntl
(
fd
,
fcntl
.
F_GETFL
)
...
...
Lib/asyncio/windows_events.py
Dosyayı görüntüle @
0742cae3
...
...
@@ -178,9 +178,6 @@ class ProactorEventLoop(proactor_events.BaseProactorEventLoop):
yield
from
transp
.
_post_init
()
return
transp
def
_subprocess_closed
(
self
,
transport
):
pass
class
IocpProactor
:
"""Proactor implementation using IOCP."""
...
...
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