| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | | | Issue #19513: Disable overallocation of the PyUnicodeWriter before the last w... | Victor Stinner | 2013-11-19 | 1 | -0/+1 |
|
|
* | | | Issue #12892: The utf-16* and utf-32* codecs now reject (lone) surrogates. | Serhiy Storchaka | 2013-11-19 | 2 | -40/+403 |
|
|
* | | | Issue #19513: Simplify list_repr() | Victor Stinner | 2013-11-18 | 1 | -8/+2 |
|
|
* | | | Issue #19513: repr(list) now uses the PyUnicodeWriter API, it is faster than | Victor Stinner | 2013-11-18 | 1 | -16/+28 |
|
|
* | | | Issue #19581: Change the overallocation factor of _PyUnicodeWriter on Windows | Victor Stinner | 2013-11-18 | 1 | -6/+17 |
|
|
* | | | Argument Clinic: rename "self" to "module" for module-level functions. | Larry Hastings | 2013-11-18 | 2 | -2/+2 |
|
|
* | | | #17806: Added keyword-argument support for "tabsize" to str/bytes.expandtabs(). | Ezio Melotti | 2013-11-16 | 4 | -10/+16 |
|
|
* | | | Don't decref exc too soon | Nick Coghlan | 2013-11-15 | 1 | -1/+2 |
|
|
* | | | Issue #19429, #19437: fix error handling in the OSError constructor | Victor Stinner | 2013-11-14 | 1 | -3/+5 |
|
|
* | | | fix refleaks | Benjamin Peterson | 2013-11-14 | 1 | -3/+7 |
|
|
* | | | adjust style | Benjamin Peterson | 2013-11-14 | 1 | -12/+8 |
|
|
* | | | Issue #17828: _PyObject_GetDictPtr() may return NULL instead of a PyObject** | Christian Heimes | 2013-11-14 | 1 | -3/+5 |
|
|
* | | | Issue #17828: va_start() must be accompanied by va_end() | Christian Heimes | 2013-11-14 | 1 | -6/+7 |
|
|
* | | | Close #17828: better handling of codec errors | Nick Coghlan | 2013-11-13 | 2 | -9/+131 |
|
|
* | | | Don't use deprecated function PyUnicode_GET_SIZE() | Victor Stinner | 2013-11-13 | 1 | -1/+1 |
|
|
* | | | Issue #19515: Remove identifiers duplicated in the same file. | Victor Stinner | 2013-11-12 | 1 | -1/+0 |
|
|
* | | | _Py_normalize_encoding(): explain how the value 6 was computed | Victor Stinner | 2013-11-07 | 1 | -0/+1 |
|
|
* | | | Issue #19512, #19515: remove shared identifiers, move identifiers where they | Victor Stinner | 2013-11-07 | 2 | -9/+11 |
|
|
* | | | frameobject.c: Use an identifer instead of creating explicitly an interned | Victor Stinner | 2013-11-07 | 1 | -7/+5 |
|
|
* | | | Fix _Py_normalize_encoding(): ensure that buffer is big enough to store "utf-8" | Victor Stinner | 2013-11-07 | 1 | -0/+2 |
|
|
* | | | Issue #19514: Deduplicate some _Py_IDENTIFIER declarations. | Martin v. Löwis | 2013-11-07 | 1 | -8/+6 |
|
|
* | | | #17080: improve error message of float/complex when the wrong type is passed. | Ezio Melotti | 2013-11-07 | 2 | -6/+9 |
|
|
* | | | Issue #19512: Use the new _PyId_builtins identifier | Victor Stinner | 2013-11-06 | 1 | -2/+6 |
|
|
* | | | Issue #19512: add _PyUnicode_CompareWithId() function | Victor Stinner | 2013-11-06 | 2 | -11/+21 |
|
|
* | | | Issue #19512: type_abstractmethods() and type_set_abstractmethods() now use an | Victor Stinner | 2013-11-06 | 1 | -5/+10 |
|
|
* | | | Issue #19512: Add a new _PyDict_DelItemId() function, similar to | Victor Stinner | 2013-11-06 | 1 | -0/+9 |
|
|
* | | | Issue #19512: Py_ReprEnter() and Py_ReprLeave() now use an identifier for the | Victor Stinner | 2013-11-06 | 1 | -4/+4 |
|
|
* | | | Issue #19424: PyUnicode_CompareWithASCIIString() normalizes memcmp() result | Victor Stinner | 2013-11-04 | 1 | -2/+6 |
|
|
* | | | Issue #16286: remove duplicated identity check from unicode_compare() | Victor Stinner | 2013-11-04 | 1 | -4/+5 |
|
|
* | | | Issue #16286: optimize PyUnicode_RichCompare() for identical strings (same | Victor Stinner | 2013-11-04 | 2 | -12/+35 |
|
|
* | | | Issue #16286: write a new subfunction bytes_compare_eq() | Victor Stinner | 2013-11-04 | 2 | -42/+50 |
|
|
* | | | Issue #19424: Fix a compiler warning on comparing signed/unsigned size_t | Victor Stinner | 2013-11-03 | 1 | -1/+1 |
|
|
* | | | Issue #19424: Fix a compiler warning | Victor Stinner | 2013-10-30 | 1 | -1/+1 |
|
|
* | | | Issue #19424: Optimize PyUnicode_CompareWithASCIIString() | Victor Stinner | 2013-10-29 | 1 | -13/+30 |
|
|
* | | | Issue #17936: Fix O(n**2) behaviour when adding or removing many subclasses o... | Antoine Pitrou | 2013-10-29 | 1 | -59/+63 |
|
|
* | | | Issue #19437: Fix _PyUnicode_New() (constructor of legacy string), set all | Victor Stinner | 2013-10-29 | 1 | -11/+14 |
|
|
* | | | Issue #19437: Fix PyObject_CallFunction(), handle Py_VaBuildValue() and | Victor Stinner | 2013-10-29 | 1 | -0/+2 |
|
|
* | | | Issue #18609: Add a fast-path for "iso8859-1" encoding | Victor Stinner | 2013-10-29 | 1 | -2/+4 |
|
|
* | | | fix indent | Victor Stinner | 2013-10-29 | 1 | -4/+4 |
|
|
* | | | Issue #18408: Fix bytearrayiter.partition()/rpartition(), handle | Victor Stinner | 2013-10-29 | 1 | -0/+10 |
|
|
* | | | Issue #18408: Fix error handling in PyBytes_FromObject() | Victor Stinner | 2013-10-29 | 1 | -2/+1 |
|
|
* | | | Issue #18408: Fix PyUnicode_AsUTF8AndSize(), raise MemoryError exception on | Victor Stinner | 2013-10-29 | 1 | -0/+1 |
|
|
* | | | Issue #18408: Add a new PyFrame_FastToLocalsWithError() function to handle | Victor Stinner | 2013-10-29 | 2 | -31/+53 |
|
|
* | | | Issue #19369: Optimized the usage of __length_hint__(). | Serhiy Storchaka | 2013-10-24 | 1 | -8/+10 |
|
|
* | | | Issue #1772673: The type of `char*` arguments now changed to `const char*`. | Serhiy Storchaka | 2013-10-19 | 6 | -20/+20 |
|
|
* | | | Issue #19279: UTF-7 decoder no more produces illegal strings. | Serhiy Storchaka | 2013-10-19 | 1 | -0/+2 |
|\ \ \
| |/ / |
|
| * | | Issue #19279: UTF-7 decoder no more produces illegal strings. | Serhiy Storchaka | 2013-10-19 | 1 | -0/+2 |
|
|
* | | | Issue #16612: Add "Argument Clinic", a compile-time preprocessor | Larry Hastings | 2013-10-19 | 2 | -23/+88 |
|
|
* | | | upgrade unicode db to 6.3.0 (closes #19221) | Benjamin Peterson | 2013-10-10 | 1 | -8/+6 |
|
|
* | | | Issue #18874: _PyObject_Malloc/Realloc/Free() now falls back on | Victor Stinner | 2013-10-10 | 1 | -17/+19 |
|
|