8000 move some stuffs related to `_SimpleCData` from `ctypes/__init__.pyi` to `_ctypes.pyi`, as at runtime. by junkmd · Pull Request #10118 · python/typeshed · GitHub
[go: up one dir, main page]

Skip to content

move some stuffs related to _SimpleCData from ctypes/__init__.pyi to _ctypes.pyi, as at runtime. #10118

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Apr 30, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
[pre-commit.ci] auto fixes from pre-commit.com hooks
  • Loading branch information
pre-commit-ci[bot] committed Apr 30, 2023
commit 290cddaa23f584c057ce44cda787ca71fb6f1806
2 changes: 1 addition & 1 deletion stdlib/_ctypes.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import sys
from _typeshed import ReadableBuffer, WriteableBuffer
from abc import abstractmethod
from collections.abc import Iterable, Iterator, Mapping
from ctypes import _CArgObject, _PointerLike, CDLL
from ctypes import CDLL, _CArgObject, _PointerLike
from typing import Any, Generic, TypeVar, overload
from typing_extensions import Self, TypeAlias

Expand Down
6 changes: 3 additions & 3 deletions stdlib/ctypes/__init__.pyi
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import sys
from _ctypes import (
RTLD_GLOBAL as RTLD_GLOBAL,
RTLD_LOCAL as RTLD_LOCAL,
Array as Array,
_CData as _CData,
_CDataMeta as _CDataMeta,
_SimpleCData as _SimpleCData,
Array as Array,
RTLD_GLOBAL as RTLD_GLOBAL,
RTLD_LOCAL as RTLD_LOCAL,
)
from collections.abc import Callable, Sequence
from typing import Any, ClassVar, Generic, TypeVar, overload
Expand Down
0