Commit bfbc18db authored by Guido van Rossum's avatar Guido van Rossum

Remove redundant assignment l = [] from poll3() -- copy-and-paste

error.
parent f3b9430f
...@@ -146,7 +146,6 @@ def poll3 (timeout=0.0, map=None): ...@@ -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():
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment