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-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 7 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.
Morty Proxy This is a proxified and sanitized view of the page, visit original site.