◐ Shell
clean mode source ↗

bpo-34170: Add Python/coreconfig.c for _PyCoreConfig by vstinner · Pull Request #8607 · python/cpython

Skip to content

Navigation Menu

Provide feedback

Saved searches

Use saved searches to filter your results more quickly

Sign up

Appearance settings

Conversation

@vstinner

  • Move config_() and PyCoreConfig() functions from Modules/main.c
    to a new Python/config.c file.
  • Inline _Py_ReadHashSeed() into config_init_hash_seed()

https://bugs.python.org/issue34170

@vstinner vstinner changed the title bpo-34170: Add Python/config.c for _PyCoreConfig bpo-34170: Add Python/coreconfig.c for _PyCoreConfig

Aug 1, 2018
* Add Include/coreconfig.h
* Move config_*() and _PyCoreConfig_*() functions from Modules/main.c
  to a new Python/coreconfig.c file.
* Inline _Py_ReadHashSeed() into config_init_hash_seed()
* Move global configuration variables to coreconfig.c

@ncoghlan

Nice! Hooray for moving that out of the main module :)

Labels