Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

bpo-42327: Add PyModule_Add(). #23240

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
wants to merge 12 commits into from
Prev Previous commit
Next Next commit
Fix typo.
  • Loading branch information
serhiy-storchaka committed Nov 12, 2020
commit 76b606339a12d18d7670b460f1dd7904b7d7a540
2 changes: 1 addition & 1 deletion 2 Modules/_ctypes/_ctypes.c
Original file line number Diff line number Diff line change
Expand Up @@ -5838,7 +5838,7 @@ PyInit__ctypes(void)
#ifdef MS_WIN32
if (create_comerror() < 0)
goto error;
if PyModule_Add(m, "COMError", ComError) < 0) {
if (PyModule_Add(m, "COMError", ComError) < 0) {
goto error;
}

Expand Down
Morty Proxy This is a proxified and sanitized view of the page, visit original site.