summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2009-04-04 17:09:35 (GMT)
committerBenjamin Peterson <benjamin@python.org>2009-04-04 17:09:35 (GMT)
commite099b37428ab72cf70c745e941b9767fcad8eaa3 (patch)
tree11ba876743d835964f1b6a9cb52286d39326e54d /Misc
parentf3abcc9d3c5c2a0bb739df2f3649ffa8b958a084 (diff)
downloadcpython-e099b37428ab72cf70c745e941b9767fcad8eaa3.zip
cpython-e099b37428ab72cf70c745e941b9767fcad8eaa3.tar.gz
cpython-e099b37428ab72cf70c745e941b9767fcad8eaa3.tar.bz2
#5391 make mmap work exclusively with bytes
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 0774988..b567ad1 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -11,6 +11,7 @@ What's New in Python 3.1 alpha 2?
Core and Builtins
-----------------
+
- Implement PEP 378, Format Specifier for Thousands Separator, for
integers.
@@ -128,6 +129,8 @@ Library
Extension Modules
-----------------
+- Issue #5391: mmap now deals exclusively with bytes.
+
- Issue #5463: In struct module, remove deprecated overflow wrapping
when packing an integer: struct.pack('=L', -1) now raises
struct.error instead of returning b'\xff\xff\xff\xff'. The