mirror of
https://github.com/python/cpython.git
synced 2025-07-23 03:05:38 +00:00
* 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.
This commit is contained in:
parent
e295676c87
commit
d794666048
5 changed files with 89 additions and 65 deletions
|
@ -420,6 +420,7 @@ Py_Finalize(void)
|
|||
PyCFunction_Fini();
|
||||
PyTuple_Fini();
|
||||
PyList_Fini();
|
||||
PySet_Fini();
|
||||
PyString_Fini();
|
||||
PyInt_Fini();
|
||||
PyFloat_Fini();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue