Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | bpo-41123: Remove PyUnicode_AsUnicodeCopy (GH-21209) | Inada Naoki | 2020-06-30 | 1 | -14/+0 |
| | |||||
* | bpo-39500: Document PyUnicode_IsIdentifier() function (GH-18397) | Victor Stinner | 2020-02-11 | 1 | -0/+10 |
| | | | | PyUnicode_IsIdentifier() does not call Py_FatalError() anymore if the string is not ready. | ||||
* | Correct the documented default encoding (GH-18429) | Eric Wieser | 2020-02-10 | 1 | -1/+1 |
| | | | | | | | | | | | | | From the source for `PyUnicode_Decode`, the implementation is: ``` if (encoding == NULL) { return PyUnicode_DecodeUTF8Stateful(s, size, errors, NULL); } ``` which is pretty clearly not defaulting to ASCII. --- I assume this needs neither a news entry nor bpo link. | ||||
* | bpo-38896: Remove PyUnicode_ClearFreeList() function (GH-17354) | Victor Stinner | 2019-11-23 | 1 | -5/+0 |
| | | | | Remove PyUnicode_ClearFreeList() function: the Unicode free list has been removed in Python 3.3. | ||||
* | bpo-38600: NULL -> ``NULL``. (GH-17001) | Serhiy Storchaka | 2019-10-30 | 1 | -4/+4 |
| | | | Also fix some other formatting. | ||||
* | bpo-38600: Change the mark up of NULL in the C API documentation. (GH-16950) | Serhiy Storchaka | 2019-10-30 | 1 | -155/+155 |
| | | | | Replace all *NULL* with ``NULL``. | ||||
* | Doc: Replace the deprecated highlightlang directive by highlight. (#13377) | Stéphane Wirtel | 2019-05-17 | 1 | -1/+1 |
| | | | | highlightlang is deprecated since April 2018 in Sphinx. See https://github.com/sphinx-doc/sphinx/pull/4845 | ||||
* | bpo-31873: Update unicode.rst - 'unicode' capitalization (GH-4125) | toonarmycaptain | 2019-05-08 | 1 | -12/+12 |
| | | | | Update 'unicode' capitalization. 'Unicode' is a proper noun, and as such should be capitalized. Changed multiple instances. | ||||
* | bpo-31904: Add encoding support for VxWorks RTOS (GH-12051) | pxinwr | 2019-03-04 | 1 | -4/+4 |
| | | | | | | | | Use UTF-8 as the system encoding on VxWorks. The main reason are: 1. The locale is frequently misconfigured. 2. Missing some functions to deal with locale in VxWorks C library. | ||||
* | Fix documented signatures for C API functions. (GH-11236) | Serhiy Storchaka | 2018-12-19 | 1 | -4/+4 |
| | |||||
* | Revert "bpo-34595: Add %T format to PyUnicode_FromFormatV() (GH-9080)" (GH-9187) | Victor Stinner | 2018-09-12 | 1 | -6/+0 |
| | | | This reverts commit 886483e2b9bbabf60ab769683269b873381dd5ee. | ||||
* | bpo-34595: Add %T format to PyUnicode_FromFormatV() (GH-9080) | Victor Stinner | 2018-09-07 | 1 | -0/+6 |
| | | | | | | | | | * Add %T format to PyUnicode_FromFormatV(), and so to PyUnicode_FromFormat() and PyErr_Format(), to format an object type name: equivalent to "%s" with Py_TYPE(obj)->tp_name. * Replace Py_TYPE(obj)->tp_name with %T format in unicodeobject.c. * Add unit test on %T format. * Rename unicode_fromformat_write_cstr() to unicode_fromformat_write_utf8(), to make the intent more explicit. | ||||
* | bpo-29240: PyUnicode_DecodeLocale() uses UTF-8 on Android (#5272) | Victor Stinner | 2018-01-22 | 1 | -4/+7 |
| | | | | | | | | PyUnicode_DecodeLocaleAndSize(), PyUnicode_DecodeLocale() and PyUnicode_EncodeLocale() now use always use the UTF-8 encoding on Android, instead of the current locale encoding. On Android API 19, mbstowcs() and wcstombs() are broken and cannot be used. | ||||
* | bpo-29240: Fix locale encodings in UTF-8 Mode (#5170) | Victor Stinner | 2018-01-15 | 1 | -0/+16 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Modify locale.localeconv(), time.tzname, os.strerror() and other functions to ignore the UTF-8 Mode: always use the current locale encoding. Changes: * Add _Py_DecodeLocaleEx() and _Py_EncodeLocaleEx(). On decoding or encoding error, they return the position of the error and an error message which are used to raise Unicode errors in PyUnicode_DecodeLocale() and PyUnicode_EncodeLocale(). * Replace _Py_DecodeCurrentLocale() with _Py_DecodeLocaleEx(). * PyUnicode_DecodeLocale() now uses _Py_DecodeLocaleEx() for all cases, especially for the strict error handler. * Add _Py_DecodeUTF8Ex(): return more information on decoding error and supports the strict error handler. * Rename _Py_EncodeUTF8_surrogateescape() to _Py_EncodeUTF8Ex(). * Replace _Py_EncodeCurrentLocale() with _Py_EncodeLocaleEx(). * Ignore the UTF-8 mode to encode/decode localeconv(), strerror() and time zone name. * Remove PyUnicode_DecodeLocale(), PyUnicode_DecodeLocaleAndSize() and PyUnicode_EncodeLocale() now ignore the UTF-8 mode: always use the "current" locale. * Remove _PyUnicode_DecodeCurrentLocale(), _PyUnicode_DecodeCurrentLocaleAndSize() and _PyUnicode_EncodeCurrentLocale(). | ||||
* | bpo-30708: Check for null characters in PyUnicode_AsWideCharString(). (#2285) | Serhiy Storchaka | 2017-06-27 | 1 | -5/+11 |
| | | | | | Raise a ValueError if the second argument is NULL and the wchar_t\* string contains null characters. | ||||
* | bpo-28415: Note 0 conversion different between Python and C (#885) | Louie Lu | 2017-04-27 | 1 | -26/+29 |
| | |||||
* | bpo-29918: Add missed "const" modifiers in C API documentation. (#846) | Serhiy Storchaka | 2017-03-30 | 1 | -4/+4 |
| | |||||
* | bpo-28749: Fixed the documentation of the mapping codec APIs. (#487) | Serhiy Storchaka | 2017-03-19 | 1 | -47/+48 |
| | | | Added the documentation for PyUnicode_Translate(). | ||||
* | Issue #28769: The result of PyUnicode_AsUTF8AndSize() and PyUnicode_AsUTF8() | Serhiy Storchaka | 2017-01-22 | 1 | -2/+8 |
| | | | | is now of type "const char *" rather of "char *". | ||||
* | Issue #29087: Removed the documentation of non-existing UCS4 support functions. | Serhiy Storchaka | 2016-12-28 | 1 | -20/+0 |
|\ | |||||
| * | Issue #29087: Removed the documentation of non-existing UCS4 support functions. | Serhiy Storchaka | 2016-12-28 | 1 | -20/+0 |
| |\ | |||||
| | * | Issue #29087: Removed the documentation of non-existing UCS4 support functions. | Serhiy Storchaka | 2016-12-28 | 1 | -20/+0 |
| | | | |||||
* | | | Issue #28822: Adjust indices handling of PyUnicode_FindChar(). | Xiang Zhang | 2016-12-20 | 1 | -0/+3 |
|/ / | |||||
* | | Issue #29009: Merge 3.5. | Xiang Zhang | 2016-12-19 | 1 | -4/+0 |
|\ \ | |/ | |||||
| * | Issue #29009: Remove outdated doc of PyUnicode_RichCompare. | Xiang Zhang | 2016-12-19 | 1 | -4/+0 |
| | | |||||
* | | Issue #28808: PyUnicode_CompareWithASCIIString() now never raises exceptions. | Serhiy Storchaka | 2016-12-06 | 1 | -2/+1 |
|\ \ | |/ | |||||
| * | Issue #28808: PyUnicode_CompareWithASCIIString() now never raises exceptions. | Serhiy Storchaka | 2016-12-06 | 1 | -2/+1 |
| | | |||||
* | | Issue #28750: Fixed docs of of unicode-escape an raw-unicode-escape C API. | Serhiy Storchaka | 2016-11-20 | 1 | -7/+5 |
|\ \ | |/ | | | | | Patch by Xiang Zhang. | ||||
| * | Issue #28750: Fixed docs of of unicode-escape an raw-unicode-escape C API. | Serhiy Storchaka | 2016-11-20 | 1 | -7/+5 |
| | | | | | | | | Patch by Xiang Zhang. | ||||
* | | Issue #19569: Suggested more appropriate replacements for deprecated Unicode | Serhiy Storchaka | 2016-11-20 | 1 | -17/+22 |
|\ \ | |/ | | | | | C API functions. | ||||
| * | Issue #19569: Suggested more appropriate replacements for deprecated Unicode | Serhiy Storchaka | 2016-11-20 | 1 | -17/+22 |
| | | | | | | | | C API functions. | ||||
* | | Issue #28701: Replace PyUnicode_CompareWithASCIIString with ↵ | Serhiy Storchaka | 2016-11-16 | 1 | -0/+6 |
|\ \ | |/ | | | | | | | | | _PyUnicode_EqualToASCIIString. The latter function is more readable, faster and doesn't raise exceptions. | ||||
| * | Issue #28701: Replace PyUnicode_CompareWithASCIIString with ↵ | Serhiy Storchaka | 2016-11-16 | 1 | -0/+6 |
| | | | | | | | | | | | | _PyUnicode_EqualToASCIIString. The latter function is more readable, faster and doesn't raise exceptions. | ||||
* | | Issue #28496: Mark up constants 0, 1 and -1 that denote return values or | Serhiy Storchaka | 2016-10-27 | 1 | -24/+24 |
|\ \ | |/ | | | | | special input values as literal text. | ||||
| * | Issue #28496: Mark up constants 0, 1 and -1 that denote return values or | Serhiy Storchaka | 2016-10-27 | 1 | -24/+24 |
| | | | | | | | | special input values as literal text. | ||||
* | | Issue #19795: Mark up None as literal text. | Serhiy Storchaka | 2016-10-19 | 1 | -4/+4 |
|\ \ | |/ | |||||
| * | Issue #19795: Mark up None as literal text. | Serhiy Storchaka | 2016-10-19 | 1 | -4/+4 |
| | | |||||
* | | Issue #28432: Merge from 3.5 | Berker Peksag | 2016-10-17 | 1 | -1/+1 |
|\ \ | |/ | |||||
| * | Issue #28432: Fix first parameter name in PyUnicode_EncodeLocale documentation | Berker Peksag | 2016-10-17 | 1 | -1/+1 |
| | | | | | | | | Patch by Xiang Zhang. | ||||
* | | Merge from 3.5. | Serhiy Storchaka | 2016-10-08 | 1 | -3/+6 |
|\ \ | |/ | |||||
| * | Issue #28379: Added sanity checks and tests for PyUnicode_CopyCharacters(). | Serhiy Storchaka | 2016-10-08 | 1 | -3/+6 |
| | | | | | | | | Patch by Xiang Zhang. | ||||
* | | Issue #28295: Fixed the documentation and added tests for PyUnicode_AsUCS4(). | Serhiy Storchaka | 2016-10-02 | 1 | -1/+1 |
|\ \ | |/ | | | | | Original patch by Xiang Zhang. | ||||
| * | Issue #28295: Fixed the documentation and added tests for PyUnicode_AsUCS4(). | Serhiy Storchaka | 2016-10-02 | 1 | -1/+1 |
| | | | | | | | | Original patch by Xiang Zhang. | ||||
* | | Issue #27781: Change file system encoding on Windows to UTF-8 (PEP 529) | Steve Dower | 2016-09-08 | 1 | -13/+17 |
| | | |||||
* | | more PY_LONG_LONG to long long | Benjamin Peterson | 2016-09-08 | 1 | -1/+0 |
| | | |||||
* | | Issue #27182: Add support for path-like objects to PyUnicode_FSDecoder(). | Brett Cannon | 2016-09-06 | 1 | -4/+8 |
| | | |||||
* | | Issue #26027: Support path-like objects in PyUnicode-FSConverter(). | Brett Cannon | 2016-09-06 | 1 | -1/+4 |
| | | | | | | | | | | This is to add support for os.exec*() and os.spawn*() functions. Part of PEP 519. | ||||
* | | require a long long data type (closes #27961) | Benjamin Peterson | 2016-09-05 | 1 | -5/+0 |
|/ | |||||
* | Issue #18353: Remove PyUnicode_WRITE_CHAR macro link from c-api/unicode.rst | Berker Peksag | 2016-04-24 | 1 | -2/+1 |
| | | | | Patch by Corey Brune. | ||||
* | Issue #26778: Fixed "a/an/and" typos in code comment and documentation. | Serhiy Storchaka | 2016-04-17 | 1 | -2/+2 |
| |