| Commit message (Expand) | Author | Age | Files | Lines |
* | Use locale encoding if Py_FileSystemDefaultEncoding is not set | Victor Stinner | 2010-10-15 | 1 | -8/+32 |
|
|
* | #9418: first step of moving private string methods to _string module. | Georg Brandl | 2010-10-14 | 1 | -2/+30 |
|
|
* | PyUnicode_AsWideCharString() takes a PyObject*, not a PyUnicodeObject* | Victor Stinner | 2010-10-07 | 1 | -3/+3 |
|
|
* | Issue #8670: PyUnicode_AsWideChar() and PyUnicode_AsWideCharString() replace | Victor Stinner | 2010-10-02 | 1 | -22/+105 |
|
|
* | Issue #8870: PyUnicode_AsWideCharString() doesn't count the trailing nul char... | Victor Stinner | 2010-10-02 | 1 | -1/+1 |
|
|
* | Fix PyUnicode_AsWideCharString(): set *size if size is not NULL | Victor Stinner | 2010-09-29 | 1 | -0/+2 |
|
|
* | Issue #9630: Redecode filenames when setting the filesystem encoding | Victor Stinner | 2010-09-29 | 1 | -1/+7 |
|
|
* | Issue #9979: Create function PyUnicode_AsWideCharString(). | Victor Stinner | 2010-09-29 | 1 | -14/+48 |
|
|
* | use return NULL; it's just as correct | Benjamin Peterson | 2010-09-12 | 1 | -1/+1 |
|
|
* | Issue #9738, #9836: Fix refleak introduced by r84704 | Victor Stinner | 2010-09-12 | 1 | -2/+2 |
|
|
* | detect non-ascii characters much earlier (plugs ref leak) | Benjamin Peterson | 2010-09-12 | 1 | -7/+7 |
|
|
* | Issue #9738: PyUnicode_FromFormat() and PyErr_Format() raise an error on | Victor Stinner | 2010-09-11 | 1 | -1/+9 |
|
|
* | Rename PyUnicode_strdup() to PyUnicode_AsUnicodeCopy() | Victor Stinner | 2010-09-03 | 1 | -1/+1 |
|
|
* | Create PyUnicode_strdup() function | Victor Stinner | 2010-09-01 | 1 | -0/+22 |
|
|
* | Create Py_UNICODE_strcat() function | Victor Stinner | 2010-09-01 | 1 | -0/+9 |
|
|
* | Remove unicode_default_encoding constant | Victor Stinner | 2010-09-01 | 1 | -10/+1 |
|
|
* | Issue #9549: sys.setdefaultencoding() and PyUnicode_SetDefaultEncoding() | Antoine Pitrou | 2010-09-01 | 1 | -11/+0 |
|
|
* | Issue #7415: PyUnicode_FromEncodedObject() now uses the new buffer API | Antoine Pitrou | 2010-09-01 | 1 | -27/+26 |
|
|
* | Issue 8781: On systems a signed 4-byte wchar_t and a 4-byte Py_UNICODE, use m... | Daniel Stutzbach | 2010-08-24 | 1 | -2/+2 |
|
|
* | Fix PyUnicode_EncodeFSDefault() indentation | Victor Stinner | 2010-08-18 | 1 | -2/+2 |
|
|
* | Issue #9425: Create Py_UNICODE_strncmp() function | Victor Stinner | 2010-08-16 | 1 | -0/+17 |
|
|
* | Issue #9542: Create PyUnicode_FSDecoder() function | Victor Stinner | 2010-08-13 | 1 | -3/+41 |
|
|
* | Issue #9425: Create PyErr_WarnFormat() function | Victor Stinner | 2010-08-13 | 1 | -7/+8 |
|
|
* | Issue #2443: Added a new macro, Py_VA_COPY, which is equivalent to C99 | Alexander Belopolsky | 2010-08-11 | 1 | -9/+1 |
|
|
* | Issue #9425: create Py_UNICODE_strrchr() function | Victor Stinner | 2010-08-10 | 1 | -0/+13 |
|
|
* | Revert r83395, it introduces test failures and is not necessary anyway since ... | Georg Brandl | 2010-08-01 | 1 | -2/+2 |
|
|
* | #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 |
|
|
* | Sub-issue of #9036: Fix incorrect use of Py_CHARMASK. | Stefan Krah | 2010-07-19 | 1 | -1/+1 |
|
|
* | Fix the docstrings of the capitalize method. | Senthil Kumaran | 2010-07-05 | 1 | -1/+1 |
|
|
* | Update comment about surrogates. | Ezio Melotti | 2010-07-03 | 1 | -5/+5 |
|
|
* | Update PyUnicode_DecodeUTF8 from RFC 2279 to RFC 3629. | Ezio Melotti | 2010-07-01 | 1 | -56/+56 |
|
|
* | #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 |
|
|
* | 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 |
|
|
* | 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 |
|
|
* | 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 |
|
|
* | condense condition | Benjamin Peterson | 2010-04-25 | 1 | -4/+1 |
|
|
* | 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 |
|
|
* | Merged revisions 79494,79496 via svnmerge from | Florent Xicluna | 2010-03-30 | 1 | -3/+5 |
|
|
* | Merged revisions 79278,79280 via svnmerge from | Victor Stinner | 2010-03-22 | 1 | -1/+1 |
|
|