summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2014-07-07 22:00:30 (GMT)
committerVictor Stinner <victor.stinner@gmail.com>2014-07-07 22:00:30 (GMT)
commitd9e810a8701b92371232eece5896a799c33de505 (patch)
tree97e9d76d0babfc969275ebb4e9e9d60314957598 /Misc
parentab826d11a310fd4d7c99f6cf449660b690846a3b (diff)
downloadcpython-d9e810a8701b92371232eece5896a799c33de505.zip
cpython-d9e810a8701b92371232eece5896a799c33de505.tar.gz
cpython-d9e810a8701b92371232eece5896a799c33de505.tar.bz2
Issue #12523: asynchat.async_chat.push() now raises a TypeError if it doesn't
get a bytes string
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 caa30ed..b7e73e9 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -27,6 +27,9 @@ Core and Builtins
Library
-------
+- Issue #12523: asynchat.async_chat.push() now raises a TypeError if it doesn't
+ get a bytes string
+
- Issue #21707: Add missing kwonlyargcount argument to
ModuleFinder.replace_paths_in_code().