summaryrefslogtreecommitdiffstats
path: root/Doc
Commit message (Collapse)AuthorAgeFilesLines
* Use a really ugly hack that depends on output processing by LaTeX2HTML.Fred Drake2000-09-162-8/+8
| | | | | This replaces the tilde character with the string ";SPMtilde;", which LaTeX2HTML converts to a tilde on output.
* Update URL to unicode.org's FTP site using an HTTP URL to the sameFred Drake2000-09-161-1/+1
| | | | document.
* Update *both* uses of the URL to the zlib home page, and use the versionFred Drake2000-09-161-6/+6
| | | | advertised as the canonical form.
* Update link to the zlib homepage.Fred Drake2000-09-161-4/+4
|
* Update the link to Andrew Kuchling's crypto code.Fred Drake2000-09-161-1/+1
|
* Update link to the FIPS PUB 180-1 (PDF is available, but not PostScript).Fred Drake2000-09-161-2/+2
|
* Update some stale links.Fred Drake2000-09-162-8/+8
|
* Fixed legit gripe from c.l.py that math.fmod docs aren't confusing enough.Tim Peters2000-09-161-1/+3
| | | | FRED, please check my monkey-see-monkey-do Tex fiddling!
* Fix a link -- there is no starship.python.org!Fred Drake2000-09-151-1/+1
|
* Add some comments on the available implementations that this module canFred Drake2000-09-151-11/+25
| | | | | | | | use. Change the list of flag values for open() to a table. Markup consistency nits.
* add cross reference to mimetools moduleSkip Montanaro2000-09-151-0/+2
|
* Update comments in the second paragraph, discussing versioning issuesFred Drake2000-09-151-8/+9
| | | | | related to the BSD DB library. Based on comments from Mark Summerfield <summer@netcraft.com>.
* Add item to the list of limitations that points out the lack of supportFred Drake2000-09-151-1/+5
| | | | | | | | | for authenticated proxies. This is noted elsewhere, but this makes it easier to find. Fix typo where it was already mentioned. This closes SourceForge bug #110619.
* Before running LaTeX2HTML, remove all the HTML files from the outputFred Drake2000-09-141-0/+3
| | | | | | directory. This avoids acretion of HTML from previous runs which may have a new name; this would have avoided a lot of the packaging problems related to changing labels from the old distutils documentation.
* When there is a Module Index, make sure the icon actually links to it.Fred Drake2000-09-141-1/+3
|
* Add a reference to the sha module, noting that SHA is considered moreFred Drake2000-09-141-0/+7
| | | | secure. Suggested by Erno Kuusela <erno@iki.fi>.
* Convert "See also" section to use \seetitle.Fred Drake2000-09-141-6/+8
|
* Did not include the sha module documentation dependency.Fred Drake2000-09-141-0/+1
|
* Denis S. Otkidach <ods@users.sourceforge.net>:Fred Drake2000-09-141-2/+3
| | | | | | Minor fix in documentation of code module. (Clarifies output destination for default implementation of the write() method.)
* Remove reference to the stdwin-based windowed debugger, since stdwinFred Drake2000-09-141-6/+2
| | | | | | is gone. Make a module reference into a hyperlink.
* Use the \setshortversion macro to specify the abbreviated version number.Fred Drake2000-09-141-2/+3
| | | | | | | | | This partially addresses SourceForge bug #114318. Fix the release number -- this is supposed to be the *Python* release, not the documentation release! The later is given by the combination of the Python release number and the date. Add a comment so I can keep it straight.
* Use \shortversion in a number of places.Fred Drake2000-09-143-12/+12
| | | | This partially addresses SourceForge bug #114318.
* do_cmd_shortversion(),Fred Drake2000-09-141-11/+32
| | | | | | | | | | | | | | | | | | | | | | | do_cmd_setshortversion(): Implementation for new markup. convert_args(): New helper function. do_cmd_optional(): Modified to understand when it is called from within a convert_args() invocation. do_env_funcdesc(), do_env_funcdescni(), do_cmd_funcline(), do_cmd_funclineni(), handle_classlike_descriptor(), do_env_methoddesc(), do_end_methoddescni(), do_cmd_methodline(), do_cmd_methodlineni(): Modified to use helper convert_args(). The convert_args() helper and related changes fix the generation of HTML for the \optional markup, so that bogus </var>...<var> is not generated. This closes SourceForge bug #113800.
* \shortversion,Fred Drake2000-09-142-2/+29
| | | | | | \setshortversion: New markup to help deal with Python having a "real" version number and an abbreviated version number used to create pathnames to the library installation.
* Avoid reference to specific versions of Python where possible.Fred Drake2000-09-141-4/+4
| | | | This partially addresses SourceForge bug #114318.
* Avoid reference to specific versions of Python where possible.Fred Drake2000-09-141-3/+3
| | | | This partially addresses SourceForge bug #114318.
* Add some index entries to make it easier to find information onFred Drake2000-09-141-0/+5
| | | | %-formatting of strings.
* Include a link to Francois's po-utils.Barry Warsaw2000-09-131-2/+3
|
* Fix install directories on Mac OS (now that the "install" commandGreg Ward2000-09-131-13/+4
| | | | does the right thing).
* Changed/added a bunch of section labels so HTML files will be named nicely.Greg Ward2000-09-131-6/+10
|
* Improve Windows and Mac OS-specific instructions for running theGreg Ward2000-09-121-10/+27
| | | | setup script. Also added a comment about how it *should* work on Mac OS.
* Typo fix -- it's 'ext_modules', not 'extensions'.Greg Ward2000-09-121-3/+3
|
* Documentation is good. Let's release more.Fred Drake2000-09-122-3/+3
|
* Make this script handle PyVarObject* functions as well as PyObject*Fred Drake2000-09-121-4/+5
| | | | functions.
* Thomas Wouters <thomas@xs4all.net>:Fred Drake2000-09-121-0/+39
| | | | | | Reference manual docs for augmented assignment. This closes SourceForge patch #101418.
* Thomas Wouters <thomas@xs4all.net>:Fred Drake2000-09-121-7/+106
| | | | | Fix up some of the PyNumber_*() documentation. Add documentation for the InPlace API calls.
* Vladimir Marangozov <Vladimir.Marangozov@inrialpes.fr>:Fred Drake2000-09-122-54/+62
| | | | | | | Here are some changes to the C API docs. The memory examples & API have been updated because one malloc family is gone (Py_Malloc). You'll see other small additions to the "building new types" section for completeness and some cleanup at the end of the memory section.
* Re-wrapped some wide comments.Fred Drake2000-09-121-28/+43
| | | | Fixed Module Index generation.
* Add note that the various \see* macros are only defined in the contextFred Drake2000-09-121-0/+3
| | | | of a seealso environment.
* Change the title of the link to the document index to be more specific.Fred Drake2000-09-121-2/+2
|
* Add a reference item pointing to the Namespaces in XML recommendation.Fred Drake2000-09-121-14/+24
| | | | Convert the existing reference items to \seetitle markup.
* \seetitle: New macro for building reference list content.Fred Drake2000-09-123-4/+43
|
* When referring to namespaces, always say "namespaces" instead ofFred Drake2000-09-124-53/+54
| | | | | | "name spaces". Inconsistency noted by Keith Briggs <keith.briggs@bt.com>.
* Added documentation for PySequence_Fast() and PySequence_Fast_GET_ITEM().Fred Drake2000-09-122-0/+25
|
* When formatting the API manual, use the generated api.tex rather thanFred Drake2000-09-121-2/+2
| | | | the original, since the refcount information has been added there.
* add index entries for list comprehensionsSkip Montanaro2000-09-111-0/+2
|
* Some updates and fix a bunch of really small consistency nits.Fred Drake2000-09-111-45/+38
|
* Add documentation for the \pep and \seepep macros.Fred Drake2000-09-111-6/+21
|
* Minor tweaks to get rid of some '\XXX' remarks.Greg Ward2000-09-111-11/+12
|
* Add support for new \pep, \seepep, excclassdesc markup.Fred Drake2000-09-091-9/+68
| | | | | | | | | Update processing of module synopsis tables (found at the beginning of most chapters of the library reference) to reflect changes in the processing pattern of recent versions LaTeX2HMTL. Requires most recent change to SynopsisTable.pm. This does not fix the module index problem.