summaryrefslogtreecommitdiff
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2014-07-08 00:00:30 +0200
committerVictor Stinner <victor.stinner@gmail.com>2014-07-08 00:00:30 +0200
commitfc970cd8d91a92e858fe92addccf90e277f57ac0 (patch)
tree836757f9e8c329d370e1afe9a91a56e2e9002f1f /Misc/NEWS
parentda98b16411c32678422c4178cc58a17024974ac5 (diff)
downloadcpython-fc970cd8d91a92e858fe92addccf90e277f57ac0.tar.gz
Issue #12523: asynchat.async_chat.push() now raises a TypeError if it doesn't
get a bytes string
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index caa30ed74f..b7e73e9d04 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().