Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Issue #13441: Reenable strxfrm() tests on Solaris | Victor Stinner | 2011-11-21 | 2 | -6/+0 |
| | |||||
* | Remove temporary hacks for the issue #13441 | Victor Stinner | 2011-11-21 | 1 | -46/+0 |
| | |||||
* | Another temporary hack to debug the issue #13441 | Victor Stinner | 2011-11-21 | 1 | -0/+20 |
| | | | | Dump the wchar_t that we are going to decode and dump the locale | ||||
* | Issue #13441: _PyUnicode_CheckConsistency() dumps the string if the maximum | Victor Stinner | 2011-11-21 | 2 | -0/+39 |
| | | | | | | | character is bigger than U+10FFFF and locale.localeconv() dumps the string before decoding it. Temporary hack to debug the issue #13441. | ||||
* | What's new in Python 3.3: Rephrase PEP 393 doc | Victor Stinner | 2011-11-21 | 1 | -36/+43 |
| | |||||
* | winreg module avoids the deprecated Unicode API | Victor Stinner | 2011-11-21 | 1 | -24/+36 |
| | |||||
* | Issue #13441: Disable temporary localeconv() tests on Solaris | Victor Stinner | 2011-11-21 | 1 | -0/+2 |
| | |||||
* | CJK codecs checks for conversion to Py_UNICODE* failures | Victor Stinner | 2011-11-21 | 1 | -3/+10 |
| | |||||
* | MultibyteCodec_Encode() checks if PyUnicode_AS_UNICODE() failed | Victor Stinner | 2011-11-21 | 1 | -2/+5 |
| | |||||
* | Fix misuse of PyUnicode_GET_SIZE() => PyUnicode_GET_LENGTH() | Victor Stinner | 2011-11-21 | 10 | -19/+18 |
| | | | | And PyUnicode_GetSize() => PyUnicode_GetLength() | ||||
* | PyUnicode_GET_SIZE() checks that PyUnicode_AsUnicode() succeed | Victor Stinner | 2011-11-21 | 1 | -6/+7 |
| | | | | using an assertion | ||||
* | Fix a typo in PC/_subprocess.c | Victor Stinner | 2011-11-21 | 1 | -1/+1 |
| | |||||
* | ctypes check for PyUnicode_GET_SIZE() failure | Victor Stinner | 2011-11-21 | 2 | -6/+16 |
| | |||||
* | test_widechar() uses the new Unicode API | Victor Stinner | 2011-11-21 | 1 | -1/+1 |
| | | | | PyUnicode_GET_SIZE() => PyUnicode_GET_LENGTH() | ||||
* | Check for PyUnicode_AS_UNICODE() failure | Victor Stinner | 2011-11-21 | 4 | -7/+38 |
| | |||||
* | UnicodeTranslateError uses the new Unicode API | Victor Stinner | 2011-11-21 | 1 | -3/+3 |
| | | | | The index is a character index, not a index in a Py_UNICODE* string. | ||||
* | Issue #13441: Disable temporary strxfrm() tests on Solaris | Victor Stinner | 2011-11-21 | 1 | -0/+4 |
| | |||||
* | (Merge 3.2) Close #13401: Skip TestFileTypeW of test_argparse if the current ↵ | Victor Stinner | 2011-11-20 | 1 | -0/+2 |
|\ | | | | | | | | | | | user is root Patch written by Arfrever Frehtes Taifersar Arahesis. | ||||
| * | Close #13401: Skip TestFileTypeW of test_argparse if the current user is root | Victor Stinner | 2011-11-20 | 1 | -0/+2 |
| | | | | | | | | Patch written by Arfrever Frehtes Taifersar Arahesis. | ||||
* | | UnicodeEncodeError uses the new Unicode API | Victor Stinner | 2011-11-20 | 1 | -3/+3 |
| | | | | | | | | The index is a character index, not a index in a Py_UNICODE* string. | ||||
* | | PyObject_Str() ensures that the result string is ready | Victor Stinner | 2011-11-20 | 2 | -2/+5 |
| | | | | | | | | | | | | | | and check the string consistency. _PyUnicode_CheckConsistency() doesn't check the hash anymore. It should be possible to call this function even if hash(str) was already called. | ||||
* | | Use PyUnicode_CompareWithASCIIString() instead of Py_UNICODE_strcmp() to avoid | Victor Stinner | 2011-11-20 | 1 | -2/+1 |
| | | | | | | | | the deprecate Py_UNICODE type | ||||
* | | stringlib: remove unused STRINGLIB_FILL | Victor Stinner | 2011-11-20 | 6 | -6/+0 |
| | | |||||
* | | print_exception() uses PyUnicode_GetLength() instead of PyUnicode_GetSize() | Victor Stinner | 2011-11-20 | 1 | -1/+1 |
| | | |||||
* | | PyUnicode_AsUTF32String() calls directly _PyUnicode_EncodeUTF32(), | Victor Stinner | 2011-11-20 | 1 | -6/+1 |
| | | | | | | | | instead of calling the deprecated PyUnicode_EncodeUTF32() function | ||||
* | | _PyUnicode_CheckConsistency() also checks maxchar maximum value, | Victor Stinner | 2011-11-20 | 2 | -8/+17 |
| | | | | | | | | not only its minimum value | ||||
* | | Remove the two ugly and unused WRITE_ASCII_OR_WSTR and WRITE_WSTR macros | Victor Stinner | 2011-11-20 | 1 | -18/+0 |
| | | |||||
* | | Reuse surrogate macros in UTF-16 decoder | Victor Stinner | 2011-11-20 | 1 | -5/+4 |
| | | |||||
* | | Fix PyUnicode_CopyCharacters() doc | Victor Stinner | 2011-11-20 | 1 | -2/+1 |
| | | |||||
* | | charmap_encoding_error() uses the new Unicode API | Victor Stinner | 2011-11-20 | 1 | -3/+13 |
| | | |||||
* | | Ensure that Py_UCS4 is 32 bits and Py_UCS2 is 16 bits | Victor Stinner | 2011-11-20 | 1 | -2/+7 |
| | | |||||
* | | Document new and deprecated Unicode functions | Victor Stinner | 2011-11-20 | 1 | -11/+92 |
| | | |||||
* | | Document PyUnicode_WCHAR_KIND | Victor Stinner | 2011-11-20 | 1 | -1/+2 |
| | | |||||
* | | Use PyUnicode_EncodeCodePage() instead of PyUnicode_EncodeMBCS() with | Victor Stinner | 2011-11-20 | 1 | -16/+3 |
| | | | | | | | | PyUnicode_AsUnicodeAndSize() | ||||
* | | charmap encoders uses Py_UCS4, not Py_UNICODE | Victor Stinner | 2011-11-20 | 1 | -7/+4 |
| | | |||||
* | | Update list of trove classifiers | Éric Araujo | 2011-11-20 | 1 | -0/+12 |
| | | |||||
* | | Merge branch 3.2 (closes #13338) | Petri Lehtinen | 2011-11-19 | 3 | -2/+9 |
|\ \ | |/ | |||||
| * | Issue #13338: Handle all enumerations in _Py_ANNOTATE_MEMORY_ORDER | Petri Lehtinen | 2011-11-19 | 3 | -2/+9 |
| | | | | | | | | | | This allows compiling extension modules with -Wswitch-enum on gcc. Initial patch by Floris Bruynooghe. | ||||
* | | Issue #9530: Fix undefined behaviour due to signed overflow in testcapi_long.h. | Mark Dickinson | 2011-11-19 | 1 | -2/+1 |
| | | |||||
* | | Issue #12245 merge. | Mark Dickinson | 2011-11-19 | 1 | -2/+6 |
|\ \ | |/ | |||||
| * | Issue #12245: Document sys.float_info.rounds better. | Mark Dickinson | 2011-11-19 | 1 | -2/+6 |
| | | |||||
* | | Issue #13215: multiprocessing.Connection: don't hammer the remote end with | Charles-François Natali | 2011-11-19 | 1 | -15/+1 |
| | | | | | | | | retries in case of ECONNREFUSED. | ||||
* | | Issue #13393: In TextIOWrapper.read(n), try to read `n` characters as | Antoine Pitrou | 2011-11-18 | 1 | -5/+9 |
| | | | | | | | | once rather than limit ourselves to the default chunk size. | ||||
* | | Issue #10227: Add an allocation cache for a single slice object. | Antoine Pitrou | 2011-11-18 | 4 | -7/+34 |
| | | | | | | | | Patch by Stefan Behnel. | ||||
* | | #13387: merge with 3.2. | Ezio Melotti | 2011-11-18 | 1 | -0/+2 |
|\ \ | |/ | |||||
| * | #13387: add note about checking the exact type in assertIsInstance doc. | Ezio Melotti | 2011-11-18 | 1 | -0/+2 |
| | | |||||
* | | #11112: merge with 3.2. | Ezio Melotti | 2011-11-18 | 1 | -1/+1 |
|\ \ | |/ | |||||
| * | #11112: Fix typo in a base class in test_socket. | Ezio Melotti | 2011-11-18 | 1 | -1/+1 |
| | | |||||
* | | #13358: merge with 3.2. | Ezio Melotti | 2011-11-18 | 3 | -4/+27 |
|\ \ | |/ | |||||
| * | #13358: HTMLParser now calls handle_data only once for each CDATA. | Ezio Melotti | 2011-11-18 | 3 | -4/+27 |
| | |