summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2012-09-25 15:22:59 (GMT)
committerBenjamin Peterson <benjamin@python.org>2012-09-25 15:22:59 (GMT)
commitfeaa54f537cf36ca47cefd934a568ff92fe3aa43 (patch)
treee8bfff59c765831dfc151e97dbc068d46e279f80 /Misc
parentd79ac0fad7d125d081194981e8bd17b1528a8bfc (diff)
downloadcpython-feaa54f537cf36ca47cefd934a568ff92fe3aa43.zip
cpython-feaa54f537cf36ca47cefd934a568ff92fe3aa43.tar.gz
cpython-feaa54f537cf36ca47cefd934a568ff92fe3aa43.tar.bz2
don't depend on __debug__ because it's baked in at freeze time (issue #16046)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 18d743b..c39ab77 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,8 @@ What's New in Python 3.3.1?
Core and Builtins
-----------------
+- Issue #16046: Fix loading sourceless legacy pyos.
+
- Issue #15379: Fix passing of non-BMP characters as integers for the charmap
decoder (already working as unicode strings). Patch by Serhiy Storchaka.