8000 gh-103092: Adapt _ctypes's PyCStgDict type to heap type by erlend-aasland · Pull Request #103932 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

gh-103092: Adapt _ctypes's PyCStgDict type to heap type #103932

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

Closed
Closed
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
sort
  • Loading branch information
erlend-aasland authored and kumaraditya303 committed May 15, 2023
commit 56fd7e9e63d1b8ffbf2a263f1aff1fc1c13040c5
2 changes: 1 addition & 1 deletion Modules/_ctypes/ctypes.h
68DA
Original file line number Diff line numberDiff line change
Expand Up @@ -36,12 +36,12 @@ typedef struct {
PyTypeObject *DictRemover_Type;
PyTypeObject *PyCArg_Type;
PyTypeObject *PyCField_Type;
PyTypeObject *PyCStgDict_Type;
PyTypeObject *PyCThunk_Type;
#ifdef MS_WIN32
PyTypeObject *PyComError_Type;
#endif
PyTypeObject *StructParam_Type;
PyTypeObject *PyCStgDict_Type;
} ctypes_state;

extern ctypes_state global_state;
Expand Down
0