| Commit message (Expand) | Author | Age | Files | Lines |
* | Issue #2443: Added a new macro, Py_VA_COPY, which is equivalent to C99 | Alexander Belopolsky | 2010-08-11 | 7 | -64/+40 |
|
|
* | Issue #9530: Fix undefined-behaviour-inducing overflow checks in bytes and b... | Mark Dickinson | 2010-08-10 | 2 | -66/+45 |
|
|
* | Issue #9425: create Py_UNICODE_strrchr() function | Victor Stinner | 2010-08-10 | 1 | -0/+13 |
|
|
* | spelling mistake. | Senthil Kumaran | 2010-08-09 | 1 | -1/+1 |
|
|
* | Fix Issue5416 - explain negative value for count in bytes object replace. | Senthil Kumaran | 2010-08-09 | 1 | -1/+2 |
|
|
* | Fix #8530: Prevent stringlib fastsearch from reading beyond the front of an a... | Florent Xicluna | 2010-08-08 | 1 | -2/+2 |
|
|
* | Fix nit (sentinel on lhs of comparison). | Raymond Hettinger | 2010-08-07 | 1 | -3/+1 |
|
|
* | Issue #9530: Fix a couple of places where undefined behaviour can | Mark Dickinson | 2010-08-06 | 1 | -2/+8 |
|
|
* | In PySlice_IndicesEx, clip the step to [-PY_SSIZE_T_MAX, PY_SSIZE_T_MAX] rath... | Mark Dickinson | 2010-08-06 | 1 | -1/+9 |
|
|
* | Issue8757: Implicit set-to-frozenset conversion not thread-safe. | Raymond Hettinger | 2010-08-06 | 1 | -9/+3 |
|
|
* | Issue #9337: Make float.__str__ identical to float.__repr__. | Mark Dickinson | 2010-08-04 | 3 | -30/+17 |
|
|
* | Revert r83395, it introduces test failures and is not necessary anyway since ... | Georg Brandl | 2010-08-01 | 1 | -2/+2 |
|
|
* | Issue #9416: Fix some issues with complex formatting where the | Mark Dickinson | 2010-08-01 | 1 | -4/+8 |
|
|
* | #8821: do not rely on Unicode strings being terminated with a \u0000, rather ... | Georg Brandl | 2010-08-01 | 1 | -2/+2 |
|
|
* | Use Py_CLEAR(). | Georg Brandl | 2010-07-29 | 1 | -4/+2 |
|
|
* | Issue #9294: remove dead code in Objects/object.c. Patch by Grant Limberg. | Antoine Pitrou | 2010-07-27 | 1 | -13/+2 |
|
|
* | revert unintended changes | Benjamin Peterson | 2010-07-20 | 1 | -1/+0 |
|
|
* | move test_trace.py so as not to conflict with future tests for the trace module | Benjamin Peterson | 2010-07-20 | 1 | -0/+1 |
|
|
* | Sub-issue of #9036: Fix incorrect use of Py_CHARMASK. | Stefan Krah | 2010-07-19 | 1 | -1/+1 |
|
|
* | Issue #7616: Fix copying of overlapping memoryview slices with the Intel | Antoine Pitrou | 2010-07-11 | 1 | -11/+3 |
|
|
* | remove unneeded error check | Benjamin Peterson | 2010-07-11 | 1 | -8/+0 |
|
|
* | Silence gcc warning. (In function 'bytearray_init': warning: 'value' may be u... | Mark Dickinson | 2010-07-09 | 1 | -0/+2 |
|
|
* | fix repr of complicated structseqs #9206 | Benjamin Peterson | 2010-07-08 | 1 | -2/+20 |
|
|
* | make struct sequences subclass tuple; kill lots of code | Benjamin Peterson | 2010-07-07 | 1 | -207/+18 |
|
|
* | Style nit. | Mark Dickinson | 2010-07-06 | 1 | -1/+1 |
|
|
* | cleanup basicsize logic #3268 | Benjamin Peterson | 2010-07-05 | 1 | -4/+2 |
|
|
* | Fix the docstrings of the capitalize method. | Senthil Kumaran | 2010-07-05 | 2 | -2/+3 |
|
|
* | Update comment about surrogates. | Ezio Melotti | 2010-07-03 | 1 | -5/+5 |
|
|
* | Merged revisions 82447 via svnmerge from | Benjamin Peterson | 2010-07-02 | 1 | -1/+1 |
|
|
* | Update PyUnicode_DecodeUTF8 from RFC 2279 to RFC 3629. | Ezio Melotti | 2010-07-01 | 1 | -56/+56 |
|
|
* | update error message | Benjamin Peterson | 2010-06-28 | 1 | -2/+1 |
|
|
* | Merged revisions 82317 via svnmerge from | Benjamin Peterson | 2010-06-28 | 1 | -16/+12 |
|
|
* | Merged revisions 81465-81466,81468,81679,81735,81760,81868,82183 via svnmerge... | Benjamin Peterson | 2010-06-27 | 1 | -3/+4 |
|
|
* | Issue #9089: Remove references to intobject.c and intobject.h from comments. | Mark Dickinson | 2010-06-27 | 2 | -2/+17 |
|
|
* | #9078: fix some Unicode C API descriptions, in comments and docs. | Georg Brandl | 2010-06-27 | 1 | -1/+1 |
|
|
* | Merged revisions 82248 via svnmerge from | Ezio Melotti | 2010-06-26 | 1 | -1/+1 |
|
|
* | Merged revisions 82157 via svnmerge from | Benjamin Peterson | 2010-06-22 | 1 | -3/+0 |
|
|
* | Issue #850997: mbcs encoding (Windows only) handles errors argument: strict | Victor Stinner | 2010-06-16 | 1 | -38/+125 |
|
|
* | Silence 'unused variable' gcc warning. Patch by Éric Araujo. | Mark Dickinson | 2010-06-12 | 1 | -1/+2 |
|
|
* | Issue #8969: On Windows, use mbcs codec in strict mode to encode and decode | Victor Stinner | 2010-06-11 | 1 | -4/+10 |
|
|
* | Merged revisions 81907 via svnmerge from | Antoine Pitrou | 2010-06-11 | 1 | -19/+21 |
|
|
* | Fix r81869: ISO-8859-15 was seen as an alias to ISO-8859-1 | Victor Stinner | 2010-06-10 | 1 | -39/+45 |
|
|
* | Issue #8922: Normalize the encoding name in PyUnicode_AsEncodedString() to | Victor Stinner | 2010-06-10 | 1 | -18/+31 |
|
|
* | Merged revisions 81860 via svnmerge from | Antoine Pitrou | 2010-06-09 | 2 | -51/+51 |
|
|
* | Merged revisions 81824 via svnmerge from | Benjamin Peterson | 2010-06-07 | 1 | -2/+2 |
|
|
* | Merged revisions 81820 via svnmerge from | Benjamin Peterson | 2010-06-07 | 1 | -0/+4 |
|
|
* | Merged revisions 81813 via svnmerge from | Benjamin Peterson | 2010-06-07 | 1 | -1/+1 |
|
|
* | Issue #8848: U / U# formats of Py_BuildValue() are just alias to s / s# | Victor Stinner | 2010-06-07 | 1 | -2/+2 |
|
|
* | Fix naming inconsistency. | Mark Dickinson | 2010-06-07 | 1 | -2/+2 |
|
|
* | Merged revisions 81712 via svnmerge from | Benjamin Peterson | 2010-06-05 | 1 | -0/+1 |
|
|