Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | markup glitch (spotted by George Yoshida) | Fredrik Lundh | 2006-03-01 | 1 | -1/+1 |
| | |||||
* | Document new Py_ssize_t API. | Martin v. Löwis | 2006-03-01 | 1 | -0/+8 |
| | |||||
* | Make documentation match the implementation. | Martin v. Löwis | 2006-03-01 | 1 | -12/+12 |
| | |||||
* | bug #1281408: make Py_BuildValue work with unsigned longs and long longs | Georg Brandl | 2005-11-24 | 1 | -2/+24 |
| | |||||
* | fix typo | Georg Brandl | 2005-09-15 | 1 | -1/+1 |
| | |||||
* | bug [ 1061920 ] "k" specifier in PyArg_ParseTuple incomplete documentated | Georg Brandl | 2005-07-17 | 1 | -2/+2 |
| | |||||
* | Update references specifying "Macintosh" to mean OS X semantics and not Mac OS | Brett Cannon | 2005-02-13 | 1 | -1/+1 |
| | | | | | | 9. Applies patch #1095802. Thanks Jack Jansen. | ||||
* | Spelling fix | Andrew M. Kuchling | 2004-08-10 | 1 | -1/+1 |
| | |||||
* | Typo repair. | Tim Peters | 2004-08-02 | 1 | -1/+1 |
| | |||||
* | Completed a sentence I left dangling. | Tim Peters | 2004-08-02 | 1 | -1/+2 |
| | |||||
* | PyImport_ImportModule, PyImport_ImportModuleEx, PyImport_ExecCodeModule: | Tim Peters | 2004-08-02 | 1 | -10/+28 |
| | | | | | in failure cases, incompletely initalized module objects are no longer left behind in sys.modules. | ||||
* | Add PyArg_VaParseTupleAndKeywords(). Document this function and | Brett Cannon | 2004-07-10 | 1 | -1/+14 |
| | | | | | | PyArg_VaParse(). Closes patch #550732. Thanks Greg Chapman. | ||||
* | Change signatures for arguments to "s" and friends to be the proper ``const | Brett Cannon | 2004-07-01 | 1 | -6/+6 |
| | | | | | | | | char *`` instead of just ``char *``. Also added the mentioning of "const" in some places where it was left out even when the signature already stated the fact. Closes bug #980925. | ||||
* | Patch #923098: Share interned strings in marshal. | Martin v. Löwis | 2004-06-27 | 1 | -3/+14 |
| | |||||
* | Drop claims that Unicode always means UCS-2. Fixes #881861. | Martin v. Löwis | 2004-06-03 | 1 | -6/+6 |
| | |||||
* | Removed 'U' from the documentation for Py_BuildValue to bring it in line | Nicholas Bastin | 2004-05-04 | 1 | -3/+0 |
| | | | | | with the elimination of 'U' in modsupport.c on 2000/04/28 (replaced with 'u' and 'u#' per fdrake's comments). | ||||
* | SF 810242. Fix doubled word errors. | Raymond Hettinger | 2003-09-22 | 1 | -1/+1 |
| | |||||
* | Document the new format codes B, H, I, k, K. | Thomas Heller | 2003-04-23 | 1 | -0/+22 |
| | |||||
* | Rename LONG_LONG to PY_LONG_LONG. Fixes #710285. | Martin v. Löwis | 2003-03-29 | 1 | -1/+1 |
| | |||||
* | Fix SF bug #697256, PyMarshal_WriteShortToFile() documented, but not implemented | Neal Norwitz | 2003-03-06 | 1 | -6/+0 |
| | | | | Remove prototype and doc. Backport candidate. | ||||
* | Clarify that PyImport_AddModule() and PyImport_ExecCodeModule() don't | Fred Drake | 2002-11-13 | 1 | -3/+7 |
| | | | | | | add any package support structure even if a dotted-name is passed for the module. Closes SF bug #424106. | ||||
* | The Py_REF_DEBUG/COUNT_ALLOCS/Py_TRACE_REFS macro minefield: added | Tim Peters | 2002-07-09 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | | | | more trivial lexical helper macros so that uses of these guys expand to nothing at all when they're not enabled. This should help sub- standard compilers that can't do a good job of optimizing away the previous "(void)0" expressions. Py_DECREF: There's only one definition of this now. Yay! That was that last one in the family defined multiple times in an #ifdef maze. Py_FatalError(): Changed the char* signature to const char*. _Py_NegativeRefcount(): New helper function for the Py_REF_DEBUG expansion of Py_DECREF. Calling an external function cuts down on the volume of generated code. The previous inline expansion of abort() didn't work as intended on Windows (the program often kept going, and the error msg scrolled off the screen unseen). _Py_NegativeRefcount calls Py_FatalError instead, which captures our best knowledge of how to abort effectively across platforms. | ||||
* | Fix documentation for PyMarshal_WriteObjectToFile() and | Fred Drake | 2002-06-17 | 1 | -5/+5 |
| | | | | | PyMarshal_WriteObjectToFile(). This closes SF bug #533735. | ||||
* | Move reference material on PyArg_Parse*() out of the Extending & Embedding | Fred Drake | 2002-04-05 | 1 | -9/+404 |
| | | | | | | | | document to the C API reference. Move some instructional text from the API reference to the Extending & Embedding manual. Fix the descriptions of the es and es# formats for PyArg_Parse*(). This closes SF bug #536516. | ||||
* | Documentation for the new PyArg_UnpackTuple() function. | Fred Drake | 2001-10-23 | 1 | -0/+47 |
| | |||||
* | Added documentation for the functions listed in marshal.h. | Fred Drake | 2001-10-14 | 1 | -0/+80 |
| | | | | Prompted by Jim Ahlstrom. This closes SF patch #470614. | ||||
* | Break the Python/C API manual into smaller files by chapter. This manual | Fred Drake | 2001-10-12 | 1 | -0/+320 |
has grown beyond what font-lock will work with using the default (X)Emacs settings. Indentation of the description has been made consistent, and a number of smaller markup adjustments have been made as well. |