- beb4135b PyUnicode_AsWideCharString() takes a PyObject*, not a PyUnicodeObject* by Victor Stinner · 15 years ago
- fa4f7f9 Fix spelling and markup. by Georg Brandl · 15 years ago
- 60203b4 Migrate to Sphinx 1.0 C language constructs. by Georg Brandl · 15 years ago
- 1c24bd0 Issue #8870: PyUnicode_AsWideCharString() doesn't count the trailing nul character by Victor Stinner · 15 years ago
- d0ffa4c Fix weird markup that caused latex to fail. by Georg Brandl · 15 years ago
- 137c34c Issue #9979: Create function PyUnicode_AsWideCharString(). by Victor Stinner · 15 years ago
- c663b58 Give a dedicated page to memoryview objects, so that they can be part by Antoine Pitrou · 15 years ago
- f7ba2fa Buffers are not sequence objects (!). Put them in the abstract objects layers by Antoine Pitrou · 15 years ago
- 99a00a4 Various improvements to the docs of the buffer API by Antoine Pitrou · 15 years ago
- a0b6873 Discourage use of the old buffer API funcs by Antoine Pitrou · 15 years ago
- 826903e Issue #9970: improve C API documentation for memoryview objects by Antoine Pitrou · 15 years ago
- 3b69db2 issue 9910 by Kristján Valur Jónsson · 15 years ago
- b5d23b4 note version by Benjamin Peterson · 15 years ago
- 6faee4e #9911: doc copyedits. by Georg Brandl · 15 years ago
- 2c53971 add PyErr_SyntaxLocationEx, to support adding a column offset by Benjamin Peterson · 15 years ago
- 1205f27 Issue #9738: PyUnicode_FromFormat() and PyErr_Format() raise an error on by Victor Stinner · 15 years ago
- 2b19f35 Add versionadded tag to PyUnicode_AsUnicodeCopy's doc by Victor Stinner · 15 years ago
- 98c07bd Doc fix: unicode() is now str() by Daniel Stutzbach · 15 years ago
- e4ea994 Document PyUnicode_AsUnicodeCopy() by Victor Stinner · 15 years ago
- 3cabbeb fix old markup by Benjamin Peterson · 15 years ago
- c14190d Add versionadded tag to PyModule_GetFilenameObject() doc by Victor Stinner · 15 years ago
- 6c00c14 Issue #9425: Create PyModule_GetFilenameObject() function by Victor Stinner · 15 years ago
- 6009ece Replace :func: by :cfunc: by Victor Stinner · 15 years ago
- 67b21b7 Consistency check for versionadded/changed directives. by Georg Brandl · 15 years ago
- ad5b1df Add versionadded tag to PySys_FormatStd*() functions doc by Victor Stinner · 15 years ago
- 7976663 Issue #9599: Create PySys_FormatStdout() and PySys_FormatStderr() by Victor Stinner · 15 years ago
- 47fcb5b Issue #9542: Create PyUnicode_FSDecoder() function by Victor Stinner · 15 years ago
- 4d22409 Fix copy-paste error. by Georg Brandl · 15 years ago
- 4a2b7a1 Issue #9425: Create PyErr_WarnFormat() function by Victor Stinner · 15 years ago
- 3603cc5 Issue #9425: PyFile_FromFd() ignores the name argument by Victor Stinner · 15 years ago
- 7cb1319 Terminology fix: exceptions are raised, except in generator.throw(). by Georg Brandl · 15 years ago
- 8477f82 #8648: document UTF-7 codec functions. by Georg Brandl · 15 years ago
- 502c3eb #8578: mention danger of not incref'ing weak referenced object. by Georg Brandl · 15 years ago
- 6f93419 #9381: fix markup. by Georg Brandl · 15 years ago
- 1f1ccc0 #9158: Fix y* format of PyArg_Parse*() functions documentation by Victor Stinner · 15 years ago
- d7c3ed5 Merged revisions 80605-80609,80642-80646,80651-80652,80674,80684-80686,80748,80852,80854,80870,80872-80873,80907,80915-80916,80951-80952,80976-80977,80985,81038-81040,81042,81053,81070,81104-81105,81114,81125,81245,81285,81402,81463,81516,81562-81563,81567,81593,81635,81680-81681,81684,81801,81888,81931-81933,81939-81942,81963,81984,81991,82120,82188,82264-82267 via svnmerge from by Benjamin Peterson · 15 years ago
- 2ebf8ce Merged revisions 81881-81882 via svnmerge from by Benjamin Peterson · 15 years ago
- 3a23c9e Issue #9089: PyNumber_Int is no more. Remove it from the docs. by Mark Dickinson · 15 years ago
- 952867a #9078: fix some Unicode C API descriptions, in comments and docs. by Georg Brandl · 15 years ago
- 1341f57 Merged revisions 82251 via svnmerge from by Alexander Belopolsky · 15 years ago
- 56303e0 Merged revisions 82236 via svnmerge from by Alexander Belopolsky · 15 years ago
- 25e8ec4 Issue #8850: Remove "w" and "w#" formats from PyArg_Parse*() functions, use by Victor Stinner · 15 years ago
- 2aa3af4 Issue #8939: Improve arg.rst by Victor Stinner · 15 years ago
- 0460288 Further refinements to the C file API. by Antoine Pitrou · 15 years ago
- 5d8a6c8 Fixes to the PyFile_FromFd() doc, by Renato Cunha. by Antoine Pitrou · 15 years ago
- 06e49dd Issue #8592: PyArg_Parse*() functions raise a TypeError for "y", "u" and "Z" by Victor Stinner · 15 years ago
- 7909b00 Fix some bugs in c-api/arg.rst documentation by Victor Stinner · 15 years ago
- 3dcb5ac Issue #8838, #8339: Remove codecs.charbuffer_encode() and "t#" parsing format by Victor Stinner · 15 years ago
- 1fbd36b Fix #8946. Extra PyObject* parameter documented which doesn't exist. by Brian Curtin · 15 years ago
- 69e25fa Issue #8925: fix types of Py_Parse*() and Py_BuildValue() functions by Victor Stinner · 15 years ago
- 7eeb5b5 Issue #8848: U / U# formats of Py_BuildValue() are just alias to s / s# by Victor Stinner · 15 years ago
- f978fac Merged revisions 81398 via svnmerge from by Antoine Pitrou · 15 years ago
- 9ca9c25 Issue #8589: Decode PYTHONWARNINGS environment variable with the file system by Victor Stinner · 15 years ago
- b432451 fix run-on sentence by Benjamin Peterson · 15 years ago
- ae6265f Issue #8715: Create PyUnicode_EncodeFSDefault() function: Encode a Unicode by Victor Stinner · 15 years ago
- 77c3862 Issue #8711: Document PyUnicode_DecodeFSDefault*() functions by Victor Stinner · 15 years ago
- f9a4442 Merged revisions 81145 via svnmerge from by Benjamin Peterson · 15 years ago
- 83fd9b9 Issue #8593: Fix, reorder and improve the documentation for argument parsing by Antoine Pitrou · 15 years ago
- 44d3d78 add versionadded by Benjamin Peterson · 15 years ago
- fb88636 prevent the dict constructor from accepting non-string keyword args #8419 by Benjamin Peterson · 15 years ago
- 28a691b PEP 3147 by Barry Warsaw · 15 years ago
- 08bf91c Merged revisions 79307,79408,79430,79533,79542,79579-79580,79585-79587,79607-79608,79622,79717,79820,79822,79828,79862,79875,79923-79924,79941-79943,79945,79947,79951-79952 via svnmerge from by Benjamin Peterson · 15 years ago
- 93dc9eb Merged revisions 78760,78771-78773,78802,78922,78952 via svnmerge from by Georg Brandl · 15 years ago
- ef871f6 Merged revisions 78859-78860 via svnmerge from by Georg Brandl · 15 years ago
- 68af50b Issue #5988: Delete deprecated functions PyOS_ascii_formatd, PyOS_ascii_strtod, and PyOS_ascii_atof. by Eric Smith · 15 years ago
- ea30c6f Merged revisions 77850-77851 via svnmerge from by Ezio Melotti · 16 years ago
- 93f562c Merged revisions 77842 via svnmerge from by Mark Dickinson · 16 years ago
- 46a9900 Merged revisions 77209,77229,77359-77360,77371 via svnmerge from by Benjamin Peterson · 16 years ago
- 479def3 Merged revisions 77271 via svnmerge from by Ezio Melotti · 16 years ago
- 2952148 Merged revisions 77242 via svnmerge from by Gregory P. Smith · 16 years ago
- eb6f8de Issue #6687: Moved the special-case for integers out of PyBytes_FromObject. by Alexandre Vassalotti · 16 years ago
- d12362a Merged revisions 77157 via svnmerge from by Benjamin Peterson · 16 years ago
- 1e28a27 Merged revisions 77088 via svnmerge from by Georg Brandl · 16 years ago
- 8668c22 Merged revisions 77081 via svnmerge from by Georg Brandl · 16 years ago
- 27277d9 #7577: fix signature info for getbufferproc. by Georg Brandl · 16 years ago
- 309aa2d Keep PyLong_AsLongAndOverflow documentation and implementation in sync by Mark Dickinson · 16 years ago
- 0639d5a Merged revisions 76904 via svnmerge from by Ezio Melotti · 16 years ago
- 4d345ce #7521: remove PyEval_GetRestricted() from the docs. by Georg Brandl · 16 years ago
- 6d7f6f7 Merged revisions 76883 via svnmerge from by Georg Brandl · 16 years ago
- 6ce4a9a Merged revisions 76308 via svnmerge from by Mark Dickinson · 16 years ago
- 12b2cf3 Fix ReST markup. by Mark Dickinson · 16 years ago
- 0df35a9 Merged revisions 74841 via svnmerge from by Benjamin Peterson · 16 years ago
- 4ac9ce4 Merged revisions 74779-74786,74793,74795,74811,74860-74861,74863,74876,74886,74896,74901,74903,74908,74912,74930,74933,74943,74946,74952-74955,75015,75019,75032,75068,75076,75095,75098,75102,75129,75139,75230 via svnmerge from by Benjamin Peterson · 16 years ago
- bb43a05 Merged revisions 74958 via svnmerge from by Ezio Melotti · 16 years ago
- 2ded55f Py_(Set|Get)PythonHome use wchar_t #6913 by Benjamin Peterson · 16 years ago
- 8f7649e more list()s on dictviews by Ezio Melotti · 16 years ago
- 11b6a64 #6754: remove old struct member nb_inplace_divide. by Georg Brandl · 16 years ago
- 0f46ffd the old buffer object doesn't exist in Python 3 #6659 by Benjamin Peterson · 16 years ago
- 1b5ab45 Merged revisions 74328,74332-74333,74365 via svnmerge from by Georg Brandl · 16 years ago
- 6d3dfc3 Merged revisions 74074,74077,74111,74188,74192-74193,74200,74252-74253,74258-74261 via svnmerge from by Alexandre Vassalotti · 16 years ago
- 22b3431 Merged revisions 74209 via svnmerge from by Georg Brandl · 16 years ago
- 7b82b40 Merged revisions 72487-72488,72879 via svnmerge from by Alexandre Vassalotti · 16 years ago
- 711ed4a Merged revisions 73930-73932,73937-73939,73945,73951,73954,73962-73963,73970 via svnmerge from by Alexandre Vassalotti · 16 years ago
- 21dc5ba #6421: The self argument of module-level PyCFunctions is now a reference to the module object. by Georg Brandl · 16 years ago
- fae45ed remove cobject reference by Benjamin Peterson · 16 years ago
- f1664ae remove PyCObject by Benjamin Peterson · 16 years ago
- c6c3178 Merged revisions 73190,73213,73257-73258,73260,73275,73294 via svnmerge from by Georg Brandl · 16 years ago
- fa0d703 Merged revisions 72506,72525-72526,72551,72558,72616,72654-72655,72689,72745,72750,72802,72812,72822,72824,72826-72827,72833,72876,72890,72923,72946,73026,73042,73045,73047,73065,73068-73069 via svnmerge from by Benjamin Peterson · 16 years ago
- c15bdef Issue #6012: Add cleanup support to O& argument parsing. by Martin v. Löwis · 16 years ago
- 7d5285e #6115: remove entries for the already removed PyNumber_Divide and PyNumber_InPlaceDivide from the header and the docs. by Georg Brandl · 16 years ago