diff options
author | Benjamin Peterson <benjamin@python.org> | 2009-04-04 17:09:35 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2009-04-04 17:09:35 (GMT) |
commit | e099b37428ab72cf70c745e941b9767fcad8eaa3 (patch) | |
tree | 11ba876743d835964f1b6a9cb52286d39326e54d /Misc | |
parent | f3abcc9d3c5c2a0bb739df2f3649ffa8b958a084 (diff) | |
download | cpython-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/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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 |