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
50931f41
Kaydet (Commit)
50931f41
authored
Mar 18, 2015
tarafından
Victor Stinner
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Merge 3.4 (asyncio)
üst
7fea974b
d6dc7bda
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
0 deletions
+5
-0
base_subprocess.py
Lib/asyncio/base_subprocess.py
+1
-0
locks.py
Lib/asyncio/locks.py
+3
-0
streams.py
Lib/asyncio/streams.py
+1
-0
No files found.
Lib/asyncio/base_subprocess.py
Dosyayı görüntüle @
50931f41
...
...
@@ -211,6 +211,7 @@ class BaseSubprocessTransport(transports.SubprocessTransport):
waiter
.
set_result
(
returncode
)
self
.
_exit_waiters
=
None
@coroutine
def
_wait
(
self
):
"""Wait until the process exit and return the process return code.
...
...
Lib/asyncio/locks.py
Dosyayı görüntüle @
50931f41
...
...
@@ -162,6 +162,7 @@ class Lock:
# always raises; that's how the with-statement works.
pass
@coroutine
def
__iter__
(
self
):
# This is not a coroutine. It is meant to enable the idiom:
#
...
...
@@ -362,6 +363,7 @@ class Condition:
def
__exit__
(
self
,
*
args
):
pass
@coroutine
def
__iter__
(
self
):
# See comment in Lock.__iter__().
yield
from
self
.
acquire
()
...
...
@@ -446,6 +448,7 @@ class Semaphore:
def
__exit__
(
self
,
*
args
):
pass
@coroutine
def
__iter__
(
self
):
# See comment in Lock.__iter__().
yield
from
self
.
acquire
()
...
...
Lib/asyncio/streams.py
Dosyayı görüntüle @
50931f41
...
...
@@ -378,6 +378,7 @@ class StreamReader:
else
:
self
.
_paused
=
True
@coroutine
def
_wait_for_data
(
self
,
func_name
):
"""Wait until feed_data() or feed_eof() is called."""
# StreamReader uses a future to link the protocol feed_data() method
...
...
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