summaryrefslogtreecommitdiff
path: root/Python/pythonrun.c
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2005-08-01 21:39:29 +0000
committerRaymond Hettinger <python@rcn.com>2005-08-01 21:39:29 +0000
commitb6eb11fbf06a69f3efe9aa38645dbc18d40fce83 (patch)
treeb8d595b324dd4ba3e94175e2d956fc28826bdba1 /Python/pythonrun.c
parent471094fbe3977219dbf452ed1b65f895deae5ae6 (diff)
downloadcpython-b6eb11fbf06a69f3efe9aa38645dbc18d40fce83.tar.gz
* Improve code for the empty frozenset singleton:
- Handle both frozenset() and frozenset([]). - Do not use singleton for frozenset subclasses. - Finalize the singleton. - Add test cases. * Factor-out set_update_internal() from set_update(). Simplifies the code for several internal callers. * Factor constant expressions out of loop in set_merge_internal(). * Minor comment touch-ups.
Diffstat (limited to 'Python/pythonrun.c')
-rw-r--r--Python/pythonrun.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/Python/pythonrun.c b/Python/pythonrun.c
index 0ac46f07b0..9e53564ad8 100644
--- a/Python/pythonrun.c
+++ b/Python/pythonrun.c
@@ -420,6 +420,7 @@ Py_Finalize(void)
PyCFunction_Fini();
PyTuple_Fini();
PyList_Fini();
+ PySet_Fini();
PyString_Fini();
PyInt_Fini();
PyFloat_Fini();