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
f788cf70
Kaydet (Commit)
f788cf70
authored
Ock 07, 2012
tarafından
Sandro Tosi
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
clarify recv* are blocking operations; thanks to Chris Kogelnik from docs@
üst
36cdca12
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
3 deletions
+6
-3
multiprocessing.rst
Doc/library/multiprocessing.rst
+6
-3
No files found.
Doc/library/multiprocessing.rst
Dosyayı görüntüle @
f788cf70
...
...
@@ -727,7 +727,8 @@ Connection objects are usually created using :func:`Pipe` -- see also
..
method
::
recv
()
Return
an
object
sent
from
the
other
end
of
the
connection
using
:
meth
:`
send
`.
Raises
:
exc
:`
EOFError
`
if
there
is
nothing
left
to
receive
:
meth
:`
send
`.
Blocks
until
there
its
something
to
receive
.
Raises
:
exc
:`
EOFError
`
if
there
is
nothing
left
to
receive
and
the
other
end
was
closed
.
..
method
::
fileno
()
...
...
@@ -761,7 +762,8 @@ Connection objects are usually created using :func:`Pipe` -- see also
..
method
::
recv_bytes
([
maxlength
])
Return
a
complete
message
of
byte
data
sent
from
the
other
end
of
the
connection
as
a
string
.
Raises
:
exc
:`
EOFError
`
if
there
is
nothing
left
connection
as
a
string
.
Blocks
until
there
is
something
to
receive
.
Raises
:
exc
:`
EOFError
`
if
there
is
nothing
left
to
receive
and
the
other
end
has
closed
.
If
*
maxlength
*
is
specified
and
the
message
is
longer
than
*
maxlength
*
...
...
@@ -771,7 +773,8 @@ Connection objects are usually created using :func:`Pipe` -- see also
..
method
::
recv_bytes_into
(
buffer
[,
offset
])
Read
into
*
buffer
*
a
complete
message
of
byte
data
sent
from
the
other
end
of
the
connection
and
return
the
number
of
bytes
in
the
message
.
Raises
of
the
connection
and
return
the
number
of
bytes
in
the
message
.
Blocks
until
there
is
something
to
receive
.
Raises
:
exc
:`
EOFError
`
if
there
is
nothing
left
to
receive
and
the
other
end
was
closed
.
...
...
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