diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2012-08-02 21:05:01 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2012-08-02 21:05:01 (GMT) |
commit | b3f5501250b54de24846480658ca473a5393db49 (patch) | |
tree | 599b03a679fcb27457d67940279487ed20518c8b /Misc | |
parent | 77821b68a7f23318374087e9c6710ef66312f78d (diff) | |
download | cpython-b3f5501250b54de24846480658ca473a5393db49.zip cpython-b3f5501250b54de24846480658ca473a5393db49.tar.gz cpython-b3f5501250b54de24846480658ca473a5393db49.tar.bz2 |
Close #15534: Fix a typo in the fast search function of the string library (_s => s)
Replace _s with ptr to avoid future confusion. Add also non regression tests.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -10,6 +10,8 @@ What's New in Python 3.3.0 Beta 2? Core and Builtins ----------------- +- Issue #15534: Fix the fast-search function for non-ASCII Unicode strings. + - Issue #15508: Fix the docstring for __import__ to have the proper default value of 0 for 'level' and to not mention negative levels since they are not supported. @@ -83,7 +85,7 @@ Library - Issue #15499: Launching a webbrowser in Unix used to sleep for a few seconds. Original patch by Anton Barkovsky. - + - Issue #15463: the faulthandler module truncates strings to 500 characters, instead of 100, to be able to display long file paths |