mirror of
https://github.com/python/cpython.git
synced 2025-11-25 04:34:37 +00:00
merge in the fix for test_ftplib on some bots [reviewed by Georg]
This commit is contained in:
parent
7ff19fa293
commit
e14267bbad
1 changed files with 5 additions and 0 deletions
|
|
@ -212,6 +212,11 @@ class DummyFTPServer(asyncore.dispatcher, threading.Thread):
|
|||
def handle_accept(self):
|
||||
conn, addr = self.accept()
|
||||
self.handler = self.handler(conn)
|
||||
self.close()
|
||||
|
||||
def handle_connect(self):
|
||||
self.close()
|
||||
handle_read = handle_connect
|
||||
|
||||
def writable(self):
|
||||
return 0
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue