Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Closes #4159: add LaTeX tabular column specifications to tables that ↵ | Georg Brandl | 2013-03-28 | 3 | -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. Smith | 2013-03-22 | 2 | -4/+4 |
|\ | |||||
| * | Clean up references to the no longer existing PyString_ APIs in our docs. | Gregory P. Smith | 2013-03-22 | 2 | -4/+4 |
| | | |||||
* | | Remove row-spanning cell, which the Sphinx text writer does not support. | Georg Brandl | 2013-03-16 | 1 | -1/+1 |
| | | |||||
* | | Merge with 3.2: Issue #17047: removed doubled words in Doc/*, | Terry Jan Reedy | 2013-03-11 | 2 | -3/+3 |
|\ \ | |/ | | | | | Mac/*, and Tool/* found by Serhiy Storchaka and Matthew Barnett | ||||
| * | Issue #17047: removed doubled words in Doc/*, Mac/*, and Tool/* | Terry Jan Reedy | 2013-03-11 | 2 | -3/+3 |
| | | | | | | | | found by Serhiy Storchaka and Matthew Barnett | ||||
| * | Improve str() and object.__str__() documentation (issue #13538). | Chris Jerdonek | 2012-11-21 | 1 | -5/+7 |
| | | |||||
* | | Close #15465: Document C API version macros | Nick Coghlan | 2013-03-07 | 3 | -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 Melotti | 2013-03-06 | 1 | -2/+2 |
| | | |||||
* | | Remove redundant sentence from c-api docs (issue #16323) | Andrew Svetlov | 2012-11-29 | 1 | -4/+1 |
| | | |||||
* | | Issue #16323: Fix wrong C API documentation for locale encoding. | Andrew Svetlov | 2012-11-28 | 1 | -20/+24 |
| | | | | | | | | Patch by Berker Peksag. | ||||
* | | Add a str class entry to the "Text Sequence Type" section (issue #16209). | Chris Jerdonek | 2012-11-28 | 1 | -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 Jerdonek | 2012-11-21 | 1 | -5/+7 |
| | | |||||
* | | Merge: Remove already dropped function PySys_GetFile from documentation. | Andrew Svetlov | 2012-10-31 | 1 | -6/+0 |
|\ \ | |/ | | | | | Thanks to Daniel Müllner from docs@ | ||||
| * | Remove already dropped function PySys_GetFile from documentation. | Andrew Svetlov | 2012-10-31 | 1 | -6/+0 |
| | | | | | | | | Thanks to Daniel Müllner from docs@ | ||||
* | | Merge from 3.2: remove unneeded "Release" and "Date" markers from index pages. | Chris Jerdonek | 2012-10-28 | 1 | -3/+0 |
|\ \ | |/ | |||||
| * | Remove unneeded "Release" and "Date" markers from doc index pages. | Chris Jerdonek | 2012-10-28 | 1 | -3/+0 |
| | | |||||
* | | #16127: remove outdated references to narrow builds. Patch by Serhiy Storchaka. | Ezio Melotti | 2012-10-05 | 1 | -2/+0 |
| | | |||||
* | | Fix rst markup. | Ezio Melotti | 2012-09-20 | 1 | -1/+1 |
| | | |||||
* | | Issue #15444: Use proper spelling for non-ASCII contributor names. | Antoine Pitrou | 2012-08-11 | 1 | -1/+1 |
|\ \ | |/ | | | | | Patch by Serhiy Storchaka. | ||||
| * | Issue #15444: Use proper spelling for non-ASCII contributor names. | Antoine Pitrou | 2012-08-11 | 1 | -1/+1 |
| | | | | | | | | Patch by Serhiy Storchaka. | ||||
* | | Issue #15610: The PyImport_ImportModuleEx macro now calls | Brett Cannon | 2012-08-10 | 1 | -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 functions | Andrew Svetlov | 2012-08-09 | 1 | -3/+3 |
|\ \ | |/ | |||||
| * | fix docs for c-api memory functions | Andrew Svetlov | 2012-08-09 | 1 | -3/+3 |
| | | |||||
* | | Issues #15169, #14599: Make PyImport_ExecCodeModuleWithPathnames() use | Brett Cannon | 2012-07-13 | 1 | -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 in | Brett Cannon | 2012-07-09 | 1 | -1/+4 |
| | | | | | | | | Lib/imp.py. | ||||
* | | Issue #15242: Have PyImport_GetMagicTag() return a const char * | Brett Cannon | 2012-07-09 | 1 | -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 Brandl | 2012-06-24 | 1 | -2/+3 |
| | | |||||
* | | Fix whitespace. | Martin v. Löwis | 2012-06-23 | 1 | -1/+1 |
| | | |||||
* | | Issue #15146: Add PyType_FromSpecWithBases. Patch by Robin Schreiber. | Martin v. Löwis | 2012-06-23 | 1 | -0/+12 |
| | | |||||
* | | Issue #12965: Merge from 3.2. | Mark Dickinson | 2012-06-23 | 1 | -22/+39 |
|\ \ | |/ | |||||
| * | Issue #12965: More PyLong_As* clarifications. Thanks Stefan Krah. | Mark Dickinson | 2012-06-23 | 1 | -22/+39 |
| | | |||||
* | | Issue #12965: Merge from 3.2. | Mark Dickinson | 2012-06-23 | 1 | -18/+23 |
|\ \ | |/ | |||||
| * | Issue #12965: Clean up C-API docs for PyLong_AsLongLong(AndOverflow); ↵ | Mark Dickinson | 2012-06-23 | 1 | -18/+23 |
| | | | | | | | | clarify that __int__ will be called for non-PyLongs | ||||
* | | Issue #12965: Merge from 3.2 | Mark Dickinson | 2012-06-23 | 1 | -13/+16 |
|\ \ | |/ | |||||
| * | Issue #12965: Clean up C-API docs for PyLong_AsLong(AndOverflow); clarify ↵ | Mark Dickinson | 2012-06-23 | 1 | -13/+16 |
| | | | | | | | | that __int__ will be called for non-PyLongs | ||||
* | | Whitespace normalization | Martin v. Löwis | 2012-06-22 | 1 | -2/+2 |
| | | |||||
* | | Add Stable ABI documentation. | Martin v. Löwis | 2012-06-22 | 2 | -0/+40 |
| | | |||||
* | | Issue #15042: Add PyState_AddModule and PyState_RemoveModule. | Martin v. Löwis | 2012-06-22 | 1 | -1/+21 |
| | | | | | | | | | | | | Add version guard for Py_LIMITED_API additions. Issue #15081: Document PyState_FindModule. Patch by Robin Schreiber. | ||||
* | | Issue #14090: fix some minor C API problems in default branch (3.3) | Eli Bendersky | 2012-06-03 | 6 | -15/+9 |
| | | |||||
* | | Issue #14424: Document PyType_GenericAlloc, and fix the documentation of ↵ | Eli Bendersky | 2012-06-03 | 1 | -4/+5 |
| | | | | | | | | PyType_GenericNew | ||||
* | | Issue #9260: A finer-grained import lock. | Antoine Pitrou | 2012-05-17 | 1 | -7/+7 |
| | | | | | | | | | | Most of the import sequence now uses per-module locks rather than the global import lock, eliminating well-known issues with threads and imports. | ||||
* | | PEP 415: Implement suppression of __context__ display with an exception ↵ | Benjamin Peterson | 2012-05-15 | 1 | -7/+1 |
| | | | | | | | | | | | | attribute This replaces the original PEP 409 implementation. See #14133. | ||||
* | | Issue #14705: Add 'p' format character to PyArg_ParseTuple* for bool support. | Larry Hastings | 2012-05-05 | 1 | -0/+9 |
| | | |||||
* | | Fix location of versionaddeds and empty lines. | Georg Brandl | 2012-04-24 | 1 | -3/+6 |
| | | |||||
* | | Issue #14098: New functions PyErr_GetExcInfo and PyErr_SetExcInfo. | Martin v. Löwis | 2012-04-19 | 1 | -0/+35 |
| | | | | | | | | Patch by Stefan Behnel. | ||||
* | | Fix #14600. Correct reference handling and naming of ImportError convenience ↵ | Brian Curtin | 2012-04-17 | 1 | -19/+4 |
| | | | | | | | | function | ||||
* | | Add versionadded tags to newly added ImportError convenience functions. | Brian Curtin | 2012-04-16 | 1 | -0/+5 |
| | | |||||
* | | Add documentation for the new PyErr_SetFromImport* functions | Brian Curtin | 2012-04-16 | 1 | -0/+18 |
| | | |||||
* | | Issue #14386: Expose the dict_proxy internal type as types.MappingProxyType | Victor Stinner | 2012-04-15 | 1 | -4/+4 |
| | |