diff options
author | Nick Coghlan <ncoghlan@gmail.com> | 2017-11-05 04:58:45 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-11-05 04:58:45 (GMT) |
commit | 1b46131ae423f43d45947bb48844cf82f6fd82b8 (patch) | |
tree | 9131136dc41b38ad016015d559bc923f9cc1c917 /Doc/whatsnew | |
parent | aed08562220974b5c67371b908f23caa1be07e38 (diff) | |
download | cpython-1b46131ae423f43d45947bb48844cf82f6fd82b8.zip cpython-1b46131ae423f43d45947bb48844cf82f6fd82b8.tar.gz cpython-1b46131ae423f43d45947bb48844cf82f6fd82b8.tar.bz2 |
bpo-22257: Mention startup refactoring in What's New (GH-4286)
While technically a purely internal change, bpo-31845 was
a fairly significant externally visible bug caused by
these changes (environment variable based configuration
was being ignored due to a change in the relative order
of reading the environment and reading command line settings,
and the test suite was only testing the command line options)
Hence this note to essentially say "If you see odd startup
problems in 3.7 that you've never seen in previous releases,
it's probably our fault, so let us know, and we'll fix it".
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r-- | Doc/whatsnew/3.7.rst | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.7.rst b/Doc/whatsnew/3.7.rst index 8d2b52b..6c81a2c 100644 --- a/Doc/whatsnew/3.7.rst +++ b/Doc/whatsnew/3.7.rst @@ -686,6 +686,20 @@ CPython bytecode changes (Contributed by Yury Selivanov and INADA Naoki in :issue:`26110`.) +Other CPython implementation changes +------------------------------------ + +* In preparation for potential future changes to the public CPython runtime + initialization API (see :pep:`432` for details), CPython's internal startup + and configuration management logic has been significantly refactored. While + these updates are intended to be entirely transparent to both embedding + applications and users of the regular CPython CLI, they're being mentioned + here as the refactoring changes the internal order of various operations + during interpreter startup, and hence may uncover previously latent defects, + either in embedding applications, or in CPython itself. + (Contributed by Nick Coghlan and Eric Snow as part of :issue:`22257`.) + + Documentation ============= |