Skip to content

Commit 6e39cbb

Browse files
author
brett.cannon
committed
Remove a dict.has_key() use to silence a warning when running under -3.
git-svn-id: http://svn.python.org/projects/python/trunk@65393 6015fed2-1504-0410-9fe1-9d1591cc4771
1 parent 34c232d commit 6e39cbb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Lib/asyncore.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -267,7 +267,7 @@ def del_channel(self, map=None):
267267
fd = self._fileno
268268
if map is None:
269269
map = self._map
270-
if map.has_key(fd):
270+
if fd in map:
271271
#self.log_info('closing channel %d:%s' % (fd, self))
272272
del map[fd]
273273
self._fileno = None

0 commit comments

Comments
 (0)