commit | d42f60ed816a53f79ee479af8191aaa795095386 | [log] [tgz] |
---|---|---|
author | Benjamin Peterson <benjamin@python.org> | Sun Mar 30 20:09:44 2014 -0400 |
committer | Benjamin Peterson <benjamin@python.org> | Sun Mar 30 20:09:44 2014 -0400 |
tree | f12c679f9c0153288ceb463b8d4613e658f0c53e | |
parent | 18fc4934097b193f54290085c93cd165352216bb [diff] |
fix overflow detection of strop.expandtabs
diff --git a/Misc/NEWS b/Misc/NEWS index 49dbe53..24047bb 100644 --- a/Misc/NEWS +++ b/Misc/NEWS
@@ -40,6 +40,9 @@ Library ------- +- Fix possible overflow bug in strop.expandtabs. You shouldn't be using this + module! + - Issue #20145: `assertRaisesRegex` now raises a TypeError if the second argument is not a string or compiled regex.