8000 bpo-1635741: Enable unicode_release_interned() without insure or valgrind. by shihai1991 · Pull Request #21087 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content
8000

bpo-1635741: Enable unicode_release_interned() without insure or valgrind. #21087

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
Prev Previous commit
Next Next commit
Merge branch 'master' into bpo_1635741_interned_unicode
  • Loading branch information
shihai1991 authored Jun 23, 2020
commit 03f650dc1d802eac9a6d63bbbdcfe7303d8841c9
7 changes: 1 addition & 6 deletions Python/pylifecycle.c
Original file line number Diff line number Diff line change
Expand Up @@ -1253,12 +1253,7 @@ finalize_interp_types(PyThreadState *tstate, int is_main_interp)
_PyAsyncGen_Fini(tstate);
_PyContext_Fini(tstate);

if (is_main_interp) {
_PySet_Fini();
}
if (is_main_interp) {
_PyDict_Fini();
}
_PyDict_Fini(tstate);
_PyTuple_Fini(tstate);

_PySlice_Fini(tstate);
Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.
0