summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2009-06-16 00:29:31 (GMT)
committerBenjamin Peterson <benjamin@python.org>2009-06-16 00:29:31 (GMT)
commit08a0bbc8461399ff7dac477c68fc6fc16156ee76 (patch)
tree1c0d76883b1de95822b60f91930971aba9904e51 /Misc/NEWS
parenta1cc040828ff2c46a0c8560bddc7d21d3b9e78ef (diff)
downloadcpython-08a0bbc8461399ff7dac477c68fc6fc16156ee76.zip
cpython-08a0bbc8461399ff7dac477c68fc6fc16156ee76.tar.gz
cpython-08a0bbc8461399ff7dac477c68fc6fc16156ee76.tar.bz2
don't mask encoding errors when decoding a string #6289
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 686e707..44f30e0 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,8 @@ What's New in Python 2.7 alpha 1
Core and Builtins
-----------------
+- Issue #6289: Encoding errors from compile() were being masked.
+
- When no module is given in a relative import, the module field of the
ImportFrom AST node is now None instead of an empty string.