8000 bpo-37879: Fix warnings in _testcapimodule by encukou · Pull Request #16004 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

bpo-37879: Fix warnings in _testcapimodule #16004

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 2 commits into from
Sep 12, 2019
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
Fix code style
  • Loading branch information
encukou committed Sep 12, 2019
commit beb5170d216df99af82a824f168b36d84dd21f47
2 changes: 1 addition & 1 deletion Modules/_testcapimodule.c
552C
Original file line number Diff line number Diff line change
Expand Up @@ -6304,7 +6304,7 @@ static void
heapctypesubclasswithfinalizer_finalize(PyObject *self)
{
PyObject *error_type, *error_value, *error_traceback, *m;
PyObject *oldtype=NULL, *newtype=NULL;
PyObject *oldtype = NULL, *newtype = NULL;

/* Save the current exception, if any. */
PyErr_Fetch(&error_type, &error_value, &error_traceback);
Expand Down
0