ctypes.CDLL name can be None (#3945)

This commit is contained in:
Javier Honduvilla Coto
2020-04-26 06:51:38 -07:00
committed by GitHub
parent aa06f3bc7b
commit f7d240f06e

View File

@@ -26,7 +26,7 @@ class CDLL(object):
_FuncPtr: Type[_FuncPointer] = ...
def __init__(
self,
name: str,
name: Optional[str],
mode: int = ...,
handle: Optional[int] = ...,
use_errno: bool = ...,