summaryrefslogtreecommitdiff
path: root/Lib/test
diff options
context:
space:
mode:
authorJosiah Carlson <josiah.carlson@gmail.com>2008-06-10 05:00:08 +0000
committerJosiah Carlson <josiah.carlson@gmail.com>2008-06-10 05:00:08 +0000
commit1a72d88abf90edd72a9baf0fd6eebea2cded89c5 (patch)
tree3f7fe414a21a6021b9fbeaa8c514672302718d6f /Lib/test
parent602d8db2bc5ddc9a2de2843df92db53365478b3d (diff)
downloadcpython-git-1a72d88abf90edd72a9baf0fd6eebea2cded89c5.tar.gz
Applying updated patch from Issue 1736190, which addresses partial
issues in: 909005 and 17361001, as well as completely as possible issues 539444, 760475, 777588, 889153, 953599, 1025525, 1063924, and 658749. This patch also includes doc and test updates as necessary.
Diffstat (limited to 'Lib/test')
-rw-r--r--Lib/test/test_asyncore.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/Lib/test/test_asyncore.py b/Lib/test/test_asyncore.py
index 5fa75559c7..eead905f07 100644
--- a/Lib/test/test_asyncore.py
+++ b/Lib/test/test_asyncore.py
@@ -27,6 +27,9 @@ class dummychannel:
def __init__(self):
self.socket = dummysocket()
+ def close(self):
+ self.socket.close()
+
class exitingdummy:
def __init__(self):
pass