summaryrefslogtreecommitdiffstats
path: root/Doc
Commit message (Collapse)AuthorAgeFilesLines
* Added more warnings about ni's demise.Guido van Rossum1997-12-092-4/+14
|
* Mark file names with \file{} instead of \code{}.Fred Drake1997-12-092-18/+20
|
* Separated the definitions of ntohs(), ntohl(), htons(), htonl(). SeparateFred Drake1997-12-082-16/+42
| | | | | descriptions really make things look a bit better, and should improve the ability to re-purpose the content.
* Added Emacs turd so this file has the correct mode in Emacs / X/Emacs, evenFred Drake1997-12-081-1/+1
| | | | if you don't have .perl in your mode table.
* Added Emacs turd so this file has the correct mode in Emacs / X/Emacs.Fred Drake1997-12-081-1/+12
| | | | | | | clean_key(): Override the standard LaTeX2HTML clean_key() to remove a leading HTML tag, if present. This broke the indexes for the library reference (at least) since many of the strings began with <code> or something similar.
* Updated the README to the current status. Added a note about theGuido van Rossum1997-12-081-72/+32
| | | | "times" option.
* New version from AMK -- with minor corrections to make it legal latex.Guido van Rossum1997-12-082-106/+240
|
* Fixed SFT #23842: leave in non-standard style options when checking in anFred Drake1997-12-082-2/+2
| | | | update. ;-(
* Some reorganization (all limit operations & constants together, and all usageFred Drake1997-12-062-108/+248
| | | | | | | | | | functions and constants together). Make explicit datadesc sections for each of the constants which might appear, and have a description of each. (Descriptions are based on the Linux documentation and sources and the Solaris man pages.) Hopefully Jeremy won't mind, because I didn't ask. ;-)
* Some manipulations with tags to get the TOC and Index to look betterGuido van Rossum1997-12-064-0/+0
|
* New WML file, this time with working Title and Author tags, andGuido van Rossum1997-12-061-23/+33
| | | | | mapping chapter and section headings to more appropriate nodes so that the TOC actually works. Now generates one HTML page per chapter.
* Make examples consistently use 4-space indentation.Fred Drake1997-12-042-902/+902
| | | | | | | | | | Use \file{} for file names. Prefer \code{blat} and \emph{blat} to {\tt blat} and {\em blat}; this matches current style in the Library Reference a bit better. Made the example startup banner current. The version number should be bumped before the next release.
* Fixed unresolved reference problem; this module wasn't \label{}ed.Fred Drake1997-12-042-8/+10
| | | | | | | | Remove spurious underscore following book title. Added specific reference to a Win32 networking book. Changed \indexsubitem from (in module SocketServer) to (SocketServer protocol), since it's talking about a protocol supported by a collection of classes.
* Removed unnecessary escaping.Fred Drake1997-12-042-78/+78
|
* Arg; more nits, but I may as well finish the job.Fred Drake1997-12-042-40/+12
| | | | | | | Removed the large comment remaining from the template documentation section; the template tells us to remove these once they're not needed. Remove some trailing whitespace from VM instruction pseudo-code.
* Fixed BINARY_RSHIFT documentation to indicate a right shift instead of a leftFred Drake1997-12-042-12/+12
| | | | | | | shift. Adjust whitespace around "=" in VM machine descriptions to be consistent throughout the document.
* Changed {\sc gdbm} to \code{gdbm} everywhere.Fred Drake1997-12-042-26/+24
| | | | | | Fixed \indexsubitem to gdbm instead of dbm. Changed dbm to \code{dbm} everywhere.
* Added handler for opcodedesc environment.Fred Drake1997-12-031-41/+67
| | | | Fixed weird index behavior.
* make_str_index_entry(): New function. Similar to make_index_entry(), butFred Drake1997-12-031-0/+101
| | | | | | | | | includes the string in the returned value instead of the dummy filler character. add_idx(): Override the latex2html function of the same name; this gets the anchor properly embedded in the <dt> element, so the index works in Grail too.
* Provide default for blocksize on retrbinary (Skip Montanaro).Guido van Rossum1997-12-032-8/+10
|
* The biggie: changed the funcdesc environments used for opcode descriptionsFred Drake1997-12-032-350/+352
| | | | | | | | | | | | | | to use the opcodedesc environment. Changed a \code{} to a \file{} near the start where a file is referenced. Fixed a typo: "on" --> "one" in ROT_THREE description. Wherever opcodes were referenced by name, use \code{OPCODE_NAME}; usage was inconsistent. Ideally, another macro would be defined since these don't represent code a programmer would type, but that's minor even for me. It'll probably get converted automatically in the SGML conversion project. Whether that matters or not isn't relevant at this point.
* Added environment for defining PyVM instructions. This is only used inFred Drake1997-12-031-0/+6
| | | | | | | | | | | | the libdis.tex file I'm about to check in. I'm not sure this is really an optimal solution yet, but it may be the best alternative. It avoids describing the instructions as either data items or functions. This change was discussed with Guido. (Guido: Take a look at the LaTeX output for this; if this is reasonable I'll go ahead and update the perl code in myformat.perl to match.)
* Typo in example (missing '=') discovered by Sandy Langbart.Guido van Rossum1997-12-022-2/+2
|
* Document new behavior of isinstance() when using a type object.Guido van Rossum1997-12-022-6/+10
|
* Use $LOGNAME instead of $USER to get the current user -- it seems toGuido van Rossum1997-12-011-1/+1
| | | | be the state of the art.
* Removed Queue.py. It's documented now.Barry Warsaw1997-12-012-4/+0
|
* Added \indexsubitem definition; functions were previously indexed for theFred Drake1997-11-308-0/+16
| | | | wrong module.
* Added \indexsubitem definition. Non-optimal, but two modules are sharingFred Drake1997-11-302-0/+8
| | | | the documentation here.
* Added \indexsubitem definition; functions were previously indexed for theFred Drake1997-11-302-0/+4
| | | | wrong module.
* Updated \indexsubitem; functions had been indexed for the wrong module.Fred Drake1997-11-302-0/+4
|
* Slip of the keyboard (f__ should be __). Dunno why I had a totallyGuido van Rossum1997-11-272-2/+2
| | | | | | messed up (but not checked in) version in my work files and didn't notice before releasing 1.5 -- at least the distributed latex file doesn't have the bogus warning about changed __init__ semantics.
* The dependency of tarhtml on l2h was a bad idea.Guido van Rossum1997-11-261-1/+1
|
* Documented brand new behavior of sys.ps1 and sys.ps2 (str() is appliedGuido van Rossum1997-11-252-2/+8
| | | | to get the actual prompt).
* Added utility target tarhtml to tar and gzip the HTML files plus theirGuido van Rossum1997-11-251-0/+4
| | | | support (GIFS, icons, style sheets).
* Adding the icons used by latex2html output to the CVS tree.Guido van Rossum1997-11-2531-0/+94
|
* Ignore html files generated by webmaker.Guido van Rossum1997-11-251-0/+1
|
* Augmented the script so that (at CNRI anyway) it also invokes webmakerGuido van Rossum1997-11-251-1/+12
| | | | to create the HTML.
* Simple index for the reference manuals (mostly for use on the WindowsGuido van Rossum1997-11-252-0/+50
| | | | platform).
* Updated to the most pressing 1.5 issues.Guido van Rossum1997-11-2513-4516/+4474
|
* Several changes, e.g. restructuring of the intro to be closer to whatGuido van Rossum1997-11-252-472/+268
| | | | it ought to be. Maybe the last checkin before 1.5b1 is released.
* Added the "italic correction" command ("\/") to the list of ignored commands.Fred Drake1997-11-252-2/+2
| | | | | There is at least one of there in the library reference, and this reduces the warning count. We *do* know what to do with it!
* Removed leading comment about this being "introductory" documentation;Fred Drake1997-11-252-4/+12
| | | | | | | | compared to most, I'd say this section is fairly thorough. Fixed \indexsubitem definitions for symbol and token module sub-documents. Perhaps these should be moved to their own files, but they're awefully small.
* Get rid of math mode in some places.Guido van Rossum1997-11-2512-18/+18
|
* Don't use $math$ mode to typeset a simple '>' sign. Use \code, not \samp.Guido van Rossum1997-11-252-2/+2
|
* Remove strange use of $math$ mode to produce a backslash.Guido van Rossum1997-11-252-2/+4
|
* Oops, did the previous delete the wrong way.Guido van Rossum1997-11-252-2/+0
|
* Get rid of last traces of module 'audio'Guido van Rossum1997-11-243-123/+2
|
* Add fileinput.Guido van Rossum1997-11-242-0/+4
|
* Adding Martin von Loewis' documentation for his locale module.Guido van Rossum1997-11-207-1/+383
|
* Add description for some modules that have been added since this introGuido van Rossum1997-11-202-0/+42
| | | | section was last revised...