Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Include the new text on reporting bugs in a few useful places. | Fred Drake | 2000-09-21 | 1 | -0/+5 |
| | | | | This closes SourceForge bug #114792. | ||||
* | Special case the "s#" PyArg_Parse() token for Unicode objects: | Marc-André Lemburg | 2000-09-21 | 1 | -4/+4 |
| | | | | | | | | "s#" will now return a pointer to the default encoded string data of the Unicode object instead of a pointer to the raw UTF-16 data. The latter is still available via PyObject_AsReadBuffer(). | ||||
* | Add a brief section on linking Python as an embedded scripting language. | Fred Drake | 2000-09-08 | 1 | -0/+37 |
| | | | | This closes SourceForge bug #110833. | ||||
* | Markup errors: \cfuntion -> \cfunction | Fred Drake | 2000-08-11 | 1 | -3/+3 |
| | |||||
* | Added descriptions of the new parser markers for PyArg_ParseTuple(). | Marc-André Lemburg | 2000-08-03 | 1 | -16/+77 |
| | |||||
* | needs a space | Greg Stein | 2000-07-09 | 1 | -1/+1 |
| | |||||
* | Remove the only Py_PROTO in the docs. | Fred Drake | 2000-07-09 | 1 | -1/+1 |
| | |||||
* | Small grammatical correction from Frank Stajano. Added comment with | Fred Drake | 2000-06-30 | 1 | -2/+9 |
| | | | | suggestion from Frank for an example and further explanation. | ||||
* | Enhanced memory-reference information in the description of Py_BuildValue(), | Fred Drake | 2000-06-28 | 1 | -1/+5 |
| | | | | based on response from Frank Stajano <fstajano@uk.research.att.com>. | ||||
* | Added memory-reference information to the description of Py_BuildValue(), | Fred Drake | 2000-06-28 | 1 | -1/+6 |
| | | | | based on comments from Frank Stajano <fstajano@uk.research.att.com>. | ||||
* | Oops, better also note that the module initialization function must be | Fred Drake | 2000-05-10 | 1 | -0/+2 |
| | | | | extern "C" for C++. | ||||
* | Section "The Module's Method Table and Initialization Function": | Fred Drake | 2000-05-10 | 1 | -7/+10 |
| | | | | | | Explain that the name of the initialization function must be init<module>(). Omission noted by Daniel Kozan <crum@dev-group.com>. | ||||
* | Brian Hooper <brian_takashi@hotmail.com>: | Fred Drake | 2000-05-03 | 1 | -0/+28 |
| | | | | | | | Added 'u' and 'u#' tags for PyArg_ParseTuple - these turn a PyUnicodeObject argument into a Py_UNICODE * buffer, or a Py_UNICODE * buffer plus a length with the '#'. Also added an analog to 'U' for Py_BuildValue. | ||||
* | Documentation patch describing the 'u' and 'u#' format specifiers, | Fred Drake | 2000-04-28 | 1 | -0/+10 |
| | | | | from Brian Hooper <brian_takashi@hotmail.com>. | ||||
* | Merge in changes from the 1.5.2p2 release. | Fred Drake | 2000-04-03 | 1 | -24/+65 |
| | |||||
* | Use \citetitle in several places, and \programopt where appropriate. | Fred Drake | 1999-11-10 | 1 | -20/+23 |
| | |||||
* | Added descriptions of the t#, w, and w# PyArg_ParseTuple() format | Fred Drake | 1999-08-27 | 1 | -0/+21 |
| | | | | characters; these are the ones for the buffer interface. | ||||
* | Minor markup nit. | Fred Drake | 1999-07-02 | 1 | -1/+1 |
| | |||||
* | Added paragraph about potential re-initialization of extension | Fred Drake | 1999-06-18 | 1 | -0/+7 |
| | | | | | modules; responding to suggestion by Robin Boerdijk <Robin.Boerdijk@nl.origin-it.com>. | ||||
* | Always use "section" when referring to sections of a document, not "Section". | Fred Drake | 1999-04-29 | 1 | -3/+3 |
| | |||||
* | Clarify that the Modules/ directory is in an unpacked source | Fred Drake | 1999-04-29 | 1 | -3/+3 |
| | | | | distribution; this is not clear for Windows users. | ||||
* | Update starship URLs. | Fred Drake | 1999-04-29 | 1 | -1/+1 |
| | |||||
* | Fixed latex2html weirdness for a footnote. | Fred Drake | 1999-04-05 | 1 | -2/+2 |
| | |||||
* | Fix a number of typos and small grammatical nits pointed out by Detlef | Fred Drake | 1999-03-09 | 1 | -9/+13 |
| | | | | | | | | Lannert <lannert@lannert.rz.uni-duesseldorf.de>. Added a comment explaining the cast in the method table for the keyword arguments sample code, in response to another comment by Detlef. | ||||
* | Added note about *static* after description of *shared*. | Fred Drake | 1999-02-22 | 1 | -1/+3 |
| | |||||
* | Removed "This will be discussed later." where it's not. Reported by | Fred Drake | 1999-02-22 | 1 | -4/+4 |
| | | | | Clay Spence <cspence@sarnoff.com>; see entry in ../TODO. | ||||
* | Update note about the (...) format specifier for PyArg_ParseTuple(). | Fred Drake | 1999-02-18 | 1 | -4/+10 |
| | |||||
* | Small updates and grammatical adjustments. | Fred Drake | 1999-02-17 | 1 | -24/+28 |
| | | | | Remove comment about this manual being out of date from the abstract. | ||||
* | Removed old dynamic linking chapter. | Fred Drake | 1999-02-16 | 1 | -213/+148 |
| | | | | | | Integrated information on Windows DLLs from Chris Phoenix (Thanks!). Added "Acknowledgements" area to thank contributing authors. | ||||
* | Integrated notes on building extension modules on Windows, by Neil | Fred Drake | 1999-02-16 | 1 | -1/+50 |
| | | | | | | Schemenauer <neil_schemenauer@transcanada.com>. Thanks, Neil! | ||||
* | Small grammatical fix; missing comma. | Fred Drake | 1999-02-16 | 1 | -1/+1 |
| | |||||
* | Make it clear that Demo/embed/ is from the source distribution. | Fred Drake | 1999-02-16 | 1 | -1/+1 |
| | |||||
* | Added section "Providing a C API for an Extension Module" by Konrad | Fred Drake | 1999-02-15 | 1 | -90/+311 |
| | | | | | | Hinsen. "\C{}" --> "C" | ||||
* | Minor nit to prevent dropping a space in the HTML generation. | Fred Drake | 1999-02-05 | 1 | -2/+2 |
| | |||||
* | Document 'N' format character for Py_BuildValue -- like 'O' but doesn't INCREF. | Guido van Rossum | 1998-12-23 | 1 | -1/+6 |
| | |||||
* | Ignore the byproducts of SGML/XML conversions for now. | Fred Drake | 1998-12-01 | 1 | -0/+3 |
| | |||||
* | Rationalize a word-space markup to not break in the LaTeX->*ML | Fred Drake | 1998-11-24 | 1 | -2/+173 |
| | | | | | | | | | conversion tools currently being constructed. Add a chapter from Jim Fulton on using Misc/Makefile.pre.in. Still preliminary. The "Dynamic Loading" chapter needs to be updated (and possibly removed, since it's no longer an issue for most (any?) users. | ||||
* | Update the example in "Calling Python Functions from C" to use | Fred Drake | 1998-11-16 | 1 | -61/+80 |
| | | | | | | | METH_VARARGS conventions and PyArg_ParseTuple(), and document the flag and where to look for PyArg_ParseTuple() info. Response to comment from Don Bashford <bashford@scripps.edu>. | ||||
* | Update to use a separate page for front matter. | Fred Drake | 1998-07-28 | 1 | -0/+4 |
| | |||||
* | "ZeroDevisionError" --> "ZeroDivisionError" | Fred Drake | 1998-04-13 | 1 | -1/+1 |
| | | | | Thanks, AMK! | ||||
* | Change \sectcode to logical markup. | Fred Drake | 1998-04-04 | 1 | -3/+3 |
| | |||||
* | Hyphenate "built-in" for consistency. | Fred Drake | 1998-04-02 | 1 | -1/+1 |
| | |||||
* | Minor markup nits. | Fred Drake | 1998-04-02 | 1 | -10/+12 |
| | |||||
* | Markup consistency nits. | Fred Drake | 1998-04-02 | 1 | -24/+30 |
| | | | | | | | | | Fix indentation in code sample in PyArg_ParseTuple() section. Added one index entry. Fix include file reference in "Shared Libraries" to print <...> instead of the upside-down versions of ! and ?. | ||||
* | Revert the index stuff to work better with LaTeX2HTML. | Fred Drake | 1998-03-17 | 1 | -1/+1 |
| | |||||
* | Adjust the index inclusion for the new index support. | Fred Drake | 1998-03-09 | 1 | -3/+1 |
| | |||||
* | Remove unnecessary blank line in long code sample. | Fred Drake | 1998-03-07 | 1 | -3/+2 |
| | | | | Remove a confusing article. | ||||
* | Simplify some of the escaping around ']' in \item[...] markup in light of | Fred Drake | 1998-03-04 | 1 | -4/+4 |
| | | | | a fix to LaTeX2HTML from Ross Moore. Yeah! | ||||
* | Convert LaTeX support to create a new class of documents. HTML generation | Fred Drake | 1998-03-03 | 1 | -2/+1 |
| | | | | | | | | now requires LaTeX2HTML 98.1p1 or newer (& and is still in progress). This means that doing things to change the formatting of the manuals (at the "normal user" level, like A4 paper), can happen in just one place, rather than in each document file. | ||||
* | Fix typo. | Fred Drake | 1998-03-03 | 1 | -1/+1 |
| |