summaryrefslogtreecommitdiffstats
path: root/Objects
Commit message (Expand)AuthorAgeFilesLines
* Implement PEP 451 (ModuleSpec).Eric Snow2013-11-221-48/+5
* Issue #19619: Blacklist non-text codecs in method APINick Coghlan2013-11-221-2/+2
* Close #19568: Fix bytearray_setslice_linear(), fix handling ofVictor Stinner2013-11-211-37/+63
* Close #19578: Fix list_ass_subscript(), handle list_resize() failureVictor Stinner2013-11-211-2/+3
* ssue #19183: Implement PEP 456 'secure and interchangeable hash algorithm'.Christian Heimes2013-11-204-181/+4
* Remove dead code committed in issue #12892.Serhiy Storchaka2013-11-191-104/+0
* Also chain codec exceptions that allow weakrefsNick Coghlan2013-11-191-3/+14
* Issue #19646: repr(dict) now uses _PyUnicodeWriter API for better performancesVictor Stinner2013-11-191-55/+54
* Issue #19513: repr(tuple) now uses _PyUnicodeWriter for better performancesVictor Stinner2013-11-191-27/+37
* Add _PyUnicodeWriter_WriteASCIIString() functionVictor Stinner2013-11-192-26/+73
* Issue #19513: Disable overallocation of the PyUnicodeWriter before the last w...Victor Stinner2013-11-191-0/+1
* Issue #12892: The utf-16* and utf-32* codecs now reject (lone) surrogates.Serhiy Storchaka2013-11-192-40/+403
* Issue #19513: Simplify list_repr()Victor Stinner2013-11-181-8/+2
* Issue #19513: repr(list) now uses the PyUnicodeWriter API, it is faster thanVictor Stinner2013-11-181-16/+28
* Issue #19581: Change the overallocation factor of _PyUnicodeWriter on WindowsVictor Stinner2013-11-181-6/+17
* Argument Clinic: rename "self" to "module" for module-level functions.Larry Hastings2013-11-182-2/+2
* #17806: Added keyword-argument support for "tabsize" to str/bytes.expandtabs().Ezio Melotti2013-11-164-10/+16
* Don't decref exc too soonNick Coghlan2013-11-151-1/+2
* Issue #19429, #19437: fix error handling in the OSError constructorVictor Stinner2013-11-141-3/+5
* fix refleaksBenjamin Peterson2013-11-141-3/+7
* adjust styleBenjamin Peterson2013-11-141-12/+8
* Issue #17828: _PyObject_GetDictPtr() may return NULL instead of a PyObject**Christian Heimes2013-11-141-3/+5
* Issue #17828: va_start() must be accompanied by va_end()Christian Heimes2013-11-141-6/+7
* Close #17828: better handling of codec errorsNick Coghlan2013-11-132-9/+131
* Don't use deprecated function PyUnicode_GET_SIZE()Victor Stinner2013-11-131-1/+1
* Issue #19515: Remove identifiers duplicated in the same file.Victor Stinner2013-11-121-1/+0
* _Py_normalize_encoding(): explain how the value 6 was computedVictor Stinner2013-11-071-0/+1
* Issue #19512, #19515: remove shared identifiers, move identifiers where theyVictor Stinner2013-11-072-9/+11
* frameobject.c: Use an identifer instead of creating explicitly an internedVictor Stinner2013-11-071-7/+5
* Fix _Py_normalize_encoding(): ensure that buffer is big enough to store "utf-8"Victor Stinner2013-11-071-0/+2
* Issue #19514: Deduplicate some _Py_IDENTIFIER declarations.Martin v. Löwis2013-11-071-8/+6
* #17080: improve error message of float/complex when the wrong type is passed.Ezio Melotti2013-11-072-6/+9
* Issue #19512: Use the new _PyId_builtins identifierVictor Stinner2013-11-061-2/+6
* Issue #19512: add _PyUnicode_CompareWithId() functionVictor Stinner2013-11-062-11/+21
* Issue #19512: type_abstractmethods() and type_set_abstractmethods() now use anVictor Stinner2013-11-061-5/+10
* Issue #19512: Add a new _PyDict_DelItemId() function, similar toVictor Stinner2013-11-061-0/+9
* Issue #19512: Py_ReprEnter() and Py_ReprLeave() now use an identifier for theVictor Stinner2013-11-061-4/+4
* Issue #19424: PyUnicode_CompareWithASCIIString() normalizes memcmp() resultVictor Stinner2013-11-041-2/+6
* Issue #16286: remove duplicated identity check from unicode_compare()Victor Stinner2013-11-041-4/+5
* Issue #16286: optimize PyUnicode_RichCompare() for identical strings (sameVictor Stinner2013-11-042-12/+35
* Issue #16286: write a new subfunction bytes_compare_eq()Victor Stinner2013-11-042-42/+50
* Issue #19424: Fix a compiler warning on comparing signed/unsigned size_tVictor Stinner2013-11-031-1/+1
* Issue #19424: Fix a compiler warningVictor Stinner2013-10-301-1/+1
* Issue #19424: Optimize PyUnicode_CompareWithASCIIString()Victor Stinner2013-10-291-13/+30
* Issue #17936: Fix O(n**2) behaviour when adding or removing many subclasses o...Antoine Pitrou2013-10-291-59/+63
* Issue #19437: Fix _PyUnicode_New() (constructor of legacy string), set allVictor Stinner2013-10-291-11/+14
* Issue #19437: Fix PyObject_CallFunction(), handle Py_VaBuildValue() andVictor Stinner2013-10-291-0/+2
* Issue #18609: Add a fast-path for "iso8859-1" encodingVictor Stinner2013-10-291-2/+4
* fix indentVictor Stinner2013-10-291-4/+4
* Issue #18408: Fix bytearrayiter.partition()/rpartition(), handleVictor Stinner2013-10-291-0/+10