mirror of https://github.com/python/cpython.git
Remove redundant assignment l = [] from poll3() -- copy-and-paste
error.
This commit is contained in:
parent
f3b9430fd1
commit
bfbc18dbf9
|
@ -146,7 +146,6 @@ def poll3 (timeout=0.0, map=None):
|
||||||
timeout = int(timeout*1000)
|
timeout = int(timeout*1000)
|
||||||
pollster = select.poll()
|
pollster = select.poll()
|
||||||
if map:
|
if map:
|
||||||
l = []
|
|
||||||
for fd, obj in map.items():
|
for fd, obj in map.items():
|
||||||
flags = 0
|
flags = 0
|
||||||
if obj.readable():
|
if obj.readable():
|
||||||
|
|
Loading…
Reference in New Issue