Jack Jansen
dee6d02736
Removed incorrect weMonoStyled from initialization
1998-02-20 15:48:57 +00:00
Jack Jansen
0188172559
Fixed bug in explanation of how to run test.autotest, and warned for
...
out-of-memory condition
1998-02-20 15:46:35 +00:00
Fred Drake
5c19c7bade
Tell TeX about a pathological hyphenation case (BaseHTTPRequestHandler).
1998-02-20 06:08:07 +00:00
Fred Drake
2c8aa650a8
Added \label{}s for logical addressing.
...
Logical markup.
1998-02-20 06:03:52 +00:00
Fred Drake
d67e12e65c
Added \label{}s for logical addressing.
1998-02-20 05:49:37 +00:00
Fred Drake
7baf3d4ea7
Fixed typo reported by Vladimir Marangozov <Vladimir.Marangozov@imag.fr>.
1998-02-20 00:45:52 +00:00
Fred Drake
f7f2e70fd4
Don't ignore makeinfo errors.
1998-02-19 21:40:51 +00:00
Fred Drake
9c7c6bec98
Clean up name->name conversion a little, *make sure it happens in all the
...
right places*!
1998-02-19 21:40:22 +00:00
Guido van Rossum
414f261166
Revert to the old (indented) form of @DGUX_IS_BROKEN@.
1998-02-19 21:33:13 +00:00
Guido van Rossum
357428567c
Different way to suppores the DGUX rule
1998-02-19 21:32:40 +00:00
Guido van Rossum
64a1090d1b
Change default RCS bin directory to /usr/local/bin/.
1998-02-19 21:29:38 +00:00
Guido van Rossum
1c0d31565d
Delete the 'exit' command from the Tcl interpreter -- it would allow
...
users to exit Python without the normal precautions. (The can do this
using os._exit() anyway, but at least that's documented.)
1998-02-19 21:28:49 +00:00
Guido van Rossum
0001a11986
Fix bug in trace_vdelete(); should use master's delete command.
1998-02-19 21:20:30 +00:00
Guido van Rossum
2fc4d581ba
Added debug statements to report data actually sent and received on
...
the socket.
1998-02-19 21:19:48 +00:00
Guido van Rossum
b1908846af
Fix for literal null bytes -- these must be replaced by the four
...
characters \, 0, 0, 0.
1998-02-19 21:18:56 +00:00
Guido van Rossum
72c2e1b56e
Fixed a bug in the gauss() function. The bug was reported by Mike
...
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.
1998-02-19 21:17:42 +00:00
Guido van Rossum
9824509d3e
Add rmd() (remove directory command); fix comment in parse257.
...
In login(), force passwd and acct to '' when they are None (this can
happen in the test program!).
1998-02-19 21:15:44 +00:00
Guido van Rossum
0d530cedd7
Faster implementation of normcase (using string.lower(
...
string.replace(...)) instead of a for loop).
Don't call normcase() in normpath() -- the filesystem just might be
case preserving...
1998-02-19 21:08:36 +00:00
Guido van Rossum
505d80b39d
Jeff Kunce writes (and he is right):
...
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..."
^^^^
1998-02-19 21:02:32 +00:00
Fred Drake
ef146222db
Revise comment about the {fulllineitems} environment to be accurate.
1998-02-19 21:02:26 +00:00
Guido van Rossum
42a9744d5f
Fix some outdated comments (mostly by removing a large comment block
...
that was only causing confusing). Add free(userpath) and
free(machinepath) statements to prevent some leaks.
1998-02-19 21:00:45 +00:00
Fred Drake
6eb1f6b251
Improve support for logical node names.
1998-02-19 21:00:41 +00:00
Guido van Rossum
f4aeb84bc6
Enable CHECK_IMPORT_CASE on Win32.
1998-02-19 20:59:23 +00:00
Fred Drake
0cf0cfbaa9
Adjusted \label{} for *consistent* logical addressing.
...
Logical markup.
1998-02-19 20:59:19 +00:00
Guido van Rossum
05f9dce34f
Moved clear_carefully() to _PyModule_Clear() in moduleobject.c
...
(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.
1998-02-19 20:58:44 +00:00
Guido van Rossum
bd36dbaaa5
Make backup copies of stdin, stdout, stderr as __stdin__, __stdout__,
...
__stderr__. These will be used by the import cleanup.
1998-02-19 20:53:06 +00:00
Guido van Rossum
f1dc0615e9
Add internal routine _PyModule_Clear(), which does approximately what
...
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).
1998-02-19 20:51:52 +00:00
Fred Drake
c83db33781
Added \label{} for logical addressing.
1998-02-19 20:50:52 +00:00
Guido van Rossum
bde6ff7984
Vladimir Marangozov' performance hack: copy f_builtins from ancestor
...
if the globals are the same.
Also, when creating a dummy builtins dictionary, add "None" to it,
just to be kind.
1998-02-19 20:48:26 +00:00
Guido van Rossum
3da3fcef96
Check ferror(), not errno, for fread() error.
1998-02-19 20:46:48 +00:00
Fred Drake
9168328572
Add missing files to $(LIBFILES).
...
Run node2label.pl on the HTML versions of all the LaTeX manuals.
1998-02-19 20:46:47 +00:00
Fred Drake
c3e4549012
Added \label{} for logical addressing.
1998-02-19 20:22:13 +00:00
Fred Drake
83efb54562
Added \label{} for logical addressing.
1998-02-19 20:07:39 +00:00
Fred Drake
af9b6e6607
Added itemized list of Macintosh modules, similar to the other chapters.
1998-02-19 19:45:19 +00:00
Fred Drake
cea0e7350d
Added \label{} for logical addressing.
1998-02-19 19:40:17 +00:00
Fred Drake
83c1a39c4b
Separate chapter and section.
1998-02-19 18:59:48 +00:00
Fred Drake
baa04a1c77
Make sure the general index and about nodes get labels assigned, so they get
...
real names instead of node#.html names.
1998-02-19 18:51:39 +00:00
Fred Drake
1aabe5e4d1
Separate binhex and binuu documentation from binascii. Support better
...
module addressing in HTML.
1998-02-19 18:29:18 +00:00
Fred Drake
05ce570e8b
Remove debugging print.
...
Support {classdesc} and {fulllineitems} environments.
Support most recent logical markup.
1998-02-19 17:26:48 +00:00
Fred Drake
1f0fdde4fb
Bring date into line with the last documentation release.
1998-02-19 16:18:19 +00:00
Fred Drake
526ebb4d97
Work on a temporary file, not the input file.
1998-02-19 16:01:41 +00:00
Fred Drake
a799835460
Revised some targets to make better use of make "special" variables, to avoid
...
repeating file names.
Change lib.texi target to not overwrite the input file; work on a copy.
1998-02-19 16:01:04 +00:00
Fred Drake
ef058037a5
Support environments {fulllineitems} and {classdesc}, more of the new logical
...
markup.
The info generation now works, yet again.
1998-02-19 15:20:30 +00:00
Fred Drake
c92740708d
Adjust grouping for the "b(reak)" command syntax description. This is
...
required to get the info generation back in operation, yet again.
1998-02-19 15:18:02 +00:00
Fred Drake
20e01966f5
Logical markup.
...
Several uses of "\^" could be simplified; this fixes part of the info
generation process.
1998-02-19 15:09:35 +00:00
Fred Drake
ea8006a865
\nodename{} must immediately follow \chapter{} to be handled correctly;
...
adding the \label{} broke that.
1998-02-19 14:00:22 +00:00
Fred Drake
75bfb0f7bb
{fulllineitems} is now an environment; use it as such.
1998-02-19 06:32:06 +00:00
Fred Drake
802a202d0d
Logical markup.
...
Changed {funcdesc} to {classdesc}. This is a test case for {classdesc}.
1998-02-19 06:26:35 +00:00
Fred Drake
fb5e54d497
Mostly LaTeX style cleanup.
...
Use \newenvironment{envname} instead of \newcommand{\foo} &
\newcommand{\endfoo} (or \let\endfoo=...!) wherever reasonable.
Where {*desc} environment helper functions are not needed outside a
single environment definition, inline them.
Ensure that \seemodule{} and \seetext{} are only available within the
{seealso} environment.
Added "()" to the index entries for {funcdesc} and {cfuncdesc} environments.
Added {classdesc} environment which looks like the {funcdesc} environment
but doesn't add the parens in the index entry.
1998-02-19 06:23:06 +00:00
Fred Drake
c02fbe52b2
breakable_re: Fix the RE so that module definition entries don't prevent
...
combining.
1998-02-19 06:05:29 +00:00