aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Python/pylifecycle.c
diff options
context:
space:
mode:
authorRaymond Hettinger <rhettinger@users.noreply.github.com>2020-06-23 08:42:55 -0700
committerGitHub <noreply@github.com>2020-06-23 17:42:55 +0200
commitf9bd05e83e32bece49de5af0c9a232325c57648a (patch)
treef332a6f5041e64595b8569ca34ae6eb598c8e951 /Python/pylifecycle.c
parent522691c46e2ae51faaad5bbbce7d959dd61770df (diff)
downloadcpython-f9bd05e83e32bece49de5af0c9a232325c57648a.tar.gz
cpython-f9bd05e83e32bece49de5af0c9a232325c57648a.zip
bpo-40521: Empty frozenset is no longer a singleton (GH-21085)
* Revert "bpo-40521: Make the empty frozenset per interpreter (GH-21068)" This reverts commit 261cfedf7657a515e04428bba58eba2a9bb88208. * bpo-40521: Empty frozensets are no longer singletons * Complete the removal of the frozenset singleton
Diffstat (limited to 'Python/pylifecycle.c')
-rw-r--r--Python/pylifecycle.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/Python/pylifecycle.c b/Python/pylifecycle.c
index f0770727f4d..09945a8f7a6 100644
--- a/Python/pylifecycle.c
+++ b/Python/pylifecycle.c
@@ -1253,7 +1253,6 @@ finalize_interp_types(PyThreadState *tstate, int is_main_interp)
_PyAsyncGen_Fini(tstate);
_PyContext_Fini(tstate);
- _PySet_Fini(tstate);
_PyDict_Fini(tstate);
_PyList_Fini(tstate);
_PyTuple_Fini(tstate);