summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* &make_mod_index_entry: Wrap a long comment, store the additional data neededFred Drake1998-01-131-3/+8
| | | | to create a module index in the HTML version.
* Override several functions from the stock latex2html to support the moduleFred Drake1998-01-131-0/+95
| | | | | | | | | index. It works, it's ugly, and would probably have to be completely redone if we changed latex2html versions. See the comments. ;-( On the other hand, it works. ;-) (Wait for myformat.perl checkin as well.)
* Added support for \funcline{} and \dataline{}.Fred Drake1998-01-121-24/+61
| | | | | | | For all generated cases of <strong>...</strong> (from this module), change to <b>...</b>. This, from me? This is entirely to reduce the size of the generated markup, which is more of an issue than semantics here. Since <strong> isn't very meaningful anyway, this should be good.
* Lots of minor markup nits, all consistency related.Fred Drake1998-01-122-150/+176
| | | | | | Consistently use trailing "()" on function / method names. Wrapped some long lines.
* Document maxsplit arg for split(), with incompatibility note about 1.5Guido van Rossum1998-01-122-6/+24
| | | | | | release bug. Document groups() changed behaviour (now always returns tuple).
* Fix two bugs:Guido van Rossum1998-01-121-5/+8
| | | | | | | (1) maxsplit was ignored in split(). (2) groups() would return a string instead of a singleton tuple when there was only one group.
* Wrapped some long lines.Fred Drake1998-01-122-86/+90
| | | | | | Added trailing "()" for function and method names. Added index entries for referenced modules.
* Modify command descriptions to use \optional{} instead of ad-hoc markup.Fred Drake1998-01-122-32/+32
| | | | There are still weirdnesses, but less of them.
* \optional{}: Removed leading word space, allowing more flexibility.Fred Drake1998-01-121-2/+2
| | | | | | {seealso} environment: Always start a new paragraph after the "See Also:" line; this ensures that formatting is consistent for each subsequent \see*{} item.
* Sigh. Apply a similar patch to the *other* occurrence of [^...].Guido van Rossum1998-01-122-2/+2
|
* Follow current recommended practice in an example: Use isinstance() toFred Drake1998-01-112-2/+2
| | | | | perform a type test instead of type(x) == types.FoobarType. In example for type().
* "Unix" --> "\UNIX{}"Fred Drake1998-01-112-34/+26
| | | | | | | | Added index references to referred-to modules. Added seealso section pointing to the glob module. Removed description of translate().
* As Jeff painfully found out, malloc(0) returns NULL on OS/2.Guido van Rossum1998-01-111-1/+4
|
* Grammatical nit.Fred Drake1998-01-092-2/+2
|
* Add module reference for cPickle to index.Fred Drake1998-01-092-36/+42
| | | | | | | | | | | Consistency: Always use trailing "()" for function and method names in text. Consistency: Always mark parameter names with \var{} in text. Change questionable text about CORBA to definate text about XDR; "CORBA" isn't enough to specify an external representation, and I'm not sure the comment is right if we say "IIOP". I know its right about XDR if we only mention shared object references and not recursive structures.
* Use \file{} instead of \code{} or ``\code{}'' to mark file & directory namesFred Drake1998-01-092-6/+6
| | | | & name parts.
* Simplify markup.Fred Drake1998-01-092-4/+4
|
* The resource module has been documented; remove from list.Fred Drake1998-01-092-4/+0
|
* Added \label{} to allow module references.Fred Drake1998-01-092-8/+46
| | | | Added some seealso sections.
* Add index entry for reference to the math module.Fred Drake1998-01-092-14/+14
|
* Typographical nits: Always set parameter names in \var{} in the running text.Fred Drake1998-01-092-6/+6
|
* Markup consistency in the mapping object interface description.Fred Drake1998-01-092-4/+4
|
* Fix previous nit to really do the right thing.Fred Drake1998-01-091-1/+1
|
* Consistency: Always use lower-case markup; one tag was still given inFred Drake1998-01-091-1/+1
| | | | | uppercase. (Makes it easier to see what markup is generated by the Python manual support and what is generated by standard latex2html.)
* Revise prologue and frontmatter to use latex2e (not in 2.09 compatibilityFred Drake1998-01-092-264/+272
| | | | | | | | | mode) and take advantage of changes in myformat.sty. Change "C" to "\C{}" and "\code{NULL}" to "\NULL{}" everywhere for consistency and control. Started a description of PyArg_ParseTupleAndKeywords().
* Revise prologue and frontmatter to use latex2e (not in 2.09 compatibilityFred Drake1998-01-096-52/+22
| | | | mode) and take advantage of changes in myformat.sty.
* \mytableofcontents New macro. Wrapper around \tableofcontents thatFred Drake1998-01-091-1/+37
| | | | | | | | | | | does the right thing if the openright option is given. Allows a lot of crud to be removed from the document files' frontmatter sections. \endabstract Extend standard macro. (Called as \end{abstract}.) Does the right thing if the openright option is given. \optional Adjust to get the brackets right under latex2e.
* Nit.Fred Drake1998-01-091-0/+2
|
* For consistency, always use a trailing "()" on function names in the runningFred Drake1998-01-082-38/+40
| | | | | | text. Add one index entry.
* Fix a typo (the word "a" was spelled "c"!).Fred Drake1998-01-072-2/+12
| | | | Added index entries & \label{} constructs.
* Normalize some markup.Fred Drake1998-01-072-30/+32
| | | | | | Use \file{} instead of \code{} for a directory name (Tools/freeze). Consistently use "()" at the end of a function name in running text.
* Fixed up index entries.Fred Drake1998-01-072-14/+18
| | | | Adjusted one formatting problem (long \code{} in running text).
* Added index entry for the protocol.Fred Drake1998-01-072-14/+16
| | | | | | Fixed typo (extra char in the word "character"). Minor nits.
* Added index items for the RFC and the protocol itself.Fred Drake1998-01-072-0/+4
|
* Fixed index entries to be more consistent.Fred Drake1998-01-072-10/+10
|
* Updated embed demo, and put a note in the html file that you need aJack Jansen1998-01-063-174/+167
| | | | source or development distribution to try it.
* I give in. Now Tk is also using resources just above 128, so PythonJack Jansen1998-01-069-5558/+5672
| | | | | | now uses only 228-256, leaving 128-228 free for others. This mod affects prefs files, libraries and almost everything else, so I've upped my local Python to 1.5b4 to remain sane.
* In description of \D, revise markup so that the caret shows up in the HTMLFred Drake1998-01-062-2/+2
| | | | | | | version as well as the dvi form. Without the fix, it showed up as an extra zero character. Bug reported by Hugh Sasse <hgs@dmu.ac.uk>.
* Release notes and readme for 1.5b3Jack Jansen1998-01-065-70/+92
|
* Loading defaults for gusi/sys.path didn't work for applets. Fixed.Jack Jansen1998-01-061-2/+4
|
* Balloon help definitionsJack Jansen1998-01-061-0/+46
|
* Added cPickle and cStringIOJack Jansen1998-01-061-0/+7
|
* - Tk 8.0p2 script resourcesJack Jansen1998-01-063-4815/+5006
| | | | | - New folder names in sys.path initialisation - Version number, preffilename upped
* Projects for 1.5b3Jack Jansen1998-01-0612-3538/+3767
|
* Dangerous feature added: when removing local files (i.e., only when -rGuido van Rossum1998-01-041-25/+50
| | | | | | is used), do a recursive delete. Use -r with even more caution! Also changed usage message into a doc string, added a comment or two, and rearranged a long line.
* Descriptions for PyRun_String(), PyRun_File(), and PyRun_CompileString() allFred Drake1998-01-022-8/+8
| | | | | | | | gave the return type as part of the function field and used an empty return type field. Fixed. Function name field for PyLong_FromString() included an asterisk at the beginning of the function name field; removed.
* lib.dvi target: Added commands to generate the modules index.Fred Drake1998-01-021-1/+4
|
* Script to convert module index data to module index.Fred Drake1998-01-022-0/+124
|
* Add module index before the general index.Fred Drake1998-01-022-0/+8
|
* Added support for storing information to build a module index.Fred Drake1998-01-021-1/+16
| | | | Enhance the "theindex" environment to add an entry to the table of contents.