summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2016-01-22 11:22:07 (GMT)
committerVictor Stinner <victor.stinner@gmail.com>2016-01-22 11:22:07 (GMT)
commite3560a7dc9eeac324ff407588cb3f0b36ffe5c6e (patch)
treee366a51f86cbd7b3acb240a15da4135d03639584 /Misc
parentae8c078dbb93db3af982b7b42382e956af663185 (diff)
downloadcpython-e3560a7dc9eeac324ff407588cb3f0b36ffe5c6e.zip
cpython-e3560a7dc9eeac324ff407588cb3f0b36ffe5c6e.tar.gz
cpython-e3560a7dc9eeac324ff407588cb3f0b36ffe5c6e.tar.bz2
site: error on sitecustomize import error
Issue #26099: The site module now writes an error into stderr if sitecustomize module can be imported but executing the module raise an ImportError. Same change for usercustomize.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 01e933c..4e3cc96 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -146,6 +146,10 @@ Core and Builtins
Library
-------
+- Issue #26099: The site module now writes an error into stderr if
+ sitecustomize module can be imported but executing the module raise an
+ ImportError. Same change for usercustomize.
+
- Issue #26147: xmlrpc now works with strings not encodable with used
non-UTF-8 encoding.