Staging
v0.8.1
https://github.com/python/cpython
Revision b4e85cadfbc2b1b24ec5f3159e351dbacedaa5e0 authored by Victor Stinner on 23 June 2020, 09:33:18 UTC, committed by GitHub on 23 June 2020, 09:33:18 UTC
Each interpreter now has its own dict free list:

* Move dict free lists into PyInterpreterState.
* Move PyDict_MAXFREELIST define to pycore_interp.h
* Add _Py_dict_state structure.
* Add tstate parameter to _PyDict_ClearFreeList() and _PyDict_Fini().
* In debug mode, ensure that the dict free lists are not used after
  _PyDict_Fini() is called.
* Remove "#ifdef EXPERIMENTAL_ISOLATED_SUBINTERPRETERS".
1 parent 26a1ad1
Raw File
Tip revision: b4e85cadfbc2b1b24ec5f3159e351dbacedaa5e0 authored by Victor Stinner on 23 June 2020, 09:33:18 UTC
bpo-40521: Make dict free lists per-interpreter (GH-20645)
Tip revision: b4e85ca
CODE_OF_CONDUCT.md
# Code of Conduct

Please note that all interactions on
[Python Software Foundation](https://www.python.org/psf-landing/)-supported
infrastructure is [covered](https://www.python.org/psf/records/board/minutes/2014-01-06/#management-of-the-psfs-web-properties)
by the [PSF Code of Conduct](https://www.python.org/psf/codeofconduct/),
which includes all the infrastructure used in the development of Python itself
(e.g. mailing lists, issue trackers, GitHub, etc.).

In general, this means that everyone is expected to be **open**, **considerate**, and
**respectful** of others no matter what their position is within the project.

back to top