commit | bfbc18dbf93d0575bf1d7857625dd056638d95a3 | [log] [tgz] |
---|---|---|
author | Guido van Rossum <guido@python.org> | Mon Aug 13 15:21:55 2001 +0000 |
committer | Guido van Rossum <guido@python.org> | Mon Aug 13 15:21:55 2001 +0000 |
tree | 07bd6d48d32f32e2100e222ba3a36dab2f0aadf5 | |
parent | f3b9430fd1e680177ed8b41625df24aac87278fa [diff] |
Remove redundant assignment l = [] from poll3() -- copy-and-paste error.
diff --git a/Lib/asyncore.py b/Lib/asyncore.py index ec769db..8761365 100644 --- a/Lib/asyncore.py +++ b/Lib/asyncore.py
@@ -146,7 +146,6 @@ timeout = int(timeout*1000) pollster = select.poll() if map: - l = [] for fd, obj in map.items(): flags = 0 if obj.readable():