| Index: Lib/test/test_asyncore.py |
| =================================================================== |
| --- Lib/test/test_asyncore.py (revision 62704) |
| +++ Lib/test/test_asyncore.py (working copy) |
| @@ -27,6 +27,9 @@ |
| def __init__(self): |
| self.socket = dummysocket() |
| + def close(self): |
| + self.socket.close() |
| + |
| class exitingdummy: |
| def __init__(self): |
| pass |