diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2016-01-22 11:22:07 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2016-01-22 11:22:07 (GMT) |
commit | e3560a7dc9eeac324ff407588cb3f0b36ffe5c6e (patch) | |
tree | e366a51f86cbd7b3acb240a15da4135d03639584 /Misc | |
parent | ae8c078dbb93db3af982b7b42382e956af663185 (diff) | |
download | cpython-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/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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. |