summaryrefslogtreecommitdiffstats
path: root/Objects
Commit message (Expand)AuthorAgeFilesLines
* 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
* | Py_UNICODE_HIGH_SURROGATE() and Py_UNICODE_LOW_SURROGATE() macrosVictor Stinner2011-11-291-26/+19
* | Merge headsAntoine Pitrou2011-11-263-118/+113
|\ \
| * | Close #13093: PyUnicode_EncodeDecimal() doesn't support error handlersVictor Stinner2011-11-251-113/+18
| * | PEP 3155 / issue #13448: Qualified name for classes and functions.Antoine Pitrou2011-11-252-5/+95
* | | Better resolution for issue #11849: Ensure that free()d memory arenas are rea...Antoine Pitrou2011-11-261-15/+22
|/ /
* | and back to the "magic" formula (with a comment) it isBenjamin Peterson2011-11-231-15/+3
* | cave to those who like readable codeBenjamin Peterson2011-11-231-1/+15
* | fix compiler warning by implementing this more cleverlyBenjamin Peterson2011-11-221-6/+1
* | find_maxchar_surrogates() reuses surrogate macrosVictor Stinner2011-11-221-4/+4
* | Issue #13441: Disable temporary the check on the maximum character untilVictor Stinner2011-11-221-20/+12
* | Fix compiler warningsVictor Stinner2011-11-221-1/+2
* | Use the new Unicode APIVictor Stinner2011-11-221-1/+1
* | (Merge 3.2) Issue #13093: Fix error handling on PyUnicode_EncodeDecimal()Victor Stinner2011-11-221-4/+8
* | PyUnicode_FromKindAndData() fails with a ValueError if size < 0Victor Stinner2011-11-221-1/+4
* | UTF-8 decoder: set consumed value in the latin1 fast-pathVictor Stinner2011-11-221-0/+3
* | Replace _PyUnicode_READY_REPLACE() and _PyUnicode_ReadyReplace() with unicode...Victor Stinner2011-11-221-143/+150
* | Rewrite PyUnicode_TransformDecimalToASCII() to use the new Unicode APIVictor Stinner2011-11-211-17/+26
* | Remove an unused variable from PyUnicode_Copy()Victor Stinner2011-11-211-2/+0
* | Simplify PyUnicode_Copy()Victor Stinner2011-11-211-26/+7
* | Fix a compiler warning in _PyUnicode_CheckConsistency()Victor Stinner2011-11-211-1/+1
* | Rewrite PyUnicode_EncodeDecimal() to use the new Unicode APIVictor Stinner2011-11-211-44/+53
* | Issue #13411: memoryview objects are now hashable when the underlying object ...Antoine Pitrou2011-11-213-17/+53
* | Issue #13417: speed up utf-8 decoding by around 2x for the non-fully-ASCII case.Antoine Pitrou2011-11-212-107/+277
* | Issue #13441: _PyUnicode_CheckConsistency() dumps the string if the maximumVictor Stinner2011-11-211-0/+13
* | Fix misuse of PyUnicode_GET_SIZE() => PyUnicode_GET_LENGTH()Victor Stinner2011-11-213-5/+5
* | UnicodeTranslateError uses the new Unicode APIVictor Stinner2011-11-211-3/+3