summaryrefslogtreecommitdiffstats
path: root/Doc/c-api
Commit message (Collapse)AuthorAgeFilesLines
* Introduce support for documenting which C API elements are not part of the ↵Georg Brandl2013-10-122-30/+27
| | | | stable/limited API.
* Closes #13833: document PyStructSequence C-API functions.Georg Brandl2013-10-121-0/+100
|
* Issue #19005: Fix documentation for PyIter_Next().Raymond Hettinger2013-10-101-6/+5
|
* Issue 19195: Improved cross-references in C API documentation.Serhiy Storchaka2013-10-097-27/+28
|
* Add a "skull and crossbones" to Py_AddPendingCall.Antoine Pitrou2013-09-301-25/+30
|
* Issue #18743: Fix references to non-existant "StringIO" module.Serhiy Storchaka2013-08-161-1/+1
|
* Issue #18668: Further clarify m_size setting for non-negative valuesEli Bendersky2013-08-101-4/+4
|
* Fix a typo in PyUnicode_CopyCharacters() documentation.Serhiy Storchaka2013-08-081-1/+1
|
* Issue #18668: Properly document setting m_size in PyModuleDefEli Bendersky2013-08-071-4/+10
|
* Issue #18589: fix hyperlinking of type slots (tp_*)Antoine Pitrou2013-08-015-137/+137
|
* #16518: use "bytes-like object" throughout the docs.Ezio Melotti2013-05-042-8/+7
|
* Closes #13638: document PyErr_SetFromErrnoWithFilenameObject,Georg Brandl2013-04-141-11/+29
| | | | | | | PyErr_SetFromWindowsErrWithFilenameObject, and PyErr_SetExcFromWindowsErrWithFilenameObject. Note that PyErr_SetExcFromWindowsErrWithFilenameObjectAndSomeOtherParametersSoThatTheNameGetsSoLongThatNobodyIsEverGonnaUseThisStrangeFunctionForAnything is still undocumented.
* Closes #4159: add LaTeX tabular column specifications to tables that ↵Georg Brandl2013-03-283-1/+8
| | | | otherwise are cut off or have overlapping text.
* cleanup references to PyString_ APIs from 2.x in the 3.3 docs.Gregory P. Smith2013-03-222-4/+4
|\
| * Clean up references to the no longer existing PyString_ APIs in our docs.Gregory P. Smith2013-03-222-4/+4
| |
* | Remove row-spanning cell, which the Sphinx text writer does not support.Georg Brandl2013-03-161-1/+1
| |
* | Merge with 3.2: Issue #17047: removed doubled words in Doc/*,Terry Jan Reedy2013-03-112-3/+3
|\ \ | |/ | | | | Mac/*, and Tool/* found by Serhiy Storchaka and Matthew Barnett
| * Issue #17047: removed doubled words in Doc/*, Mac/*, and Tool/*Terry Jan Reedy2013-03-112-3/+3
| | | | | | | | found by Serhiy Storchaka and Matthew Barnett
| * Improve str() and object.__str__() documentation (issue #13538).Chris Jerdonek2012-11-211-5/+7
| |
* | Close #15465: Document C API version macrosNick Coghlan2013-03-073-9/+51
| | | | | | | | | | | | | | Mostly moving the existing macro docs over from the standard library docs to the C API docs where they belong. Patch by Kushal Das.
* | #17363: fix arguments in PyState_AddModule and PyState_RemoveModule docs.Ezio Melotti2013-03-061-2/+2
| |
* | Remove redundant sentence from c-api docs (issue #16323)Andrew Svetlov2012-11-291-4/+1
| |
* | Issue #16323: Fix wrong C API documentation for locale encoding.Andrew Svetlov2012-11-281-20/+24
| | | | | | | | Patch by Berker Peksag.
* | Add a str class entry to the "Text Sequence Type" section (issue #16209).Chris Jerdonek2012-11-281-2/+2
| | | | | | | | | | | | This commit also moves the documentation for the str built-in function to the new class entry. Links to :class:`str` now go to the class entry with the string methods immediately afterwards.
* | Improve str() and object.__str__() documentation (issue #13538).Chris Jerdonek2012-11-211-5/+7
| |
* | Merge: Remove already dropped function PySys_GetFile from documentation.Andrew Svetlov2012-10-311-6/+0
|\ \ | |/ | | | | Thanks to Daniel Müllner from docs@
| * Remove already dropped function PySys_GetFile from documentation.Andrew Svetlov2012-10-311-6/+0
| | | | | | | | Thanks to Daniel Müllner from docs@
* | Merge from 3.2: remove unneeded "Release" and "Date" markers from index pages.Chris Jerdonek2012-10-281-3/+0
|\ \ | |/
| * Remove unneeded "Release" and "Date" markers from doc index pages.Chris Jerdonek2012-10-281-3/+0
| |
* | #16127: remove outdated references to narrow builds. Patch by Serhiy Storchaka.Ezio Melotti2012-10-051-2/+0
| |
* | Fix rst markup.Ezio Melotti2012-09-201-1/+1
| |
* | Issue #15444: Use proper spelling for non-ASCII contributor names.Antoine Pitrou2012-08-111-1/+1
|\ \ | |/ | | | | Patch by Serhiy Storchaka.
| * Issue #15444: Use proper spelling for non-ASCII contributor names.Antoine Pitrou2012-08-111-1/+1
| | | | | | | | Patch by Serhiy Storchaka.
* | Issue #15610: The PyImport_ImportModuleEx macro now callsBrett Cannon2012-08-101-2/+4
| | | | | | | | | | | | | | | | | | PyImport_ImportModuleLevel() with a 'level' of 0 instead of -1 as the latter is no longer a valid value. Also added a versionchanged note for PyImport_ImportModuleLevel() just in case people don't make the connection between changes to __import__() and this C function.
* | fix docs for c-api memory functionsAndrew Svetlov2012-08-091-3/+3
|\ \ | |/
| * fix docs for c-api memory functionsAndrew Svetlov2012-08-091-3/+3
| |
* | Issues #15169, #14599: Make PyImport_ExecCodeModuleWithPathnames() useBrett Cannon2012-07-131-1/+6
| | | | | | | | | | | | | | | | | | | | | | | | Lib/imp.py for imp.source_from_cache() instead of its own C version. Also change PyImport_ExecCodeModuleObject() to not infer the source path from the bytecode path like PyImport_ExecCodeModuleWithPathnames() does. This makes the function less magical. This also has the side-effect of removing all uses of MAXPATHLEN in Python/import.c which can cause failures on really long filenames.
* | Issue #15167 (as part of #13959): imp.get_magic() is no implemented inBrett Cannon2012-07-091-1/+4
| | | | | | | | Lib/imp.py.
* | Issue #15242: Have PyImport_GetMagicTag() return a const char *Brett Cannon2012-07-091-1/+2
| | | | | | | | | | | | | | defined in sysmodule.c instead of straight out of a Unicode object. Thanks to Amaury Forgeot d'Arc for noticing the bug and Eric Snow for writing the patch.
* | Fix a couple of versionadded/versionchanged related markup errors.Georg Brandl2012-06-241-2/+3
| |
* | Fix whitespace.Martin v. Löwis2012-06-231-1/+1
| |
* | Issue #15146: Add PyType_FromSpecWithBases. Patch by Robin Schreiber.Martin v. Löwis2012-06-231-0/+12
| |
* | Issue #12965: Merge from 3.2.Mark Dickinson2012-06-231-22/+39
|\ \ | |/
| * Issue #12965: More PyLong_As* clarifications. Thanks Stefan Krah.Mark Dickinson2012-06-231-22/+39
| |
* | Issue #12965: Merge from 3.2.Mark Dickinson2012-06-231-18/+23
|\ \ | |/
| * Issue #12965: Clean up C-API docs for PyLong_AsLongLong(AndOverflow); ↵Mark Dickinson2012-06-231-18/+23
| | | | | | | | clarify that __int__ will be called for non-PyLongs
* | Issue #12965: Merge from 3.2Mark Dickinson2012-06-231-13/+16
|\ \ | |/
| * Issue #12965: Clean up C-API docs for PyLong_AsLong(AndOverflow); clarify ↵Mark Dickinson2012-06-231-13/+16
| | | | | | | | that __int__ will be called for non-PyLongs
* | Whitespace normalizationMartin v. Löwis2012-06-221-2/+2
| |
* | Add Stable ABI documentation.Martin v. Löwis2012-06-222-0/+40
| |