8000 gh-94512: Fix forced arg format in AC-processed overlapped by arhadthedev · Pull Request #94516 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

gh-94512: Fix forced arg format in AC-processed overlapped #94516

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 5 commits into from
Jul 28, 2022
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
Prev Previous commit
Next Next commit
Return F_HANDLE and F_ULONG_PTR for Py_BuildValue
  • Loading branch information
arhadthedev committed Jul 2, 2022
commit e78d8ca253a3885f9244ce1916b6b57736c9de3e
2 changes: 2 additions & 0 deletions Modules/overlapped.c
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@
# define T_POINTER T_ULONGLONG
#endif

#define F_HANDLE F_POINTER
#define F_ULONG_PTR F_POINTER
#define F_DWORD "k"
#define F_BOOL "i"
#define F_UINT "I"
Expand Down
0