summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Added missing "\" to "var{P}.\var{M}" in load_module() description.Fred Drake1997-12-292-2/+2
|
* Remove unneeded "{}" that confused makeinfo.Fred Drake1997-12-292-2/+2
|
* Change name of temporary file to avoid possible filesystem issues; matchesFred Drake1997-12-292-2/+2
| | | | similar renaming of the @buildno file elsewhere in the Python tree.
* Changed all \verb\...\ markup to either \code{...} or \samp{...}.Fred Drake1997-12-292-12/+12
|
* Removed "-*-texinfo-*-" from first line; this can cause emacs/xemacs to stopFred Drake1997-12-292-4/+4
| | | | | | | | and ask the user for permission to set buffer-local variables depending on the user's configuration. Not really needed since this doesn't get edited often. Bumped the version number to 1.5; date still needs to be set.
* Normalized the \seetext markup to match the only other instance: should beFred Drake1997-12-292-4/+4
| | | | "\seetext{...}" instead of "\seetext ...".
* Changed some \verb\...\ markup to the more common \code{...}. \verb\...\ isFred Drake1997-12-292-4/+4
| | | | | rarely needed and should be avoided where possible since it doesn't behave well with some processing tools (like partparse.py).
* Solve two annoying problems with ftp URLs for Jack: when repeatedGuido van Rossum1997-12-281-0/+14
| | | | | | | | | | retrieving files from the same host and directory, you had to close the previous instance before opening a new one; and retrieving a non-existent file would return an empty file. (The latter fix relies on maybe an undocumented property of NLST -- NLST of a file returns just that file, while NLST of a non-existent file returns nothing. A side effect, unfortunately, seems to be that now ftp-retrieving an *empty* directory may fail. Ah well.)
* Do a better job of keeping the dialog visible when the master windowGuido van Rossum1997-12-281-0/+8
| | | | is near or beyond the edge of the screen. Patch by Skip Montanaro.
* do_env_tableii(), do_env_tableiii(): Align the table in the center, justFred Drake1997-12-281-2/+2
| | | | like LaTeX does. There's no need to diverge on this.
* Typo: Widht instead of Width...Guido van Rossum1997-12-271-1/+1
|
* Plug the most annoying recursive printing problem -- reset '_' to NoneGuido van Rossum1997-12-261-3/+8
| | | | | before printing and set it to the printed variable *after* printing (and only when printing is successful).
* Just for fun, add a static module, "xyzzy" -- show that calling itsGuido van Rossum1997-12-251-0/+30
| | | | initxyzzy() works.
* Add setsockopt...SO_REUSEADDR to avoid stupid waiting when killing andGuido van Rossum1997-12-251-1/+5
| | | | restarting the server.
* Added expect() method which takes a list of regular expressions and anGuido van Rossum1997-12-241-2/+52
| | | | optional timeout. Also moved some imports around.
* Use string.replace instead of regsub.[g]sub.Guido van Rossum1997-12-245-17/+13
|
* Decided to add the telnet library that I wrote long ago (it's still inGuido van Rossum1997-12-241-0/+424
| | | | | the Demos/cwilib directory). Converted comments to doc strings and used default arguments instead of *args. Updated the example.
* Checking in fixed PS, with A4 capability.Guido van Rossum1997-12-241-1/+1
|
* Script to edit one line in the PS to allow A4 printing.Guido van Rossum1997-12-241-0/+26
|
* Upped tcl/tk instructions for 8.0p2Jack Jansen1997-12-231-1/+1
|
* Added Jack Jansen's versioncheck to the README file.Guido van Rossum1997-12-231-0/+3
|
* Adding Jack Jansen's version checking utility.Guido van Rossum1997-12-234-0/+212
|
* Convert a couple of three-column tables with an empty third column toFred Drake1997-12-232-22/+22
| | | | | two-column tables. This improves the rendering of the HTML version on (at least) some browsers.
* Removed unnecessary \small{} block; latex2html got it wrong and its noFred Drake1997-12-232-4/+0
| | | | longer needed for printed output.
* Removed unnecessary \small{} block; latex2html got it wrong and its noFred Drake1997-12-232-4/+0
| | | | longer needed for printed output.
* AMK's latest -- synchronized with PCRE 1.04.Guido van Rossum1997-12-224-125/+179
|
* AMK's latestGuido van Rossum1997-12-222-4/+30
|
* do_env_tableii(), do_cmd_lineii(),Fred Drake1997-12-221-6/+86
| | | | | | | | do_env_tableiii(), do_cmd_lineiii(): New functions to handle tableii and tableiii environments. Small changes to not add a superfluous space between a function name and the comma in the index.
* Converted to use re instead of regex; version 0.9.0.Guido van Rossum1997-12-213-55/+52
|
* Oops, left in a non-standard multi-line doc string that GCC finds okayGuido van Rossum1997-12-211-4/+4
| | | | but other compilers don't like.
* Oops, tiny fix for the DGUX rule when installing -- don't fail whenGuido van Rossum1997-12-191-1/+4
| | | | libpython$(VERSION).so doesn't exist.
* Added bsddb projectGuido van Rossum1997-12-192-0/+112
|
* Add new optional parameter 'suffix' (default ''), which is appended toGuido van Rossum1997-12-191-10/+11
| | | | the temporary file name. Also some minor formatting of Jim F's code.
* Oops -- '(' is also a legal start character of a new format...Guido van Rossum1997-12-191-0/+1
|
* Added doc strings, suggested by Charles G. Waldman (but massaged quite a bit).Guido van Rossum1997-12-191-7/+41
|
* Patch by Brian Gallew for DG/UX. I'm not quite sure what it does butGuido van Rossum1997-12-184-198/+238
| | | | | | | | | | | | it seems harmless for other platforms. It plays tricks with the name of the library used to link with. Apparently DG/UX really wants a shared library to link with if it wants shared modules to use symbols from the library. I'm not sure why this wasn't an issue with 1.4; DG/UX seems to be the only platform where moving to a single library made things harder! BTW This adds a target to create libpython$(VERSION).so; however this target is *only* for DG/UX.
* Two unrelated changes:Guido van Rossum1997-12-183-134/+151
| | | | | | | | - add test for strptime (not used by the core but needed by Marc Lemburg's Date object). - Test for GNU ld on Solaris; need to add an extra linker option to export symbols in that case.
* Moved toolbox to lib-toolbox, Sjoerd-style.Jack Jansen1997-12-1821-1/+1
|
* Moved scripting to lib-scripting (did it the Sjoerd-way this time)Jack Jansen1997-12-1814-0/+0
|
* Replace unprotected tilders by \~ -- an unprotected tilde is aGuido van Rossum1997-12-188-8/+8
| | | | non-breaking space!
* Change {\em ...} to \emph{...}; this seems to be the developing preferenceFred Drake1997-12-182-6/+6
| | | | throughout the manuals, and seems easier to read.
* img_tag(), top_navigation_panel(): Generate markup the same case as otherFred Drake1997-12-181-7/+7
| | | | functions in this file.
* make_mod_index_entry(): Generate markup the same case as other functions inFred Drake1997-12-181-1/+1
| | | | this file.
* Oops, the output file really should be called zlib.pyd here!Guido van Rossum1997-12-181-2/+2
|
* Added project for zlibGuido van Rossum1997-12-182-0/+108
|
* Win32 treatment.Guido van Rossum1997-12-181-2/+7
|
* Make this test succeed even when using "import test.test_zlib".Guido van Rossum1997-12-181-2/+5
|
* Changes for older Win platforms by Jim AhlstromGuido van Rossum1997-12-175-2638/+2863
|
* Tiny doc patch for QNSGuido van Rossum1997-12-171-2/+2
|
* Oops! Should've renamed dos_8x3 to dos-8x3 here, too.Guido van Rossum1997-12-171-3/+3
|