summaryrefslogtreecommitdiffstats
path: root/Doc
Commit message (Collapse)AuthorAgeFilesLines
* Added distutils manuals.Fred Drake2000-04-281-22/+31
| | | | Made the attributes more XHTML-friendly.
* Stripped leading 'sec:' from all section labels -- generates bad filenames,Greg Ward2000-04-282-57/+57
| | | | bad link URLs in HTML, etc.
* When building HTML releases, refer to */*.css and */*.html instead ofGreg Ward2000-04-281-3/+3
| | | | ???/*.css and ???/*.html -- need to pick up the Distutils manuals!
* Added the Distutils manuals.Greg Ward2000-04-281-0/+2
|
* Added the Distutils manuals: inst and dist.Greg Ward2000-04-281-3/+17
|
* Added 'inst' and 'dist' -- the two Distutils manuals.Greg Ward2000-04-284-4/+50
|
* Documentation patch describing the 'u' and 'u#' format specifiers,Fred Drake2000-04-281-0/+10
| | | | from Brian Hooper <brian_takashi@hotmail.com>.
* Support for the special macros used by the distutils documentation.Fred Drake2000-04-271-0/+21
|
* Added a note to the section on 'exec' about the need for a trailing newlineGreg Ward2000-04-271-1/+10
| | | | in certain circumstances. (Apparently, this is a CPython problem.)
* Added a "See also:" section that exhibits the \seerfc markup.Fred Drake2000-04-261-0/+7
|
* Define \seerfc within the seealso environment.Fred Drake2000-04-261-0/+9
|
* ref_module_index_helper(): Use "my" instead of "local".Fred Drake2000-04-261-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 Drake2000-04-251-3/+3
| | | | Noted by Skip Montanaro <skip@mojam.com>.
* Added section headers for "Extending the Distutils" section (justGreg Ward2000-04-251-0/+14
| | | | a reminder to myself).
* Patch from Andrew Kuchling: document the new multiple pattern feature in theGreg Ward2000-04-211-12/+15
| | | | manifest template.
* Reformatted wide paragraphs.Greg Ward2000-04-191-23/+22
|
* Reverted '\var' in the "standard installation location" table to '\filevar'.Greg Ward2000-04-191-49/+51
| | | | Reformatted wide paragraphs.
* Dropped '\tilde' and '\bslash' definitions.Greg Ward2000-04-191-5/+0
|
* Changed '\tilde' and '\bslash' to the standard '\textasciitilde' andGreg Ward2000-04-191-9/+9
| | | | '\textbackslash'.
* Removed '\package' definition.Greg Ward2000-04-191-2/+0
|
* Changed '\package' to \module'.Greg Ward2000-04-191-6/+6
|
* Changed '\option' to '\longprogramopt' wherever it referred to a command-lineGreg Ward2000-04-192-27/+27
| | | | option.
* Added documentation for WindowsError; omission noted by Michal BozonFred Drake2000-04-171-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 anFred Drake2000-04-171-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 Ward2000-04-141-12/+132
| | | | Started spewing "Creating Built Distributions" section.
* Update change to version_info structure.Fred Drake2000-04-131-6/+7
|
* Document hexversion (incompletely explained) and version_info (easilyFred Drake2000-04-131-0/+32
| | | | explained).
* Added note about usual default prefix under Linux (thanks to Peter FunkGreg Ward2000-04-121-4/+9
| | | | for the idea).
* Trying to placate Fred: redefine \tilde and \bslash; document everything.Greg Ward2000-04-121-9/+23
| | | | Still some not-quite-standard definitions in here that I have to fix.
* Changed the table of per-platform default installation locations to beGreg Ward2000-04-121-21/+32
| | | | more consistent with the rest of the Python docs.
* Make use of \longprogramopt where appropriate.Fred Drake2000-04-112-3/+3
|
* Elaborate descriptions of \e, \module.Fred Drake2000-04-111-2/+11
| | | | Describe policy on vertical lines in tables.
* Revise the description of \programopt, document \longprogramopt.Fred Drake2000-04-111-2/+10
|
* \longprogramopt: New macro.Fred Drake2000-04-111-0/+2
|
* do_cmd_longprogramopt(): New function.Fred Drake2000-04-111-0/+3
|
* LaTeX macros for the Distutils manuals.Greg Ward2000-04-111-0/+26
| | | | Perhaps these should be added to the standard Python style file?
* Spewed a bunch more verbiage.Greg Ward2000-04-111-87/+179
| | | | Lots of scattered wording changes.
* Added reference count information for Py_FindMethod().Fred Drake2000-04-101-0/+5
|
* Yet another markup nit: functions that are part of the Python/C APIFred Drake2000-04-101-3/+5
| | | | are still C functions, and should be marked.
* PyErr_Format():Fred Drake2000-04-101-1/+0
| | | | | Remove statement that the return value is always NULL; this is generated by the formatting.
* document PyErr_FormatJeremy Hylton2000-04-102-0/+16
|
* letters:Fred Drake2000-04-101-4/+4
| | | | | | | | Fix description; lowercase and uppercase are strings, not functions! Noted by Randall Hopper <aa8vb@yahoo.com>. maketrans(): Minor markup nits in description.
* Add to the comment a description of the "null" value for returnedFred Drake2000-04-101-1/+4
| | | | PyObject* values.
* load_refcounts(),Fred Drake2000-04-101-1/+5
| | | | | do_env_cfuncdesc(): Support the "null" value for the refcounts field in refcounts.dat.
* The reference count field for PyErr_NoMemory() andFred Drake2000-04-101-2/+2
| | | | PyErr_SetFromErrno() should be "null".
* If the refcount field is "null", that's ok; the value will be None.Fred Drake2000-04-101-1/+3
|
* For functions which return a PyObject* but use "null" for theFred Drake2000-04-101-1/+5
| | | | | | reference count field, state that the return value is always NULL. (Useful for some PyErr_*() flavors.)
* cfuncdesc environment:Fred Drake2000-04-101-1/+1
| | | | | When processing the optional parameter, don't append any text; let the pre-processor supply all of it.
* do_cmd_datalineni(): New function, to implement the non-indexing formFred Drake2000-04-101-0/+6
| | | | of \dataline.
* Moved definition of \XXX command out to distutils.sty.Greg Ward2000-04-091-1/+0
|