Added stub for asyncore.socket_map, undocumented but useful (#3284)

This commit is contained in:
Vasily Zakharov
2019-09-30 21:51:11 +03:00
committed by Sebastian Rittau
parent a2834cf24d
commit 785d7838e1

View File

@@ -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): ...