mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-16 00:37:10 +08:00
ctypes.CDLL name can be None (#3945)
This commit is contained in:
committed by
GitHub
parent
aa06f3bc7b
commit
f7d240f06e
@@ -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 = ...,
|
||||
|
||||
Reference in New Issue
Block a user