summaryrefslogtreecommitdiffstats
path: root/Objects
Commit message (Collapse)AuthorAgeFilesLines
* Issue #13020: Fix a reference leak when allocating a structsequence object ↵Antoine Pitrou2012-02-151-12/+13
|\ | | | | | | | | | | fails. Patch by Suman Saha.
| * Fix indentationAntoine Pitrou2012-02-151-12/+12
| |
| * Issue #13020: Fix a reference leak when allocating a structsequence object ↵Antoine Pitrou2012-02-151-0/+1
| | | | | | | | | | | | fails. Patch by Suman Saha.
* | (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
| |
* | merge 3.2Benjamin Peterson2012-02-101-1/+1
|\ \ | |/
| * this is only a borrowed ref in Brett's branchBenjamin Peterson2012-02-101-1/+1
| |
* | Backout d2c1521ad0a1: _Py_IDENTIFIER() uses UTF-8 againVictor Stinner2012-02-071-2/+3
| |
* | merge 3.2Benjamin Peterson2012-02-061-1/+0
|\ \ | |/
| * bltinmod is borrowed, so it shouldn't be decrefedBenjamin Peterson2012-02-061-1/+0
| |
* | _Py_Identifier are always ASCII stringsVictor Stinner2012-02-051-3/+2
| |
* | merge 3.2Benjamin Peterson2012-02-041-5/+10
|\ \ | |/
| * put returns on their own linesBenjamin Peterson2012-02-041-5/+10
| |
* | merge 3.2 (closes #13908)Benjamin Peterson2012-01-301-1/+5
|\ \ | |/
| * ready types returned from PyType_FromSpecBenjamin Peterson2012-01-301-0/+3
| |
| * adjust declarationBenjamin Peterson2012-01-301-1/+2
| |
* | Issue #13848: open() and the FileIO constructor now check for NUL characters ↵Antoine Pitrou2012-01-291-0/+13
|\ \ | |/ | | | | | | | | in the file name. Patch by Hynek Schlawack.
| * Issue #13848: open() and the FileIO constructor now check for NUL characters ↵Antoine Pitrou2012-01-291-0/+13
| | | | | | | | | | | | in the file name. Patch by Hynek Schlawack.
* | Merge 3.2 -> default (issue 13889)Mark Dickinson2012-01-271-0/+5
|\ \ | |/
| * Issue #13889: Add missing _Py_SET_53BIT_PRECISION_* calls around uses of ↵Mark Dickinson2012-01-271-0/+5
| | | | | | | | dtoa.c functions in float round.
* | 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
| | | | | | | | | | I had to move the static identifier code from unicodeobject.h to object.h in order for this to work.
* | 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
| | | | | | | | (this was easier than I thought!)
* | 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
| | | | | | | | | | | | | | to a single #define instead of having several copies in several files. This excludes the Modules/ tree (datetime and expat both have a copy for their own purposes with no need for it to be the same).
* | 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
| | | | | | | | patch, and make the private CallMethod variants consistent with the public one
* | Fix a crash when the return value of a subgenerator is a temporaryAmaury Forgeot d'Arc2012-01-131-1/+2
| | | | | | | | object (with a refcount of 1)
* | 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
| | | | | | | | Also broaden the category of characters that count as lowercase/uppercase.
* | 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
| | | | | | | | | | It is faster than the unicode_fill() function which was implemented in formatter_unicode.c.
* | also decref the right thingBenjamin Peterson2012-01-021-1/+1
| |
* | ready the correct stringBenjamin Peterson2012-01-021-1/+1
| |