summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorRobert Collins <rbtcollins@hp.com>2015-08-06 22:22:54 (GMT)
committerRobert Collins <rbtcollins@hp.com>2015-08-06 22:22:54 (GMT)
commitd84b29f8050f96b981dc13b2e63f7a91358c74a3 (patch)
tree6f9796b115978f800e863c5b1191ca2383935389 /Misc
parent159fbdd805e23e54ba7830ec2c492a511a6d8e89 (diff)
downloadcpython-d84b29f8050f96b981dc13b2e63f7a91358c74a3.zip
cpython-d84b29f8050f96b981dc13b2e63f7a91358c74a3.tar.gz
cpython-d84b29f8050f96b981dc13b2e63f7a91358c74a3.tar.bz2
Issue #4395: Better testing and documentation of binary operators.
Patch by Martin Panter.
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 d5b5dc5..795ace7 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,9 @@ Release date: tba
Core and Builtins
-----------------
+- Issue #4395: Better testing and documentation of binary operators.
+ Patch by Martin Panter.
+
- Issue #24467: Fixed possible buffer over-read in bytearray. The bytearray
object now always allocates place for trailing null byte and it's buffer now
is always null-terminated.