Enable stubtest for pyserial (#9692)

This commit is contained in:
Alex Waygood
2023-02-08 23:10:33 +00:00
committed by GitHub
parent cf6ff75952
commit 6d535bf0a3
6 changed files with 33 additions and 11 deletions
+1 -1
View File
@@ -6,7 +6,7 @@ from typing_extensions import TypeAlias
if sys.platform == "win32":
def is_64bit() -> bool: ...
ULONG_PTR: TypeAlias = c_int64 | c_ulong
ULONG_PTR: c_int64 | c_ulong
class _SECURITY_ATTRIBUTES(Structure): ...
LPSECURITY_ATTRIBUTES: type[_Pointer[_SECURITY_ATTRIBUTES]]