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
7d78d0d9
Kaydet (Commit)
7d78d0d9
authored
Ock 15, 2015
tarafından
Victor Stinner
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Merge 3.4 (asyncio)
üst
fe47e667
02392c92
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
7 additions
and
2 deletions
+7
-2
sslproto.py
Lib/asyncio/sslproto.py
+1
-0
subprocess.py
Lib/asyncio/subprocess.py
+4
-1
unix_events.py
Lib/asyncio/unix_events.py
+1
-1
test_base_events.py
Lib/test/test_asyncio/test_base_events.py
+1
-0
test_proactor_events.py
Lib/test/test_asyncio/test_proactor_events.py
+0
-0
test_selector_events.py
Lib/test/test_asyncio/test_selector_events.py
+0
-0
test_unix_events.py
Lib/test/test_asyncio/test_unix_events.py
+0
-0
No files found.
Lib/asyncio/sslproto.py
Dosyayı görüntüle @
7d78d0d9
...
...
@@ -417,6 +417,7 @@ class SSLProtocol(protocols.Protocol):
self
.
_session_established
=
False
self
.
_in_handshake
=
False
self
.
_in_shutdown
=
False
self
.
_transport
=
None
def
connection_made
(
self
,
transport
):
"""Called when the low-level connection is made.
...
...
Lib/asyncio/subprocess.py
Dosyayı görüntüle @
7d78d0d9
...
...
@@ -94,8 +94,11 @@ class SubprocessStreamProtocol(streams.FlowControlMixin,
reader
.
set_exception
(
exc
)
def
process_exited
(
self
):
# wake up futures waiting for wait()
returncode
=
self
.
_transport
.
get_returncode
()
self
.
_transport
.
close
()
self
.
_transport
=
None
# wake up futures waiting for wait()
while
self
.
_waiters
:
waiter
=
self
.
_waiters
.
popleft
()
if
not
waiter
.
cancelled
():
...
...
Lib/asyncio/unix_events.py
Dosyayı görüntüle @
7d78d0d9
...
...
@@ -516,7 +516,7 @@ class _UnixWritePipeTransport(transports._FlowControlMixin,
self
.
_loop
.
call_soon
(
self
.
_call_connection_lost
,
None
)
def
close
(
self
):
if
not
self
.
_closing
:
if
self
.
_pipe
is
not
None
and
not
self
.
_closing
:
# write_eof is all what we needed to close the write pipe
self
.
write_eof
()
...
...
Lib/test/test_asyncio/test_base_events.py
Dosyayı görüntüle @
7d78d0d9
...
...
@@ -590,6 +590,7 @@ class BaseEventLoopTests(test_utils.TestCase):
raise
ValueError
(
'spam'
)
loop
=
Loop
()
self
.
addCleanup
(
loop
.
close
)
asyncio
.
set_event_loop
(
loop
)
def
run_loop
():
...
...
Lib/test/test_asyncio/test_proactor_events.py
Dosyayı görüntüle @
7d78d0d9
This diff is collapsed.
Click to expand it.
Lib/test/test_asyncio/test_selector_events.py
Dosyayı görüntüle @
7d78d0d9
This diff is collapsed.
Click to expand it.
Lib/test/test_asyncio/test_unix_events.py
Dosyayı görüntüle @
7d78d0d9
This diff is collapsed.
Click to expand it.
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