Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Doc patch from Bastein Kleineidam: start to describe the 'install' command | Gregory P. Smith | 2000-05-12 | 1 | -0/+16 |
| | | | | family, including the new 'install_scripts' and 'install_data' commands. | ||||
* | The addition of rint() (by Peter Schneider-Kamp; I forgot to mention | Guido van Rossum | 2000-05-11 | 1 | -0/+1 |
| | | | | | | that before) in the previous patch has one problem; rint() is not in the C math library on all platforms (e.g. not for VC++). Make it conditional on HAVE_RINT. | ||||
* | Added math.rint() -- round according to current IEEE754 mode | Guido van Rossum | 2000-05-11 | 1 | -0/+4 |
| | |||||
* | 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>. | ||||
* | Fix references to the built-in compile() that don't include the | Fred Drake | 2000-05-09 | 1 | -10/+10 |
| | | | | filename parameter. Noted by Randall Hopper <aa8vb@yahoo.com>. | ||||
* | Skip Montanaro <skip@mojam.com>: | Fred Drake | 2000-05-09 | 1 | -3/+8 |
| | | | | | | | | | The intent is that this diff adds a link to the rfc822 module doc and an index reference to this module under the rfc822 heading. Fred, based on a suggestion from Grant Griffin <grant.griffin@honeywell.com>: Added link to the MIME FAQ, so people can more easily get more information about the subject of the module. | ||||
* | Define \seeurl in the seealso environment. Two parameters: url, why. | Fred Drake | 2000-05-09 | 1 | -0/+9 |
| | |||||
* | do_cmd_seeurl(): New function. | Fred Drake | 2000-05-09 | 1 | -0/+11 |
| | |||||
* | read() method: clarify that strings are accepted and interpreted | Fred Drake | 2000-05-09 | 1 | -1/+9 |
| | | | | | | reasonably. readfp() method: added documentation. | ||||
* | Someone found the examples of poor practice on socket addresses! | Fred Drake | 2000-05-03 | 1 | -3/+3 |
| | | | | Spotted by Greg Kochanski <gpk@bell-labs.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. | ||||
* | Clarify status of connection of a new instance; it *is* connected if | Fred Drake | 2000-05-03 | 1 | -3/+5 |
| | | | | | you pass server information to the constructor. Error noted by Pedro Diaz Jimenez <diazjimenez@ctv.es>. | ||||
* | Added descriptions of \versionadded and \versionchanged. | Fred Drake | 2000-05-02 | 1 | -0/+20 |
| | |||||
* | do_cmd_versionchanged(): | Fred Drake | 2000-05-02 | 1 | -1/+6 |
| | | | | | Added support for optional parameter explaining the change that was made in the specified version. | ||||
* | Use \versionchanged to indicate when the second parameter to utime() | Fred Drake | 2000-05-02 | 1 | -2/+3 |
| | | | | was allowed to be None. | ||||
* | \versionchanged: Added optional parameter for explanation of change. | Fred Drake | 2000-05-02 | 1 | -2/+8 |
| | |||||
* | Eric Raymond: | Guido van Rossum | 2000-05-01 | 1 | -2/+64 |
| | | | | | | | | | | | (1) Added and documented the capability for shlex to handle lexical-level inclusion and a stack of input sources. Also, the input stream member is now documented, and the constructor takes an optional source-filename. The class provides facilities to generate error messages that track file and line number. (2) Add a convenience function to generate C-compiler style error leaders. | ||||
* | Document the new additional signature for utime(). In addition to the | Barry Warsaw | 2000-05-01 | 1 | -3/+6 |
| | | | | | previous functionality utime(path, (atime, mtime)), now allowed is utime(path, None) which sets the file's times to the current time. | ||||
* | \file and \filenq should not be used in section titles; they are not | Fred Drake | 2000-04-28 | 1 | -1/+1 |
| | | | | | sufficiently robust to survive the creation of bookmarks in the PDF format. | ||||
* | Don't worry about the output dirs for the distutils manuals. | Fred Drake | 2000-04-28 | 1 | -0/+2 |
| | |||||
* | Added distutils manuals. | Fred Drake | 2000-04-28 | 1 | -22/+31 |
| | | | | Made the attributes more XHTML-friendly. | ||||
* | Stripped leading 'sec:' from all section labels -- generates bad filenames, | Greg Ward | 2000-04-28 | 2 | -57/+57 |
| | | | | bad link URLs in HTML, etc. | ||||
* | When building HTML releases, refer to */*.css and */*.html instead of | Greg Ward | 2000-04-28 | 1 | -3/+3 |
| | | | | ???/*.css and ???/*.html -- need to pick up the Distutils manuals! | ||||
* | Added the Distutils manuals. | Greg Ward | 2000-04-28 | 1 | -0/+2 |
| | |||||
* | Added the Distutils manuals: inst and dist. | Greg Ward | 2000-04-28 | 1 | -3/+17 |
| | |||||
* | Added 'inst' and 'dist' -- the two Distutils manuals. | Greg Ward | 2000-04-28 | 4 | -4/+50 |
| | |||||
* | Documentation patch describing the 'u' and 'u#' format specifiers, | Fred Drake | 2000-04-28 | 1 | -0/+10 |
| | | | | from Brian Hooper <brian_takashi@hotmail.com>. | ||||
* | Support for the special macros used by the distutils documentation. | Fred Drake | 2000-04-27 | 1 | -0/+21 |
| | |||||
* | Added a note to the section on 'exec' about the need for a trailing newline | Greg Ward | 2000-04-27 | 1 | -1/+10 |
| | | | | in certain circumstances. (Apparently, this is a CPython problem.) | ||||
* | Added a "See also:" section that exhibits the \seerfc markup. | Fred Drake | 2000-04-26 | 1 | -0/+7 |
| | |||||
* | Define \seerfc within the seealso environment. | Fred Drake | 2000-04-26 | 1 | -0/+9 |
| | |||||
* | ref_module_index_helper(): Use "my" instead of "local". | Fred Drake | 2000-04-26 | 1 | -5/+22 |
| | | | | | | | | | | | get_rfc_url(): New function; returns the URL for a numbered IETF RFC. do_cmd_rfc(): Use get_rfc_url() instead of hard-coding in the HTML formatting. do_cmd_seerfc(): New function. do_env_definitions(): Small change to avoid "local". | ||||
* | Removed some extraneous and confusing parenthesized expressions. | Fred Drake | 2000-04-25 | 1 | -3/+3 |
| | | | | Noted by Skip Montanaro <skip@mojam.com>. | ||||
* | Added section headers for "Extending the Distutils" section (just | Greg Ward | 2000-04-25 | 1 | -0/+14 |
| | | | | a reminder to myself). | ||||
* | Patch from Andrew Kuchling: document the new multiple pattern feature in the | Greg Ward | 2000-04-21 | 1 | -12/+15 |
| | | | | manifest template. | ||||
* | Reformatted wide paragraphs. | Greg Ward | 2000-04-19 | 1 | -23/+22 |
| | |||||
* | Reverted '\var' in the "standard installation location" table to '\filevar'. | Greg Ward | 2000-04-19 | 1 | -49/+51 |
| | | | | Reformatted wide paragraphs. | ||||
* | Dropped '\tilde' and '\bslash' definitions. | Greg Ward | 2000-04-19 | 1 | -5/+0 |
| | |||||
* | Changed '\tilde' and '\bslash' to the standard '\textasciitilde' and | Greg Ward | 2000-04-19 | 1 | -9/+9 |
| | | | | '\textbackslash'. | ||||
* | Removed '\package' definition. | Greg Ward | 2000-04-19 | 1 | -2/+0 |
| | |||||
* | Changed '\package' to \module'. | Greg Ward | 2000-04-19 | 1 | -6/+6 |
| | |||||
* | Changed '\option' to '\longprogramopt' wherever it referred to a command-line | Greg Ward | 2000-04-19 | 2 | -27/+27 |
| | | | | option. | ||||
* | Added documentation for WindowsError; omission noted by Michal Bozon | Fred Drake | 2000-04-17 | 1 | -0/+10 |
| | | | | | | <bozon@natur.cuni.cz>. (Mark Hammond, other Python/Windows cognoscenti: please check this!) | ||||
* | Clarify the description of the else clause for try/except, and add an | Fred Drake | 2000-04-17 | 1 | -3/+8 |
| | | | | | | explanation of why you'd want to use it. Based on a question from Michael Simcich <msimcich@accesstools.com>. | ||||
* | Various wording/formattin tweaks. | Greg Ward | 2000-04-14 | 1 | -12/+132 |
| | | | | Started spewing "Creating Built Distributions" section. | ||||
* | Update change to version_info structure. | Fred Drake | 2000-04-13 | 1 | -6/+7 |
| | |||||
* | Document hexversion (incompletely explained) and version_info (easily | Fred Drake | 2000-04-13 | 1 | -0/+32 |
| | | | | explained). | ||||
* | Added note about usual default prefix under Linux (thanks to Peter Funk | Greg Ward | 2000-04-12 | 1 | -4/+9 |
| | | | | for the idea). | ||||
* | Trying to placate Fred: redefine \tilde and \bslash; document everything. | Greg Ward | 2000-04-12 | 1 | -9/+23 |
| | | | | Still some not-quite-standard definitions in here that I have to fix. |