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
bdea5ec5
Kaydet (Commit)
bdea5ec5
authored
Ock 15, 2013
tarafından
Serhiy Storchaka
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Merge heads
üst
9599745e
7796b086
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
23 deletions
+0
-23
connection.py
Lib/multiprocessing/connection.py
+0
-23
No files found.
Lib/multiprocessing/connection.py
Dosyayı görüntüle @
bdea5ec5
...
...
@@ -41,7 +41,6 @@ import errno
import
time
import
tempfile
import
itertools
import
select
import
_multiprocessing
from
multiprocessing
import
current_process
,
AuthenticationError
...
...
@@ -201,28 +200,6 @@ if sys.platform != 'win32':
return
c1
,
c2
else
:
if
hasattr
(
select
,
'poll'
):
def
_poll
(
fds
,
timeout
):
if
timeout
is
not
None
:
timeout
=
int
(
timeout
)
*
1000
# timeout is in milliseconds
fd_map
=
{}
pollster
=
select
.
poll
()
for
fd
in
fds
:
pollster
.
register
(
fd
,
select
.
POLLIN
)
if
hasattr
(
fd
,
'fileno'
):
fd_map
[
fd
.
fileno
()]
=
fd
else
:
fd_map
[
fd
]
=
fd
ls
=
[]
for
fd
,
event
in
pollster
.
poll
(
timeout
):
if
event
&
select
.
POLLNVAL
:
raise
ValueError
(
'invalid file descriptor
%
i'
%
fd
)
ls
.
append
(
fd_map
[
fd
])
return
ls
else
:
def
_poll
(
fds
,
timeout
):
return
select
.
select
(
fds
,
[],
[],
timeout
)[
0
]
from
_multiprocessing
import
win32
def
Pipe
(
duplex
=
True
):
...
...
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