Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Better explain the buffer interface (hopefully) | Antoine Pitrou | 2010-12-12 | 2 | -16/+26 |
| | |||||
* | Fix markup. | Georg Brandl | 2010-12-11 | 1 | -2/+4 |
| | |||||
* | Add versionchanged for parameter type changes. | Martin v. Löwis | 2010-12-11 | 1 | -0/+5 |
| | |||||
* | Adjust PySlice_GetIndices documentation to signature change. | Martin v. Löwis | 2010-12-11 | 1 | -2/+2 |
| | |||||
* | Remove visible XXX comments. | Georg Brandl | 2010-12-06 | 1 | -3/+5 |
| | |||||
* | Add an "optimize" parameter to compile() to control the optimization level, ↵ | Georg Brandl | 2010-12-04 | 1 | -0/+14 |
| | | | | and provide an interface to it in py_compile, compileall and PyZipFile. | ||||
* | Issue #10557: Fixed error messages from float() and other numeric | Alexander Belopolsky | 2010-12-04 | 1 | -0/+7 |
| | | | | | | types. Added a new API function, PyUnicode_TransformDecimalToASCII(), which transforms non-ASCII decimal digits in a Unicode string to their ASCII equivalents. | ||||
* | Merge branches/pep-0384. | Martin v. Löwis | 2010-12-03 | 1 | -2/+2 |
| | |||||
* | #10597: fix Py_SetPythonHome docs by pointing to where the meaning of ↵ | Georg Brandl | 2010-12-02 | 1 | -2/+3 |
| | | | | PYTHONHOME is already documented. | ||||
* | #10594: fix parameter names in PyList API docs. | Georg Brandl | 2010-12-01 | 1 | -3/+3 |
| | |||||
* | Make doc for PyErr_Format() up to date. | Antoine Pitrou | 2010-11-27 | 1 | -74/+5 |
| | |||||
* | assert.h is also included. Thanks to Savio Sena. | Georg Brandl | 2010-11-23 | 1 | -2/+2 |
| | |||||
* | #10468: document Unicode exception creation and access functions. | Georg Brandl | 2010-11-23 | 2 | -4/+79 |
| | |||||
* | #10439: document PyCodec C APIs. | Georg Brandl | 2010-11-20 | 2 | -0/+121 |
| | |||||
* | update items/keys/values doc #10300 | Benjamin Peterson | 2010-11-03 | 1 | -6/+4 |
| | |||||
* | Issue #10089: Add support for arbitrary -X options on the command-line. | Antoine Pitrou | 2010-10-21 | 1 | -0/+15 |
| | | | | They can be retrieved through a new attribute `sys._xoptions`. | ||||
* | Be consistent in the spelling of thread-safe(ty). | Georg Brandl | 2010-10-19 | 1 | -1/+1 |
| | |||||
* | make hashes always the size of pointers; introduce Py_hash_t #9778 | Benjamin Peterson | 2010-10-17 | 2 | -6/+11 |
| | |||||
* | #5121: fix claims about default values leading to segfaults. | Georg Brandl | 2010-10-17 | 1 | -10/+10 |
| | |||||
* | #9204: remove mentions of removed types in the types module. | Georg Brandl | 2010-10-17 | 10 | -29/+15 |
| | |||||
* | Fix capitalization. | Georg Brandl | 2010-10-17 | 1 | -2/+2 |
| | |||||
* | #10058: tweak wording about exception returns. | Georg Brandl | 2010-10-17 | 1 | -9/+10 |
| | |||||
* | #6798: fix wrong docs for the arguments to several trace events. | Georg Brandl | 2010-10-15 | 1 | -4/+5 |
| | |||||
* | Use locale encoding if Py_FileSystemDefaultEncoding is not set | Victor Stinner | 2010-10-15 | 1 | -3/+6 |
| | | | | | | | | * PyUnicode_EncodeFSDefault(), PyUnicode_DecodeFSDefaultAndSize() and PyUnicode_DecodeFSDefault() use the locale encoding instead of UTF-8 if Py_FileSystemDefaultEncoding is NULL * redecode_filenames() functions and _Py_code_object_list (issue #9630) are no more needed: remove them | ||||
* | Document that the 'strict' error handler is used to encode/decode filenames on | Victor Stinner | 2010-10-09 | 1 | -6/+13 |
| | | | | Windows | ||||
* | Issue #9738: Document PyErr_SetString() and PyErr_SetFromErrnoWithFilename() | Victor Stinner | 2010-10-09 | 1 | -1/+3 |
| | | | | encodings | ||||
* | PyUnicode_AsWideCharString() takes a PyObject*, not a PyUnicodeObject* | Victor Stinner | 2010-10-07 | 1 | -1/+1 |
| | | | | | All unicode functions uses PyObject* except PyUnicode_AsWideChar(). Fix the prototype for the new function PyUnicode_AsWideCharString(). | ||||
* | Fix spelling and markup. | Georg Brandl | 2010-10-06 | 1 | -10/+10 |
| | |||||
* | Migrate to Sphinx 1.0 C language constructs. | Georg Brandl | 2010-10-06 | 51 | -1818/+1818 |
| | |||||
* | Issue #8870: PyUnicode_AsWideCharString() doesn't count the trailing nul ↵ | Victor Stinner | 2010-10-02 | 1 | -1/+2 |
| | | | | | | character And write unit tests for PyUnicode_AsWideChar() and PyUnicode_AsWideCharString(). | ||||
* | Fix weird markup that caused latex to fail. | Georg Brandl | 2010-10-01 | 1 | -92/+90 |
| | |||||
* | Issue #9979: Create function PyUnicode_AsWideCharString(). | Victor Stinner | 2010-09-29 | 1 | -0/+13 |
| | |||||
* | Give a dedicated page to memoryview objects, so that they can be part | Antoine Pitrou | 2010-09-28 | 3 | -48/+55 |
| | | | | | of the concrete objects layer, while the buffer protocol is part of the abstract objects layer. | ||||
* | Buffers are not sequence objects (!). Put them in the abstract objects layers | Antoine Pitrou | 2010-09-28 | 4 | -24/+22 |
| | | | | instead. | ||||
* | Various improvements to the docs of the buffer API | Antoine Pitrou | 2010-09-28 | 1 | -47/+82 |
| | |||||
* | Discourage use of the old buffer API funcs | Antoine Pitrou | 2010-09-28 | 1 | -1/+16 |
| | |||||
* | Issue #9970: improve C API documentation for memoryview objects | Antoine Pitrou | 2010-09-28 | 1 | -6/+28 |
| | |||||
* | issue 9910 | Kristján Valur Jónsson | 2010-09-27 | 1 | -2/+23 |
| | | | | Add a Py_SetPath api to override magic path computations when starting up python. | ||||
* | note version | Benjamin Peterson | 2010-09-21 | 1 | -0/+2 |
| | |||||
* | #9911: doc copyedits. | Georg Brandl | 2010-09-21 | 2 | -3/+3 |
| | |||||
* | add PyErr_SyntaxLocationEx, to support adding a column offset | Benjamin Peterson | 2010-09-20 | 1 | -0/+14 |
| | |||||
* | Issue #9738: PyUnicode_FromFormat() and PyErr_Format() raise an error on | Victor Stinner | 2010-09-11 | 2 | -2/+2 |
| | | | | | | a non-ASCII byte in the format string. Document also the encoding. | ||||
* | Add versionadded tag to PyUnicode_AsUnicodeCopy's doc | Victor Stinner | 2010-09-03 | 1 | -0/+2 |
| | |||||
* | Doc fix: unicode() is now str() | Daniel Stutzbach | 2010-09-03 | 1 | -1/+1 |
| | |||||
* | Document PyUnicode_AsUnicodeCopy() | Victor Stinner | 2010-09-03 | 1 | -0/+8 |
| | |||||
* | fix old markup | Benjamin Peterson | 2010-08-21 | 1 | -1/+1 |
| | |||||
* | Add versionadded tag to PyModule_GetFilenameObject() doc | Victor Stinner | 2010-08-18 | 1 | -0/+2 |
| | |||||
* | Issue #9425: Create PyModule_GetFilenameObject() function | Victor Stinner | 2010-08-17 | 1 | -2/+13 |
| | | | | | | ... to get the filename as a unicode object, instead of a byte string. Function needed to support unencodable filenames. Deprecate PyModule_GetFilename() in favor on the new function. | ||||
* | Replace :func: by :cfunc: | Victor Stinner | 2010-08-17 | 4 | -12/+12 |
| | | | | To get links to the C functions | ||||
* | Consistency check for versionadded/changed directives. | Georg Brandl | 2010-08-17 | 4 | -9/+13 |
| |