summaryrefslogtreecommitdiffstats
path: root/Objects/unicodeobject.c
Commit message (Expand)AuthorAgeFilesLines
...
* | | PyUnicode_New() and unicode_putchar() check for MAX_UNICODE maximum (U+10FFFF)Victor Stinner2012-02-221-0/+2
* | | merge 3.2Benjamin Peterson2012-02-211-0/+1
|\ \ \ | |/ /
| * | merge 3.2Benjamin Peterson2012-02-211-0/+1
| |\ \ | | |/
| | * ensure no one tries to hash things before the random seed is foundBenjamin Peterson2012-02-211-0/+1
* | | Forgot the "empty string -> hash == 0" special case for strings.Georg Brandl2012-02-201-0/+8
* | | Merge 3.2: Issue #13703 plus some related test suite fixes.Georg Brandl2012-02-201-5/+7
|\ \ \ | |/ /
| * | Merge from 3.1: Issue #13703: add a way to randomize the hash values of basic...Georg Brandl2012-02-201-1/+11
| |\ \ | | |/
| | * Issue #13703: add a way to randomize the hash values of basic types (str, byt...Georg Brandl2012-02-201-1/+11
* | | (Merge 3.2) Issue #13913: normalize utf-8 codec name in UTF-8 decoderVictor Stinner2012-02-141-1/+1
|\ \ \ | |/ /
| * | Issue #13913: normalize utf-8 codec name in UTF-8 decoderVictor Stinner2012-02-141-1/+1
* | | Backout d2c1521ad0a1: _Py_IDENTIFIER() uses UTF-8 againVictor Stinner2012-02-071-2/+3
* | | _Py_Identifier are always ASCII stringsVictor Stinner2012-02-051-3/+2
* | | Issue #13848: open() and the FileIO constructor now check for NUL characters ...Antoine Pitrou2012-01-291-0/+13
|\ \ \ | |/ /
| * | Issue #13848: open() and the FileIO constructor now check for NUL characters ...Antoine Pitrou2012-01-291-0/+13
* | | don't ready in case_operation, since most callers do it themselvesBenjamin Peterson2012-01-161-2/+5
* | | Consolidate the occurrances of the prime used as the multiplier when hashing.Gregory P. Smith2012-01-141-1/+1
|\ \ \ | |/ /
| * | Consolidate the occurrances of the prime used as the multiplier when hashingGregory P. Smith2012-01-141-1/+1
* | | fix possible refleaks if PyUnicode_READY failsBenjamin Peterson2012-01-141-3/+15
* | | always explicitly check for -1 from PyUnicode_READYBenjamin Peterson2012-01-141-35/+35
* | | add str.casefold() (closes #13752)Benjamin Peterson2012-01-141-0/+35
* | | move do_title to a better placeBenjamin Peterson2012-01-131-28/+28
* | | make fix_decimal_and_space_to_ascii check if it modifies the stringBenjamin Peterson2012-01-121-1/+3
* | | kill capwords implementation which has been disabled since the beginingBenjamin Peterson2012-01-121-42/+0
* | | use full unicode mappings for upper/lower/title case (#12736)Benjamin Peterson2012-01-111-149/+196
* | | Add a new PyUnicode_Fill() functionVictor Stinner2012-01-031-0/+35
* | | also decref the right thingBenjamin Peterson2012-01-021-1/+1
* | | ready the correct stringBenjamin Peterson2012-01-021-1/+1
* | | fix some possible refleaks from PyUnicode_READY error conditionsBenjamin Peterson2012-01-021-21/+53
* | | == -1 is conventionBenjamin Peterson2012-01-011-1/+1
* | | make switch more robustBenjamin Peterson2012-01-011-1/+2
* | | 4 space indentationBenjamin Peterson2011-12-201-13/+13
* | | fix spacing around switch statementsBenjamin Peterson2011-12-201-23/+22
* | | merge 3.2Benjamin Peterson2011-12-201-1/+5
|\ \ \ | |/ /
| * | fix possible if unlikely leakBenjamin Peterson2011-12-201-1/+5
* | | Issue #13624: Write a specialized UTF-8 encoder to allow more optimizationVictor Stinner2011-12-181-149/+12
* | | Optimize str * n for len(str)==1 and UCS-2 or UCS-4Victor Stinner2011-12-181-4/+11
* | | Issue #13621: Optimize str.replace(char1, char2)Victor Stinner2011-12-181-9/+21
* | | Issue #10951: Fix compiler warnings in timemodule.c and unicodeobject.cVictor Stinner2011-12-171-1/+1
|\ \ \ | |/ /
| * | Issue #13093: Fix error handling on PyUnicode_EncodeDecimal()Victor Stinner2011-11-221-6/+4
* | | The locale decoder raises a UnicodeDecodeError instead of an OSErrorVictor Stinner2011-12-171-17/+86
* | | Issue #13560: Locale codec functions use the classic "errors" parameter,Victor Stinner2011-12-171-7/+38
* | | What's New in Python 3.3: complete the deprecation listVictor Stinner2011-12-171-0/+2
* | | Issue #13560: os.strerror() now uses the current locale encoding instead of U...Victor Stinner2011-12-171-8/+20
* | | Issue #13560: Add PyUnicode_EncodeLocale()Victor Stinner2011-12-171-32/+135
* | | Add PyUnicode_DecodeLocaleAndSize() and PyUnicode_DecodeLocale()Victor Stinner2011-12-161-17/+78
* | | PyUnicode_Resize(): warn about canonical representationVictor Stinner2011-12-121-12/+13
* | | Fix PyUnicode_Resize() for compact string: leave the string unchanged on errorVictor Stinner2011-12-121-20/+9
* | | Make PyUnicode_Copy() private => _PyUnicode_Copy()Victor Stinner2011-12-121-6/+6
* | | resize_copy() now supports legacy ready stringsVictor Stinner2011-12-111-13/+15
* | | Rewrite PyUnicode_Append(); unicode_modifiable() is more strictVictor Stinner2011-12-111-79/+84