Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Issue #13617: Document that the result of the conversion of a Unicode object to | Victor Stinner | 2011-12-18 | 1 | -13/+24 |
|\ | | | | | | | | | | | wchar*, Py_UNICODE* and bytes may contain embedded null characters/bytes. Patch written by Arnaud Calmettes. | ||||
| * | Issue #13617: Document that the result of the conversion of a Unicode object to | Victor Stinner | 2011-12-18 | 1 | -9/+19 |
| | | | | | | | | | | | | wchar*, Py_UNICODE* and bytes may contain embedded null characters/bytes. Patch written by Arnaud Calmettes. | ||||
| * | Issue #13522: Fix _Py_co_pow() documentation | Victor Stinner | 2011-12-18 | 1 | -1/+1 |
| | | | | | | | | Patch written by Arnaud Calmettes. | ||||
* | | Issue #13522: Fix _Py_co_pow() documentation | Victor Stinner | 2011-12-18 | 1 | -1/+1 |
| | | | | | | | | Patch written by Arnaud Calmettes. | ||||
* | | Issue #13522: document error return values of some float and complex C API ↵ | Antoine Pitrou | 2011-12-18 | 2 | -1/+9 |
|\ \ | |/ | | | | | functions. | ||||
| * | Issue #13522: document error return values of some float and complex C API ↵ | Antoine Pitrou | 2011-12-18 | 2 | -1/+9 |
| | | | | | | | | functions. | ||||
* | | Issue #13560: Add PyUnicode_EncodeLocale() | Victor Stinner | 2011-12-17 | 1 | -1/+24 |
| | | | | | | | | | | | | * Use PyUnicode_EncodeLocale() in time.strftime() if wcsftime() is not available * Document my last changes in Misc/NEWS | ||||
* | | Add PyUnicode_DecodeLocaleAndSize() and PyUnicode_DecodeLocale() | Victor Stinner | 2011-12-16 | 1 | -0/+40 |
| | | | | | | | | | | | | | | | | | | | | | | * PyUnicode_DecodeLocaleAndSize() and PyUnicode_DecodeLocale() decode a string from the current locale encoding * _Py_char2wchar() writes an "error code" in the size argument to indicate if the function failed because of memory allocation failure or because of a decoding error. The function doesn't write the error message directly to stderr. * Fix time.strftime() (if wcsftime() is missing): decode strftime() result from the current locale encoding, not from the filesystem encoding. | ||||
* | | Issue #6695: Full garbage collection runs now clear the freelist of set objects. | Antoine Pitrou | 2011-12-16 | 1 | -0/+7 |
| | | | | | | | | Initial patch by Matthias Troffaes. | ||||
* | | Make PyUnicode_Copy() private => _PyUnicode_Copy() | Victor Stinner | 2011-12-12 | 1 | -7/+0 |
| | | | | | | | | | | | | Undocument the function. Make also decode_utf8_errors() as private (static). | ||||
* | | Document PyUnicode_Copy() and PyUnicode_EncodeCodePage() | Victor Stinner | 2011-12-08 | 1 | -1/+17 |
| | | |||||
* | | c-api: Replace PyUnicodeObject* by PyObject* in "U" format doc | Victor Stinner | 2011-12-01 | 1 | -1/+1 |
| | | |||||
* | | PEP 3155 / issue #13448: Qualified name for classes and functions. | Antoine Pitrou | 2011-11-25 | 1 | -0/+10 |
| | | |||||
* | | fix some typos in Doc/c-api/memoryview.rst | Eli Bendersky | 2011-11-25 | 1 | -2/+2 |
|\ \ | |/ | |||||
| * | fix some typos in Doc/c-api/memoryview.rst | Eli Bendersky | 2011-11-25 | 1 | -2/+2 |
| | | |||||
* | | Document PyUnicode_WCHAR_KIND | Victor Stinner | 2011-11-20 | 1 | -1/+2 |
| | | |||||
* | | Issue #13389: Full garbage collection passes now clear the freelists for | Antoine Pitrou | 2011-11-14 | 2 | -0/+14 |
| | | | | | | | | | | list and dict objects. They already cleared other freelists in the interpreter. | ||||
* | | Add missing prefixes | Antoine Pitrou | 2011-10-22 | 1 | -2/+2 |
| | | |||||
* | | Elaborate on representations and canonical/legacy unicode objects | Antoine Pitrou | 2011-10-22 | 1 | -1/+15 |
| | | |||||
* | | Move deprecated functions at the end of their respective sections. | Antoine Pitrou | 2011-10-22 | 1 | -122/+122 |
| | | |||||
* | | Merge with 3.2. | Ezio Melotti | 2011-10-19 | 2 | -3/+3 |
|\ \ | |/ | |||||
| * | Remove duplication. | Ezio Melotti | 2011-10-19 | 1 | -2/+2 |
| | | |||||
* | | Update index entries | Antoine Pitrou | 2011-10-12 | 1 | -3/+17 |
| | | |||||
* | | Update the C-API docs for exception types | Antoine Pitrou | 2011-10-12 | 1 | -59/+110 |
| | | |||||
* | | Merge issue #13145 fix. | Mark Dickinson | 2011-10-11 | 1 | -4/+4 |
|\ \ | |/ | |||||
| * | Issue #13145. Fix incorrect documentation for PyNumber_ToBase. Thanks Sven ↵ | Mark Dickinson | 2011-10-11 | 1 | -4/+4 |
| | | | | | | | | Marnach. | ||||
* | | Fix indentation. | Martin v. Löwis | 2011-10-07 | 1 | -1/+1 |
| | | |||||
* | | Change PyUnicode_KIND to 1,2,4. Drop _KIND_SIZE and _CHARACTER_SIZE. | Martin v. Löwis | 2011-10-07 | 1 | -21/+3 |
| | | |||||
* | | Update C API docs for PEP 393. | Georg Brandl | 2011-10-07 | 3 | -99/+513 |
| | | |||||
* | | Add versionadded directive to new API function. | Georg Brandl | 2011-09-28 | 1 | -0/+2 |
| | | |||||
* | | Implement PEP 393. | Martin v. Löwis | 2011-09-28 | 1 | -0/+9 |
| | | |||||
* | | Merge doc changes from 3.2. | Éric Araujo | 2011-09-01 | 1 | -2/+2 |
|\ \ | |/ | | | | | | | rstlint complains about packaging docs but I’m working on those in another patch. | ||||
| * | Fix some misuses of Sphinx roles and one typo | Éric Araujo | 2011-09-01 | 1 | -2/+2 |
| | | |||||
* | | #10542: Add 4 macros to work with surrogates: Py_UNICODE_IS_SURROGATE, ↵ | Ezio Melotti | 2011-08-22 | 1 | -0/+21 |
| | | | | | | | | Py_UNICODE_IS_HIGH_SURROGATE, Py_UNICODE_IS_LOW_SURROGATE, Py_UNICODE_JOIN_SURROGATES. | ||||
* | | merge with 3.2 | Sandro Tosi | 2011-08-12 | 1 | -1/+1 |
|\ \ | |/ | |||||
| * | let PySequence_Check me a link; thanks to tomo cocoa from docs@ | Sandro Tosi | 2011-08-12 | 1 | -1/+1 |
| | | |||||
* | | Add doc for Py_RETURN_NOTIMPLEMENTED, added in #12724. | Brian Curtin | 2011-08-11 | 1 | -0/+13 |
| | | |||||
* | | merge 3.2 (#12719) | Benjamin Peterson | 2011-08-09 | 1 | -0/+5 |
|\ \ | |/ | |||||
| * | note mutating tp_dict is bad (closes #12719) | Benjamin Peterson | 2011-08-09 | 1 | -0/+5 |
| | | |||||
* | | #10741: merge with 3.2 | Sandro Tosi | 2011-08-07 | 1 | -0/+8 |
|\ \ | |/ | |||||
| * | #10741: add documentation for PyGILState_GetThisThreadState() | Sandro Tosi | 2011-08-07 | 1 | -0/+8 |
| | | |||||
* | | Issue #12380: PyArg_ParseTuple now accepts a bytearray for the 'c' format. | Eli Bendersky | 2011-07-29 | 1 | -3/+5 |
| | | | | | | | | | | | | | | As a side effect, this now allows the rjust, ljust and center methods of bytes and bytearray to accept a bytearray argument. Patch by Petri Lehtinen | ||||
* | | Make it clear that PyNumber_AsSsize_t() returns -1 on error. | Antoine Pitrou | 2011-07-13 | 1 | -1/+3 |
|\ \ | |/ | |||||
| * | Make it clear that PyNumber_AsSsize_t() returns -1 on error. | Antoine Pitrou | 2011-07-13 | 1 | -1/+3 |
| | | |||||
* | | Merge doc change from 3.2. | Georg Brandl | 2011-07-13 | 1 | -3/+3 |
|\ \ | |/ | |||||
| * | Clarify that PyErr_NewException creates an exception *class*, not instance. | Georg Brandl | 2011-07-13 | 1 | -3/+3 |
| | | |||||
* | | Merge doc fixes from 3.2 | Éric Araujo | 2011-06-09 | 1 | -2/+2 |
|\ \ | |/ | |||||
| * | Fix a few misuses of :option: I missed in r86521. | Éric Araujo | 2011-06-08 | 1 | -2/+2 |
| | | | | | | | | | | | | | | | | | | | | Extract of the commit message: Fix usage of :option: in the docs (#9312). :option: is used to create a link to an option of python, not to mark up any instance of any arbitrary command-line option. These were changed to ````. | ||||
* | | merge 3.2 | Benjamin Peterson | 2011-06-01 | 1 | -1/+1 |
|\ \ | |/ | |||||
| * | demote this to a note | Benjamin Peterson | 2011-06-01 | 1 | -1/+1 |
| | |