| Commit message (Expand) | Author | Age | Files | Lines |
* | 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 |
|
|
* | Merged revisions 81709-81710 via svnmerge from | Benjamin Peterson | 2010-06-05 | 1 | -10/+2 |
|
|
* | Merged revisions 81706-81707 via svnmerge from | Benjamin Peterson | 2010-06-05 | 1 | -27/+15 |
|
|
* | Issue #2844: Make int('42', n) consistently raise ValueError for | Mark Dickinson | 2010-05-26 | 1 | -9/+20 |
|
|
* | Issue #8817: Expose round-to-nearest variant of divmod in _PyLong_Divmod_Near | Mark Dickinson | 2010-05-26 | 1 | -111/+140 |
|
|
* | Issue #8188: Introduce a new scheme for computing hashes of numbers | Mark Dickinson | 2010-05-23 | 4 | -74/+145 |
|
|
* | Issue #8749: remove unused code in Objects/object.c. Thanks Yaniv Aknin. | Mark Dickinson | 2010-05-22 | 1 | -24/+0 |
|
|
* | Issue #8748: Fix two issues with comparisons between complex and integer | Mark Dickinson | 2010-05-21 | 1 | -8/+44 |
|
|
* | Ooops, add missing ";" in my previous commit (r81324, typeobject.c) | Victor Stinner | 2010-05-19 | 1 | -2/+2 |
|
|
* | Issue #6697: Check that _PyUnicode_AsString() result is not NULL in typeobject | Victor Stinner | 2010-05-19 | 1 | -2/+12 |
|
|
* | Issue #6697: Fix a crash if a module attribute name contains a surrogate | Victor Stinner | 2010-05-19 | 1 | -8/+20 |
|
|
* | Fix refleak in internal_print() introduced by myself in r81251 | Victor Stinner | 2010-05-17 | 1 | -0/+1 |
|
|
* | PyObject_Dump() encodes unicode objects to utf8 with backslashreplace (instead | Victor Stinner | 2010-05-17 | 1 | -1/+3 |
|
|
* | Issue #8715: Create PyUnicode_EncodeFSDefault() function: Encode a Unicode | Victor Stinner | 2010-05-15 | 1 | -3/+13 |
|
|
* | Enable shortcuts for common encodings in PyUnicode_AsEncodedString() for any | Victor Stinner | 2010-05-15 | 1 | -23/+31 |
|
|
* | Merged revisions 81037 via svnmerge from | Mark Dickinson | 2010-05-10 | 1 | -33/+39 |
|
|
* | Merged revisions 81036 via svnmerge from | Mark Dickinson | 2010-05-10 | 1 | -102/+101 |
|
|
* | Recorded merge of revisions 81029 via svnmerge from | Antoine Pitrou | 2010-05-09 | 33 | -30660/+30660 |
|
|
* | Merged revisions 80961 via svnmerge from | Mark Dickinson | 2010-05-08 | 1 | -5/+2 |
|
|
* | module_repr(): use %U to format the file name | Victor Stinner | 2010-05-07 | 1 | -5/+15 |
|
|
* | code_repr(): use %U to format the filename | Victor Stinner | 2010-05-07 | 1 | -8/+12 |
|
|
* | Make (most of) Python's tests pass under Thread Sanitizer. | Jeffrey Yasskin | 2010-05-03 | 1 | -1/+2 |
|
|
* | PyFile_FromFd() uses PyUnicode_DecodeFSDefault() instead of | Victor Stinner | 2010-04-30 | 1 | -1/+1 |
|
|
* | PyUnicode_DecodeFSDefaultAndSize() uses surrogateescape error handler | Victor Stinner | 2010-04-30 | 1 | -4/+4 |
|
|
* | Simplify PyUnicode_FSConverter(): remove reference to PyByteArray | Victor Stinner | 2010-04-30 | 1 | -9/+3 |
|
|
* | Don't decode/recode the unicode filename in SyntaxError_str() | Victor Stinner | 2010-04-28 | 1 | -20/+34 |
|
|
* | condense condition | Benjamin Peterson | 2010-04-25 | 1 | -4/+1 |
|
|
* | prevent the dict constructor from accepting non-string keyword args #8419 | Benjamin Peterson | 2010-04-24 | 1 | -2/+21 |
|
|
* | Fix my previous commit (r80382) for wide build (unicodeobject.c) | Victor Stinner | 2010-04-22 | 1 | -2/+3 |
|
|
* | Issue #8092: Fix PyUnicode_EncodeUTF8() to support error handler producing | Victor Stinner | 2010-04-22 | 1 | -47/+80 |
|
|
* | Issue #8485: PyUnicode_FSConverter() doesn't accept bytearray object anymore, | Victor Stinner | 2010-04-22 | 1 | -1/+1 |
|
|