diff options
author | Richard Oudkerk <shibturn@gmail.com> | 2013-01-15 13:19:24 (GMT) |
---|---|---|
committer | Richard Oudkerk <shibturn@gmail.com> | 2013-01-15 13:19:24 (GMT) |
commit | 8838061119934b9019cbc53171c8ad159e8c7826 (patch) | |
tree | e7e8bd2332abc664b82a370f244e39c8482c5ff3 /Lib | |
parent | ad1d5f908a51e1c6fd487e31d6f6aab98bae5c00 (diff) | |
download | cpython-8838061119934b9019cbc53171c8ad159e8c7826.zip cpython-8838061119934b9019cbc53171c8ad159e8c7826.tar.gz cpython-8838061119934b9019cbc53171c8ad159e8c7826.tar.bz2 |
Issue #10527: Remove dead code
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/multiprocessing/connection.py | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/Lib/multiprocessing/connection.py b/Lib/multiprocessing/connection.py index f73faf6..a5dc2a8 100644 --- a/Lib/multiprocessing/connection.py +++ b/Lib/multiprocessing/connection.py @@ -41,7 +41,6 @@ import errno import time import tempfile import itertools -import select import _multiprocessing from multiprocessing import current_process, AuthenticationError @@ -214,28 +213,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): |