summaryrefslogtreecommitdiffstats
path: root/Objects
Commit message (Expand)AuthorAgeFilesLines
...
* | 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
* | Issue #10951: Fix compiler warnings in timemodule.c and unicodeobject.cVictor Stinner2011-12-171-1/+1
|\ \ | |/
* | fix possible NULL dereferenceBenjamin Peterson2011-12-171-1/+3
* | 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
* | Issue #6695: Full garbage collection runs now clear the freelist of set objects.Antoine Pitrou2011-12-161-2/+10
* | improve abstract property support (closes #11610)Benjamin Peterson2011-12-153-3/+105
* | Fix OSError.__init__ and OSError.__new__ so that each of them can beAntoine Pitrou2011-12-151-57/+159
* | Fix the fix for issue #12149: it was incorrect, although it had the sideAntoine Pitrou2011-12-151-8/+10
|\ \ | |/
| * Fix the fix for issue #12149: it was incorrect, although it had the sideAntoine Pitrou2011-12-151-8/+10
| * Issue #13093: Fix error handling on PyUnicode_EncodeDecimal()Victor Stinner2011-11-221-6/+4
* | Issue #13575: there is only one class type.Florent Xicluna2011-12-121-19/+12
* | Issue #13577: various kinds of descriptors now have a __qualname__ attribute.Antoine Pitrou2011-12-121-0/+51
* | 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-122-7/+7
* | 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
* | Create unicode_result_unchanged() subfunctionVictor Stinner2011-12-111-69/+48
* | Fix fixup() for unchanged unicode subtypeVictor Stinner2011-12-111-33/+33
* | unicode_fromascii() doesn't check string content twice in debug modeVictor Stinner2011-12-111-6/+3
* | Call directly PyUnicode_DecodeUTF8Stateful() instead of PyUnicode_DecodeUTF8()Victor Stinner2011-12-111-33/+14
* | Use directly unicode_empty instead of PyUnicode_New(0, 0)Victor Stinner2011-12-111-6/+12
* | Move the slowest UTF-8 decoder to its own subfunctionVictor Stinner2011-12-111-128/+98
* | Fix error handling in resize_compact()Victor Stinner2011-12-111-5/+9
* | PyUnicode_FromWideChar() and PyUnicode_FromUnicode() raise a ValueError if aVictor Stinner2011-12-081-33/+34
* | Issue #13503: Use a more efficient reduction format for bytearrays withAntoine Pitrou2011-12-051-10/+42
* | Fix PyObject_Repr(): don't call PyUnicode_READY() if res is NULLVictor Stinner2011-12-011-1/+3
* | Replace PyUnicode_FromUnicode(NULL, 0) by PyUnicode_New(0, 0)Victor Stinner2011-12-011-1/+1
* | PyObject_Repr() ensures that the result is a ready Unicode stringVictor Stinner2011-12-011-0/+8