Commit 6a67ef86 authored by Jim Fulton's avatar Jim Fulton

de-unixify

parent 308897d5
...@@ -1336,7 +1336,7 @@ def sync_connect_doesnt_hang(): ...@@ -1336,7 +1336,7 @@ def sync_connect_doesnt_hang():
>>> class CM(ZEO.zrpc.client.ConnectionManager): >>> class CM(ZEO.zrpc.client.ConnectionManager):
... sync_wait = 1 ... sync_wait = 1
... _start_asyncore_loop = lambda self: None ... _start_asyncore_loop = lambda self: None
>>> cm = CM('', object()) >>> cm = CM(('', 0), object())
Calling connect results in an exception being raised, instead of hanging Calling connect results in an exception being raised, instead of hanging
indefinitely when the thread dies without setting up the connection. indefinitely when the thread dies without setting up the connection.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment