| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | make pointer arith c89 | Benjamin Peterson | 2012-04-24 | 1 | -2/+2 |
|
|
* | use correct base ptr | Benjamin Peterson | 2012-04-23 | 1 | -1/+2 |
|
|
* | simplify and reformat | Benjamin Peterson | 2012-04-23 | 1 | -9/+11 |
|
|
* | Close #14648: Compute correctly maxchar in str.format() for substrin | Victor Stinner | 2012-04-23 | 1 | -0/+31 |
|
|
* | merge 3.2 (#14509) | Benjamin Peterson | 2012-04-09 | 1 | -0/+2 |
|\ |
|
| * | merge 3.1 (#14509) | Benjamin Peterson | 2012-04-09 | 1 | -0/+2 |
| |\ |
|
| | * | fix build without Py_DEBUG and DNDEBUG (closes #14509) | Benjamin Peterson | 2012-04-09 | 1 | -0/+2 |
|
|
* | | | Close #14249: Use bit shifts instead of an union, it's more efficient. | Victor Stinner | 2012-04-05 | 1 | -27/+34 |
|
|
* | | | Close #14249: Use an union instead of a long to short pointer to avoid aliasing | Victor Stinner | 2012-04-05 | 1 | -19/+25 |
|
|
* | | | Rename _PyIter_GetBuiltin to _PyObject_GetBuiltin, and do not include it in t... | Antoine Pitrou | 2012-04-04 | 1 | -2/+2 |
|
|
* | | | Issue #14288: Serialization support for builtin iterators. | Kristján Valur Jónsson | 2012-04-03 | 1 | -0/+34 |
|
|
* | | | grammar | Benjamin Peterson | 2012-03-26 | 1 | -1/+1 |
|
|
* | | | merge 3.2 | Benjamin Peterson | 2012-03-26 | 1 | -4/+0 |
|\ \ \
| |/ / |
|
| * | | kill this terribly outdated comment | Benjamin Peterson | 2012-03-26 | 1 | -4/+0 |
|
|
* | | | Remove an unused variable | Victor Stinner | 2012-03-06 | 1 | -1/+0 |
|
|
* | | | Close #14085: remove assertions from PyUnicode_WRITE macro | Victor Stinner | 2012-03-04 | 1 | -1/+10 |
|
|
* | | | #14081: The sep and maxsplit parameter to str.split, bytes.split, and bytearr... | Ezio Melotti | 2012-02-26 | 1 | -8/+12 |
|
|
* | | | Oops, revert unwanted changes | Victor Stinner | 2012-02-24 | 1 | -18/+6 |
|
|
* | | | Issue #14107: fix bigmem tests on str.capitalize(), str.swapcase() and | Victor Stinner | 2012-02-24 | 1 | -6/+18 |
|
|
* | | | Fix compilation error under Windows (and warnings too). | Antoine Pitrou | 2012-02-24 | 1 | -9/+9 |
|
|
* | | | Issue #13706: Fix format(float, "n") for locale with non-ASCII decimal point ... | Victor Stinner | 2012-02-24 | 1 | -5/+16 |
|
|
* | | | Issue #13706: Fix format(int, "n") for locale with non-ASCII thousands separator | Victor Stinner | 2012-02-23 | 1 | -17/+58 |
|
|
* | | | Fix doc of an internal function: unicode_write_cstr() | Victor Stinner | 2012-02-22 | 1 | -2/+3 |
|
|
* | | | Fix compile failure under Windows | Antoine Pitrou | 2012-02-22 | 1 | -1/+1 |
|
|
* | | | Optimize str%arg for number formats: %i, %d, %u, %x, %p | Victor Stinner | 2012-02-22 | 1 | -4/+52 |
|
|
* | | | Micro-optimize computation of maxchar in PyUnicode_TransformDecimalToASCII() | Victor Stinner | 2012-02-22 | 1 | -2/+2 |
|
|
* | | | Micro-optimize unicode_expandtabs(): use FILL() macro to write N spaces | Victor Stinner | 2012-02-22 | 1 | -5/+2 |
|
|
* | | | PyUnicode_New() and unicode_putchar() check for MAX_UNICODE maximum (U+10FFFF) | Victor Stinner | 2012-02-22 | 1 | -0/+2 |
|
|
* | | | merge 3.2 | Benjamin Peterson | 2012-02-21 | 1 | -0/+1 |
|\ \ \
| |/ / |
|
| * | | merge 3.2 | Benjamin Peterson | 2012-02-21 | 1 | -0/+1 |
| |\ \
| | |/ |
|
| | * | ensure no one tries to hash things before the random seed is found | Benjamin Peterson | 2012-02-21 | 1 | -0/+1 |
|
|
* | | | Forgot the "empty string -> hash == 0" special case for strings. | Georg Brandl | 2012-02-20 | 1 | -0/+8 |
|
|
* | | | Merge 3.2: Issue #13703 plus some related test suite fixes. | Georg Brandl | 2012-02-20 | 1 | -5/+7 |
|\ \ \
| |/ / |
|
| * | | Merge from 3.1: Issue #13703: add a way to randomize the hash values of basic... | Georg Brandl | 2012-02-20 | 1 | -1/+11 |
| |\ \
| | |/ |
|
| | * | Issue #13703: add a way to randomize the hash values of basic types (str, byt... | Georg Brandl | 2012-02-20 | 1 | -1/+11 |
|
|
* | | | (Merge 3.2) Issue #13913: normalize utf-8 codec name in UTF-8 decoder | Victor Stinner | 2012-02-14 | 1 | -1/+1 |
|\ \ \
| |/ / |
|
| * | | Issue #13913: normalize utf-8 codec name in UTF-8 decoder | Victor Stinner | 2012-02-14 | 1 | -1/+1 |
|
|
* | | | Backout d2c1521ad0a1: _Py_IDENTIFIER() uses UTF-8 again | Victor Stinner | 2012-02-07 | 1 | -2/+3 |
|
|
* | | | _Py_Identifier are always ASCII strings | Victor Stinner | 2012-02-05 | 1 | -3/+2 |
|
|
* | | | Issue #13848: open() and the FileIO constructor now check for NUL characters ... | Antoine Pitrou | 2012-01-29 | 1 | -0/+13 |
|\ \ \
| |/ / |
|
| * | | Issue #13848: open() and the FileIO constructor now check for NUL characters ... | Antoine Pitrou | 2012-01-29 | 1 | -0/+13 |
|
|
* | | | don't ready in case_operation, since most callers do it themselves | Benjamin Peterson | 2012-01-16 | 1 | -2/+5 |
|
|
* | | | Consolidate the occurrances of the prime used as the multiplier when hashing. | Gregory P. Smith | 2012-01-14 | 1 | -1/+1 |
|\ \ \
| |/ / |
|
| * | | Consolidate the occurrances of the prime used as the multiplier when hashing | Gregory P. Smith | 2012-01-14 | 1 | -1/+1 |
|
|
* | | | fix possible refleaks if PyUnicode_READY fails | Benjamin Peterson | 2012-01-14 | 1 | -3/+15 |
|
|
* | | | always explicitly check for -1 from PyUnicode_READY | Benjamin Peterson | 2012-01-14 | 1 | -35/+35 |
|
|
* | | | add str.casefold() (closes #13752) | Benjamin Peterson | 2012-01-14 | 1 | -0/+35 |
|
|
* | | | move do_title to a better place | Benjamin Peterson | 2012-01-13 | 1 | -28/+28 |
|
|
* | | | make fix_decimal_and_space_to_ascii check if it modifies the string | Benjamin Peterson | 2012-01-12 | 1 | -1/+3 |
|
|
* | | | kill capwords implementation which has been disabled since the begining | Benjamin Peterson | 2012-01-12 | 1 | -42/+0 |
|
|