8000 gh-127255: Make `CopyComPointer` public and add to `ctypes` doc. by junkmd · Pull Request #127275 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

gh-127255: Make CopyComPointer public and add to ctypes d 8000 oc. #127275

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 7 commits into from
Dec 3, 2024
Merged
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
Next Next commit
Make CopyComPointer public.
  • Loading branch information
junkmd committed Nov 25, 2024
commit 292b2447284947b84f290435f58c79cb2e52cdef
2 changes: 1 addition & 1 deletion Lib/ctypes/__init__.py
5DBE
Original file line numberDiff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
raise Exception("Version number mismatch", __version__, _ctypes_version)

if _os.name == "nt":
from _ctypes import COMError, FormatError
from _ctypes import COMError, CopyComPointer, FormatError

DEFAULT_MODE = RTLD_LOCAL
if _os.name == "posix" and _sys.platform == "darwin":
Expand Down
0