mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-06 20:24:30 +08:00
Added stub for asyncore.socket_map, undocumented but useful (#3284)
This commit is contained in:
committed by
Sebastian Rittau
parent
a2834cf24d
commit
785d7838e1
@@ -13,8 +13,9 @@ from errno import (EALREADY, EINPROGRESS, EWOULDBLOCK, ECONNRESET, EINVAL,
|
||||
EPIPE, EAGAIN, errorcode)
|
||||
|
||||
# cyclic dependence with asynchat
|
||||
_maptype = Dict[str, Any]
|
||||
_maptype = Dict[int, Any]
|
||||
|
||||
socket_map: _maptype = ... # Undocumented
|
||||
|
||||
class ExitNow(Exception): ...
|
||||
|
||||
|
||||
Reference in New Issue
Block a user