Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
5e844c80
Commit
5e844c80
authored
Dec 31, 2012
by
Giampaolo Rodola
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix issue 10527: make multiprocessing use poll() instead of select() if available.
parent
c7ce3f7b
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
24 additions
and
0 deletions
+24
-0
Lib/multiprocessing/connection.py
Lib/multiprocessing/connection.py
+21
-0
Lib/test/test_multiprocessing.py
Lib/test/test_multiprocessing.py
+1
-0
Misc/NEWS
Misc/NEWS
+2
-0
No files found.
Lib/multiprocessing/connection.py
View file @
5e844c80
...
...
@@ -213,6 +213,27 @@ 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
...
...
Lib/test/test_multiprocessing.py
View file @
5e844c80
...
...
@@ -1574,6 +1574,7 @@ class _TestConnection(BaseTestCase):
self
.
assertTimingAlmostEqual
(
poll
.
elapsed
,
TIMEOUT1
)
conn
.
send
(
None
)
time
.
sleep
(.
1
)
self
.
assertEqual
(
poll
(
TIMEOUT1
),
True
)
self
.
assertTimingAlmostEqual
(
poll
.
elapsed
,
0
)
...
...
Misc/NEWS
View file @
5e844c80
...
...
@@ -189,6 +189,8 @@ Core and Builtins
Library
-------
- Issue 10527: make multiprocessing use poll() instead of select() if available.
- Issue #16485: Fix file descriptor not being closed if file header patching
fails on closing of aifc file.
...
...
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