summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
...
* | PyLocale_strxfrm() uses the new Unicode APIVictor Stinner2011-09-291-24/+15
* | fileio_init() checks for failure on conversion to Py_UNICODE*Victor Stinner2011-09-291-4/+6
* | Fix test_codeccallbacks for Windows: check size of wchar_t, not sys.maxunicodeVictor Stinner2011-09-291-4/+6
* | Fix test_codecs for Windows: check size of wchar_t, not sys.maxunicodeVictor Stinner2011-09-291-41/+44
* | Merge.Charles-François Natali2011-09-292-40/+32
|\ \
| * | _PyUnicode_Ready() cannot be used on ready strings anymoreVictor Stinner2011-09-292-30/+24
| * | Move _PyUnicode_UTF8() and _PyUnicode_UTF8_LENGTH() outside unicodeobject.hVictor Stinner2011-09-292-10/+8
* | | Issue #13058: ossaudiodev: fix a file descriptor leak on error. Patch by ThomasCharles-François Natali2011-09-293-0/+5
|\ \ \ | |/ / |/| / | |/
| * Issue #13058: ossaudiodev: fix a file descriptor leak on error. Patch by ThomasCharles-François Natali2011-09-293-0/+5
* | Add a note in PyUnicode_CopyCharacters() doc: it doesn't write null characterVictor Stinner2011-09-292-44/+47
* | Re-enable test.Martin v. Löwis2011-09-291-4/+1
* | Port normalization to new API.Martin v. Löwis2011-09-291-71/+119
* | Rename Py_BUILD_ASSERT to Py_BUILD_ASSERT_EXPRVictor Stinner2011-09-291-6/+5
* | pymacro.h: Inline _Py_ARRAY_LENGTH_CHECK() and add http://ccodearchive.net/Victor Stinner2011-09-291-13/+12
* | Merge heads.Ezio Melotti2011-09-291-21/+42
|\ \
| * | Update and reorganize the whatsnew entry for PEP 393.Ezio Melotti2011-09-291-21/+42
* | | Fix hex_digit_to_int() prototype: expect Py_UCS4, not Py_UNICODEVictor Stinner2011-09-292-4/+4
* | | modsupport.c reuses Py_UNICODE_strlen()Victor Stinner2011-09-291-10/+1
* | | _io.textio: fix character type, use Py_UCS4 instead of Py_UNICODEVictor Stinner2011-09-291-3/+3
* | | _sre: don't use Py_UNICODE anymoreVictor Stinner2011-09-291-9/+7
|/ /
* | Remove now useless redefinition of chr/ord for narrow builds in test_multibyt...Ezio Melotti2011-09-291-15/+0
* | Complete What's New in 3.3 about PEP 393Victor Stinner2011-09-291-0/+28
* | Move UCS4-specific tests with the "normal" tests.Ezio Melotti2011-09-291-8/+4
* | Enhance Py_ARRAY_LENGTH(): fail at build time if the argument is not an arrayVictor Stinner2011-09-285-19/+65
* | Move code related to compile from Python.h to compile.hVictor Stinner2011-09-282-21/+12
* | Use the new Py_ARRAY_LENGTH macroVictor Stinner2011-09-2815-28/+26
* | Fix 'c' format of PyUnicode_Format()Victor Stinner2011-09-281-1/+1
* | Oops, fix my previous commit: unicode => toVictor Stinner2011-09-281-2/+2
* | PyUnicode_CopyCharacters() marks the string as dirty (reset the hash)Victor Stinner2011-09-281-1/+5
* | PyUnicode_CopyCharacters() fails if 'to' has more than 1 referenceVictor Stinner2011-09-282-1/+10
* | Fix whitespace.Ezio Melotti2011-09-281-1/+1
* | Clean up a few tabs that went in with PEP393.Ezio Melotti2011-09-286-204/+204
* | #13054: sys.maxunicode is now always 0x10FFFF.Ezio Melotti2011-09-285-6/+23
* | Check size of wchar_t using the preprocessorVictor Stinner2011-09-281-29/+27
* | PyUnicode_CopyCharacters() initializes overflowVictor Stinner2011-09-281-0/+1
* | Mark PyUnicode_FromUCS[124] as privateVictor Stinner2011-09-284-13/+13
* | Oops, fix Py_MIN/Py_MAX caseVictor Stinner2011-09-281-2/+2
* | Mark _PyUnicode_FindMaxCharAndNumSurrogatePairs() as privateVictor Stinner2011-09-282-19/+10
* | fill_number() and format_string_internal() check for PyUnicode_CopyCharacters...Victor Stinner2011-09-281-3/+8
* | fill_number() ensures that the 'digits' string is readyVictor Stinner2011-09-281-1/+4
* | fill_char() can now propagate an errorVictor Stinner2011-09-281-25/+47
* | Strip trailing spaces in unicodeobject.[ch]Victor Stinner2011-09-282-15/+15
* | Check for PyUnicode_CopyCharacters() failureVictor Stinner2011-09-282-43/+87
* | PyUnicode_CopyCharacters() checks for buffer and character overflowVictor Stinner2011-09-282-85/+92
* | Mark PyUnicode_CONVERT_BYTES as privateVictor Stinner2011-09-282-25/+25
* | Add versionadded directive to new API function.Georg Brandl2011-09-281-0/+2
* | Rename new macros to conform to naming rules (function macros have "Py" prefi...Georg Brandl2011-09-285-20/+20
* | Set Py_UNICODE_REPLACEMENT_CHARACTER type to Py_UCS4, instead of Py_UNICODEVictor Stinner2011-09-281-1/+1
* | merge headsBenjamin Peterson2011-09-2816-39/+39
|\ \
| * | #13012: use splitlines(keepends=True/False) instead of splitlines(0/1).Ezio Melotti2011-09-2816-39/+39