summaryrefslogtreecommitdiffstats
path: root/Objects
Commit message (Expand)AuthorAgeFilesLines
...
| * | Issue #13848: open() and the FileIO constructor now check for NUL characters ...Antoine Pitrou2012-01-291-0/+13
* | | Merge 3.2 -> default (issue 13889)Mark Dickinson2012-01-271-0/+5
|\ \ \ | |/ /
| * | Issue #13889: Add missing _Py_SET_53BIT_PRECISION_* calls around uses of dtoa...Mark Dickinson2012-01-271-0/+5
* | | merge with 3.2Georg Brandl2012-01-221-1/+1
|\ \ \ | |/ /
| * | Fix #13834: strip() strips leading and trailing whitespace.Georg Brandl2012-01-221-1/+1
* | | use the static identifier api for looking up special methodsBenjamin Peterson2012-01-226-118/+106
* | | Fix some of the remaining test_capi leaksAntoine Pitrou2012-01-181-3/+5
* | | Fix some of the remaining test_capi refleaksAntoine Pitrou2012-01-181-0/+2
* | | Fix some of the refleaks in test_capi (ported from 3.2)Antoine Pitrou2012-01-181-3/+7
|\ \ \ | |/ /
| * | Fix refleaks in test_capiAntoine Pitrou2012-01-181-3/+7
* | | Merge refleak fixes from 3.2Antoine Pitrou2012-01-181-21/+23
|\ \ \ | |/ /
| * | Fix leaking a RuntimeError objects when creating sub-interpretersAntoine Pitrou2012-01-181-21/+23
* | | don't ready in case_operation, since most callers do it themselvesBenjamin Peterson2012-01-161-2/+5
* | | fix old titlecase function for extended case charsBenjamin Peterson2012-01-161-0/+2
* | | comment about how flags could be expandedBenjamin Peterson2012-01-161-0/+1
* | | delta encoding of upper/lower/title makes a glorious return (#12736)Benjamin Peterson2012-01-162-3452/+1349
* | | Consolidate the occurrances of the prime used as the multiplier when hashing.Gregory P. Smith2012-01-143-3/+3
|\ \ \ | |/ /
| * | Consolidate the occurrances of the prime used as the multiplier when hashingGregory P. Smith2012-01-143-3/+3
* | | 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-143-122/+435
* | | Add a separate NEWS entry for a change to PyObject_CallMethod in the PEP 380 ...Nick Coghlan2012-01-141-2/+0
* | | Fix a crash when the return value of a subgenerator is a temporaryAmaury Forgeot d'Arc2012-01-131-1/+2
* | | Implement PEP 380 - 'yield from' (closes #11682)Nick Coghlan2012-01-134-22/+280
* | | 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
* | | remove some usage of Py_UNICODE_TOUPPER/LOWERBenjamin Peterson2012-01-126-12/+0
* | | use full unicode mappings for upper/lower/title case (#12736)Benjamin Peterson2012-01-113-1684/+4445
* | | Issue #13738: Simplify implementation of bytes.lower() and bytes.upper().Antoine Pitrou2012-01-081-10/+2
* | | 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
* | | fix weird indentationBenjamin Peterson2011-12-281-1/+1
* | | Issue #13577: Built-in methods and functions now have a __qualname__.Antoine Pitrou2011-12-232-5/+41
* | | 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
* | | Merge with 3.2.Georg Brandl2011-12-181-3/+3
|\ \ \ | |/ /
| * | Small clarification in docstring of dict.update(): the positional argument is...Georg Brandl2011-12-181-3/+3
* | | Issue #13624: Write a specialized UTF-8 encoder to allow more optimizationVictor Stinner2011-12-182-149/+209
* | | 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 #13623: Fix a performance regression introduced by issue #12170 inVictor Stinner2011-12-181-10/+17
* | | Issue #11231: Fix bytes and bytearray docstringsVictor Stinner2011-12-172-10/+9
|\ \ \ | |/ /
| * | Issue #11231: Fix bytes and bytearray docstringsVictor Stinner2011-12-172-10/+9