diff options
author | Benjamin Peterson <benjamin@python.org> | 2014-09-29 23:01:18 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2014-09-29 23:01:18 (GMT) |
commit | 42ff105539bedfeb8e9a8cb9b8133ac15e027e6f (patch) | |
tree | af52393d3aede418280e83511e3bf9c064f52712 /Misc/NEWS | |
parent | 3bbb2e4844f29d8a74be08ec876b84e150cd5a6c (diff) | |
download | cpython-42ff105539bedfeb8e9a8cb9b8133ac15e027e6f.zip cpython-42ff105539bedfeb8e9a8cb9b8133ac15e027e6f.tar.gz cpython-42ff105539bedfeb8e9a8cb9b8133ac15e027e6f.tar.bz2 |
fix overflow checking in PyBytes_Repr (closes #22519)
Diffstat (limited to 'Misc/NEWS')
-rw-r--r-- | Misc/NEWS | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -10,6 +10,8 @@ What's New in Python 3.3.6 release candidate 1? Core and Builtins ----------------- +- Issue #22519: Fix overflow checking in PyBytes_Repr. + - Issue #22518: Fix integer overflow issues in latin-1 encoding. Library |