bpo-8901: Windows registry path is now ignored with the -E option (GH-18169)

This commit is contained in:
Zackery Spytz 2020-03-30 10:04:45 -06:00 committed by GitHub
parent 53e4c91725
commit 676b105111
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 11 additions and 2 deletions

View file

@ -548,6 +548,11 @@ Build and C API Changes
* The :c:func:`PyModule_AddType` function is added to help adding a type to a module.
(Contributed by Dong-hee Na in :issue:`40024`.)
* The Windows registry is no longer used to initialize :data:`sys.path` when
the ``-E`` option is used. This is significant when embedding Python on
Windows.
(Contributed by Zackery Spytz in :issue:`8901`.)
Deprecated
==========