From: Guido van Rossum Date: Mon, 13 Aug 2001 15:21:55 +0000 (+0000) Subject: Remove redundant assignment l = [] from poll3() -- copy-and-paste X-Git-Tag: v2.2a3~587 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=bfbc18dbf93d0575bf1d7857625dd056638d95a3;p=python Remove redundant assignment l = [] from poll3() -- copy-and-paste error. --- diff --git a/Lib/asyncore.py b/Lib/asyncore.py index ec769dbe7e..8761365288 100644 --- a/Lib/asyncore.py +++ b/Lib/asyncore.py @@ -146,7 +146,6 @@ def poll3 (timeout=0.0, map=None): timeout = int(timeout*1000) pollster = select.poll() if map: - l = [] for fd, obj in map.items(): flags = 0 if obj.readable():