summaryrefslogtreecommitdiffstats
path: root/Doc
Commit message (Collapse)AuthorAgeFilesLines
* Document the optional mode argument (Z_FLUSH, Z_SYNC_FLUSH, etc.)Andrew M. Kuchling1998-12-311-4/+11
| | | | to the flush() method of compressor objects.
* Added index entries to make it easier to locate directory & file operations.Fred Drake1998-12-281-0/+3
|
* Added index entries to make it easier to locate directory operations.Fred Drake1998-12-281-0/+2
|
* Clarified what Python versions the interactivity chapter applies to,Fred Drake1998-12-281-1/+9
| | | | and what it doesn't apply to.
* Remove recently documented modules from the undoc list.Fred Drake1998-12-281-6/+0
|
* Print a line to the console reporting the number of index nodesFred Drake1998-12-281-2/+6
| | | | processed. This can be interesting to see.
* Added entry for libshutil.tex.Fred Drake1998-12-281-1/+2
|
* Add documentation for shutil module.Fred Drake1998-12-282-0/+101
|
* Adjust a few niggles that affected the HTML conversion (a couple ofFred Drake1998-12-281-3/+3
| | | | "^"s were being dropped in the context of [^...]).
* Remove all use of $* in commands; some makes (Solaris 2.5, IRIX 6.X)Fred Drake1998-12-281-19/+19
| | | | | only expand this in dependency lists. Thanks for Sjoerd Mullendar for pointing this out.
* Document 'N' format character for Py_BuildValue -- like 'O' but doesn't INCREF.Guido van Rossum1998-12-231-1/+6
|
* Fix many of the specific targets in links from the index.Fred Drake1998-12-221-7/+7
| | | | | In a number of places, I called next_argument() instead of next_argument_id() when the ID was also needed. (7 places)
* Add the getpass module to $(LIBFILES).Fred Drake1998-12-221-1/+2
|
* Add the getpass module.Fred Drake1998-12-221-0/+1
|
* Basic documentation for the getpass module.Fred Drake1998-12-221-0/+31
|
* Bump $(RELEASE).Fred Drake1998-12-221-1/+1
|
* Added a \versionchanged since the API changed to supportFred Drake1998-12-221-1/+4
| | | | | | | | | namespaces with 1.5.2. Added an index entry. Fixed XML expansion: XML is the "Extensible Markup Language", not the "eXtended Markup Language".
* Added information on when this was added, allowing us to release theFred Drake1998-12-222-0/+3
| | | | documentation on the Web while people are still using < 1.5.2b1.
* Update the date.Fred Drake1998-12-221-1/+1
|
* Adjust markup to match current conventions, and make it formattable.Fred Drake1998-12-222-41/+50
|
* Start of text that describes differences between match and search.Fred Drake1998-12-221-5/+40
| | | | Strengthen pointers to the search() function and method.
* Improve a couple of comments.Fred Drake1998-12-221-2/+3
|
* Use \moduleauthor and \sectionauthor instead of a comment to creditFred Drake1998-12-221-1/+2
| | | | the author (just happened to notice this one).
* Add an explanation about what the example does and doesn't do.Fred Drake1998-12-221-2/+7
| | | | | Fix an appearantly new behavior with latex2html with quoting. (Good incentive to work on the SGML conversion! ;)
* do_cmd_rfc(): Make the "RFC ###" a hyperlink to the master RFCFred Drake1998-12-221-4/+7
| | | | repository.
* Added libnetrc.tex and libshlex.tex to LIBFILES.Fred Drake1998-12-221-1/+3
|
* Adding libshlex and libnetrc by Eric Raymond.Guido van Rossum1998-12-223-0/+126
|
* Suggestion by Tim Peters clarifying what "before global" means.Guido van Rossum1998-12-211-1/+2
| | | | | (Also added an XXX comment requesting clarification of module initialization -- TBD later.)
* Clarify descriptions of some operations; it's not always clear thatFred Drake1998-12-211-103/+107
| | | | | strings are not actually modified. Problem reported by Dr. Peter Stoehr <peter.stoehr@weihenstephan.org>.
* Add a bunch of index entries related to retrieving information fromFred Drake1998-12-211-0/+6
| | | | the process table.
* Sjoerd Mullender writes:Guido van Rossum1998-12-181-49/+59
| | | | | | | Here is my current version of xmllib.py and the documentation. This version has some API changes with respect to the version currently in Python (also the one in 1.5.2a). This version supports XML namespaces.
* create_module_info(): New function: Modify a <section> to create aFred Drake1998-12-101-13/+99
| | | | | | | | | <moduleinfo> element based on various meta information, and strip some cruftiness. This is more usable for information extraction, and organizes the information more clearly. cleanup_synopses(): Rewrite to use create_module_info(), so this will work with multi-rooted "documents".
* Remove another {\rm ...} construct.Fred Drake1998-12-101-2/+2
| | | | Sheesh, where do these things come from?
* Don't pass around a list of known empty elements, since the ESISFred Drake1998-12-101-5/+6
| | | | contains "e" events for them. This wasn't used anyway.
* Added a transform to start cleaning up the modulesynopsis stuff aFred Drake1998-12-101-0/+17
| | | | little; more thinking is needed about what we really want.
* Nits.Fred Drake1998-12-101-11/+11
|
* Handle SGML variant as well as XML variant. SGML is *much* moreFred Drake1998-12-101-0/+12
| | | | likely to be used.
* Update the descriptions of strftime() and strptime() to avoidFred Drake1998-12-081-45/+47
| | | | confusion, and describe what the "directives" are about.
* Correct the poplib example. Stephan Richter pointed out some problemsGuido van Rossum1998-12-081-3/+3
| | | | with it.
* Rename the parameters of atan2(), based on comments from Guido & PeterFred Drake1998-12-081-2/+2
| | | | A. Koren <pkoren@hex.net>.
* Sjoerd writes:Guido van Rossum1998-12-071-1/+2
| | | | | | When literal mode is entered it should exit automatically when the matching close tag of the last unclosed open tag is encountered. This patch fixes this.
* "singed" --> "signed" (3 places)Fred Drake1998-12-071-3/+3
| | | | Noticed by Andrew MacIntyre <andymac@bullseye.apana.org.au>.
* Clarify evaluation of default arguments at def time with more text andGuido van Rossum1998-12-041-2/+20
| | | | an example.
* Add explicit example on how to import a submodule of a package usingGuido van Rossum1998-12-041-0/+15
| | | | __import__ and getattr().
* General comments on what's here and how to try it out. NoteFred Drake1998-12-021-0/+23
| | | | dependence on the XML package.
* Moved NotImplementedError into alphabetical order, and rewordBarry Warsaw1998-12-011-9/+7
| | | | description.
* Added documentation for NotImplementedError. Fred (I'm sure) willBarry Warsaw1998-12-011-0/+9
| | | | sanitize for your protection :-)
* Support conversions to both SGML and XML; SGML is the "default".Fred Drake1998-12-011-14/+20
| | | | Add dependency on esistools.py for the ESIS intermediate files.
* Use esistools.Fred Drake1998-12-011-29/+25
| | | | Lots of changes to the conversion table.
* Use esistools.Fred Drake1998-12-011-15/+66
| | | | | Generate ESIS data instead of XML. Misc. changes to some transforms.