summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d/next/C API
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@redhat.com>2019-08-23 19:16:51 (GMT)
committerGitHub <noreply@github.com>2019-08-23 19:16:51 (GMT)
commitaf84a88ef8b3288da528d2f52b7d3fbafb8dc8a6 (patch)
treeb9f0a48a09eb7783ee3b35e9f2381ea2f791b9d9 /Misc/NEWS.d/next/C API
parent3921d12174c1998d9df7a08d036a7fef2d587a64 (diff)
downloadcpython-af84a88ef8b3288da528d2f52b7d3fbafb8dc8a6.zip
cpython-af84a88ef8b3288da528d2f52b7d3fbafb8dc8a6.tar.gz
cpython-af84a88ef8b3288da528d2f52b7d3fbafb8dc8a6.tar.bz2
bpo-36763: PyConfig_Read() handles PySys_AddXOption() (GH-15431) (GH-15435)
PyConfig_Read() is now responsible to handle early calls to PySys_AddXOption() and PySys_AddWarnOption(). Options added by PySys_AddXOption() are now handled the same way than PyConfig.xoptions and command line -X options. For example, PySys_AddXOption(L"faulthandler") enables faulthandler as expected. (cherry picked from commit 120b707a6d43452e067daa55a8fdca69f9424abc)
Diffstat (limited to 'Misc/NEWS.d/next/C API')
-rw-r--r--Misc/NEWS.d/next/C API/2019-08-23-18-45-11.bpo-36763.q3Kh8Z.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/C API/2019-08-23-18-45-11.bpo-36763.q3Kh8Z.rst b/Misc/NEWS.d/next/C API/2019-08-23-18-45-11.bpo-36763.q3Kh8Z.rst
new file mode 100644
index 0000000..500cdbf
--- /dev/null
+++ b/Misc/NEWS.d/next/C API/2019-08-23-18-45-11.bpo-36763.q3Kh8Z.rst
@@ -0,0 +1,2 @@
+Options added by ``PySys_AddXOption()`` are now handled the same way than
+``PyConfig.xoptions`` and command line ``-X`` options.