summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2012-10-16 19:07:23 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2012-10-16 19:07:23 (GMT)
commitcfc22b4a9b8d6176d90ef1eb59f51aa095300ded (patch)
tree89a8f341ea693feab552720dd6be02f3e6318a8f /Misc
parent6ca07a221a6c45db753b954e5790106037fa4f7c (diff)
downloadcpython-cfc22b4a9b8d6176d90ef1eb59f51aa095300ded.zip
cpython-cfc22b4a9b8d6176d90ef1eb59f51aa095300ded.tar.gz
cpython-cfc22b4a9b8d6176d90ef1eb59f51aa095300ded.tar.bz2
Issue #15958: bytes.join and bytearray.join now accept arbitrary buffer objects.
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 26addf8..aaf07aa 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,9 @@ What's New in Python 3.4.0 Alpha 1?
Core and Builtins
-----------------
+- Issue #15958: bytes.join and bytearray.join now accept arbitrary buffer
+ objects.
+
- Issue #14783: Improve int() docstring and switch docstrings for str(),
range(), and slice() to use multi-line signatures.