summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Universal Headers 3Jack Jansen1998-02-201-0/+1
|
* Updated to Universal Headers 3 constant namesJack Jansen1998-02-201-1/+1
|
* Regenerated from Universal Headers 3.0.1 (which are changedJack Jansen1998-02-2016-764/+1393
| | | | substantially from previous releases)
* Updated to Waste 1.3Jack Jansen1998-02-201-1/+9
|
* Break circular reference on menus upon cleanupJack Jansen1998-02-201-0/+1
|
* Added CHECK_IMPORT_CASEJack Jansen1998-02-201-0/+8
| | | | | Added HAVE_HYPOT, except for 68k (where you get 10-byte-float hypot, sigh...)
* Removed incorrect weMonoStyled from initializationJack Jansen1998-02-201-1/+1
|
* Fixed bug in explanation of how to run test.autotest, and warned forJack Jansen1998-02-201-8/+10
| | | | out-of-memory condition
* Tell TeX about a pathological hyphenation case (BaseHTTPRequestHandler).Fred Drake1998-02-201-0/+3
|
* Added \label{}s for logical addressing.Fred Drake1998-02-202-70/+74
| | | | Logical markup.
* Added \label{}s for logical addressing.Fred Drake1998-02-202-0/+10
|
* Fixed typo reported by Vladimir Marangozov <Vladimir.Marangozov@imag.fr>.Fred Drake1998-02-202-2/+2
|
* Don't ignore makeinfo errors.Fred Drake1998-02-191-1/+1
|
* Clean up name->name conversion a little, *make sure it happens in all theFred Drake1998-02-192-24/+36
| | | | right places*!
* Revert to the old (indented) form of @DGUX_IS_BROKEN@.Guido van Rossum1998-02-191-2/+2
|
* Different way to suppores the DGUX ruleGuido van Rossum1998-02-192-5/+5
|
* Change default RCS bin directory to /usr/local/bin/.Guido van Rossum1998-02-191-1/+1
|
* Delete the 'exit' command from the Tcl interpreter -- it would allowGuido van Rossum1998-02-191-0/+3
| | | | | users to exit Python without the normal precautions. (The can do this using os._exit() anyway, but at least that's documented.)
* Fix bug in trace_vdelete(); should use master's delete command.Guido van Rossum1998-02-191-1/+2
|
* Added debug statements to report data actually sent and received onGuido van Rossum1998-02-191-0/+2
| | | | the socket.
* Fix for literal null bytes -- these must be replaced by the fourGuido van Rossum1998-02-191-2/+3
| | | | characters \, 0, 0, 0.
* Fixed a bug in the gauss() function. The bug was reported by MikeGuido van Rossum1998-02-191-5/+6
| | | | | | | | Miller, who complained that its kurtosis was bad, and then fixed by Lambert Meertens (author of the original algorithm) who discovered that the mathematical analysis leading to his solution was wrong, and provided a corrected version. Mike then tested the fix and reported that the kurtosis was now good.
* Add rmd() (remove directory command); fix comment in parse257.Guido van Rossum1998-02-191-2/+8
| | | | | In login(), force passwd and acct to '' when they are None (this can happen in the test program!).
* Faster implementation of normcase (using string.lower(Guido van Rossum1998-02-191-8/+2
| | | | | | | string.replace(...)) instead of a for loop). Don't call normcase() in normpath() -- the filesystem just might be case preserving...
* Jeff Kunce writes (and he is right):Guido van Rossum1998-02-192-6/+6
| | | | | | | | | | | | | | | | | | Also, I just ran across a [possible] minor glitch in the library documentation for site.py. It says: "For example, suppose sys.prefix and sys.exec_prefix are set to `/usr/local'. The Python 1.5 library is then installed in `/usr/local/lib/python1.5'. Suppose this has a subdirectory `/usr/local/python1.5/site-packages' with three subsubdirectories, `foo', `bar' and `spam'..." I think it should be: "...Suppose this has a subdirectory `/usr/local/lib/python1.5/site-packages' with..." ^^^^
* Revise comment about the {fulllineitems} environment to be accurate.Fred Drake1998-02-191-1/+3
|
* Fix some outdated comments (mostly by removing a large comment blockGuido van Rossum1998-02-191-16/+11
| | | | | that was only causing confusing). Add free(userpath) and free(machinepath) statements to prevent some leaks.
* Improve support for logical node names.Fred Drake1998-02-191-0/+26
|
* Enable CHECK_IMPORT_CASE on Win32.Guido van Rossum1998-02-191-0/+10
|
* Adjusted \label{} for *consistent* logical addressing.Fred Drake1998-02-192-236/+240
| | | | Logical markup.
* Moved clear_carefully() to _PyModule_Clear() in moduleobject.cGuido van Rossum1998-02-191-69/+31
| | | | | | | | | | | | | | | (modified) and use that. Some differences in the cleanup algorithm: - Clear __main__ before the other modules. - Delete more sys variables: including ps1, ps2, exitfunc, argv, and even path -- this will prevent new imports! - Restore stdin, stdout, stderr from __stdin__, __stdout__, __stderr__, effectively deleting hooks that the user might have installed -- so their (the hooks') destructors will run.
* Make backup copies of stdin, stdout, stderr as __stdin__, __stdout__,Guido van Rossum1998-02-191-0/+4
| | | | __stderr__. These will be used by the import cleanup.
* Add internal routine _PyModule_Clear(), which does approximately whatGuido van Rossum1998-02-192-1/+51
| | | | | | | | | clear_carefully() used to do in import.c. Differences: leave only __builtins__ alone in the 2nd pass; and don't clear the dictionary (on the theory that as long as there are references left to the dictionary, those might be destructors that might expect __builtins__ to be alive when they run; and __builtins__ can't normally be part of a cycle).
* Added \label{} for logical addressing.Fred Drake1998-02-192-0/+6
|
* Vladimir Marangozov' performance hack: copy f_builtins from ancestorGuido van Rossum1998-02-191-3/+14
| | | | | | | if the globals are the same. Also, when creating a dummy builtins dictionary, add "None" to it, just to be kind.
* Check ferror(), not errno, for fread() error.Guido van Rossum1998-02-191-1/+1
|
* Add missing files to $(LIBFILES).Fred Drake1998-02-191-1/+5
| | | | Run node2label.pl on the HTML versions of all the LaTeX manuals.
* Added \label{} for logical addressing.Fred Drake1998-02-192-0/+32
|
* Added \label{} for logical addressing.Fred Drake1998-02-194-2/+6
|
* Added itemized list of Macintosh modules, similar to the other chapters.Fred Drake1998-02-192-6/+118
|
* Added \label{} for logical addressing.Fred Drake1998-02-192-0/+2
|
* Separate chapter and section.Fred Drake1998-02-196-220/+222
|
* Make sure the general index and about nodes get labels assigned, so they getFred Drake1998-02-191-3/+25
| | | | real names instead of node#.html names.
* Separate binhex and binuu documentation from binascii. Support betterFred Drake1998-02-198-148/+152
| | | | module addressing in HTML.
* Remove debugging print.Fred Drake1998-02-191-3/+7
| | | | | | Support {classdesc} and {fulllineitems} environments. Support most recent logical markup.
* Bring date into line with the last documentation release.Fred Drake1998-02-192-2/+2
|
* Work on a temporary file, not the input file.Fred Drake1998-02-192-2/+2
|
* Revised some targets to make better use of make "special" variables, to avoidFred Drake1998-02-191-7/+16
| | | | | | repeating file names. Change lib.texi target to not overwrite the input file; work on a copy.
* Support environments {fulllineitems} and {classdesc}, more of the new logicalFred Drake1998-02-192-24/+14
| | | | | | markup. The info generation now works, yet again.
* Adjust grouping for the "b(reak)" command syntax description. This isFred Drake1998-02-192-2/+2
| | | | required to get the info generation back in operation, yet again.