]> granicus.if.org Git - python/log
python
27 years agoChange default RCS bin directory to /usr/local/bin/.
Guido van Rossum [Thu, 19 Feb 1998 21:29:38 +0000 (21:29 +0000)]
Change default RCS bin directory to /usr/local/bin/.

27 years agoDelete the 'exit' command from the Tcl interpreter -- it would allow
Guido van Rossum [Thu, 19 Feb 1998 21:28:49 +0000 (21:28 +0000)]
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.)

27 years agoFix bug in trace_vdelete(); should use master's delete command.
Guido van Rossum [Thu, 19 Feb 1998 21:20:30 +0000 (21:20 +0000)]
Fix bug in trace_vdelete(); should use master's delete command.

27 years agoAdded debug statements to report data actually sent and received on
Guido van Rossum [Thu, 19 Feb 1998 21:19:48 +0000 (21:19 +0000)]
Added debug statements to report data actually sent and received on
the socket.

27 years agoFix for literal null bytes -- these must be replaced by the four
Guido van Rossum [Thu, 19 Feb 1998 21:18:56 +0000 (21:18 +0000)]
Fix for literal null bytes -- these must be replaced by the four
characters \, 0, 0, 0.

27 years agoFixed a bug in the gauss() function. The bug was reported by Mike
Guido van Rossum [Thu, 19 Feb 1998 21:17:42 +0000 (21:17 +0000)]
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.

27 years agoAdd rmd() (remove directory command); fix comment in parse257.
Guido van Rossum [Thu, 19 Feb 1998 21:15:44 +0000 (21:15 +0000)]
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!).

27 years agoFaster implementation of normcase (using string.lower(
Guido van Rossum [Thu, 19 Feb 1998 21:08:36 +0000 (21:08 +0000)]
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...

27 years agoJeff Kunce writes (and he is right):
Guido van Rossum [Thu, 19 Feb 1998 21:02:32 +0000 (21:02 +0000)]
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..."
          ^^^^

27 years agoRevise comment about the {fulllineitems} environment to be accurate.
Fred Drake [Thu, 19 Feb 1998 21:02:26 +0000 (21:02 +0000)]
Revise comment about the {fulllineitems} environment to be accurate.

27 years agoFix some outdated comments (mostly by removing a large comment block
Guido van Rossum [Thu, 19 Feb 1998 21:00:45 +0000 (21:00 +0000)]
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.

27 years agoImprove support for logical node names.
Fred Drake [Thu, 19 Feb 1998 21:00:41 +0000 (21:00 +0000)]
Improve support for logical node names.

27 years agoEnable CHECK_IMPORT_CASE on Win32.
Guido van Rossum [Thu, 19 Feb 1998 20:59:23 +0000 (20:59 +0000)]
Enable CHECK_IMPORT_CASE on Win32.

27 years agoAdjusted \label{} for *consistent* logical addressing.
Fred Drake [Thu, 19 Feb 1998 20:59:19 +0000 (20:59 +0000)]
Adjusted \label{} for *consistent* logical addressing.

Logical markup.

27 years agoMoved clear_carefully() to _PyModule_Clear() in moduleobject.c
Guido van Rossum [Thu, 19 Feb 1998 20:58:44 +0000 (20:58 +0000)]
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.

27 years agoMake backup copies of stdin, stdout, stderr as __stdin__, __stdout__,
Guido van Rossum [Thu, 19 Feb 1998 20:53:06 +0000 (20:53 +0000)]
Make backup copies of stdin, stdout, stderr as __stdin__, __stdout__,
__stderr__.  These will be used by the import cleanup.

27 years agoAdd internal routine _PyModule_Clear(), which does approximately what
Guido van Rossum [Thu, 19 Feb 1998 20:51:52 +0000 (20:51 +0000)]
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).

27 years agoAdded \label{} for logical addressing.
Fred Drake [Thu, 19 Feb 1998 20:50:52 +0000 (20:50 +0000)]
Added \label{} for logical addressing.

27 years agoVladimir Marangozov' performance hack: copy f_builtins from ancestor
Guido van Rossum [Thu, 19 Feb 1998 20:48:26 +0000 (20:48 +0000)]
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.

27 years agoCheck ferror(), not errno, for fread() error.
Guido van Rossum [Thu, 19 Feb 1998 20:46:48 +0000 (20:46 +0000)]
Check ferror(), not errno, for fread() error.

27 years agoAdd missing files to $(LIBFILES).
Fred Drake [Thu, 19 Feb 1998 20:46:47 +0000 (20:46 +0000)]
Add missing files to $(LIBFILES).

Run node2label.pl on the HTML versions of all the LaTeX manuals.

27 years agoAdded \label{} for logical addressing.
Fred Drake [Thu, 19 Feb 1998 20:22:13 +0000 (20:22 +0000)]
Added \label{} for logical addressing.

27 years agoAdded \label{} for logical addressing.
Fred Drake [Thu, 19 Feb 1998 20:07:39 +0000 (20:07 +0000)]
Added \label{} for logical addressing.

27 years agoAdded itemized list of Macintosh modules, similar to the other chapters.
Fred Drake [Thu, 19 Feb 1998 19:45:19 +0000 (19:45 +0000)]
Added itemized list of Macintosh modules, similar to the other chapters.

27 years agoAdded \label{} for logical addressing.
Fred Drake [Thu, 19 Feb 1998 19:40:17 +0000 (19:40 +0000)]
Added \label{} for logical addressing.

27 years agoSeparate chapter and section.
Fred Drake [Thu, 19 Feb 1998 18:59:48 +0000 (18:59 +0000)]
Separate chapter and section.

27 years agoMake sure the general index and about nodes get labels assigned, so they get
Fred Drake [Thu, 19 Feb 1998 18:51:39 +0000 (18:51 +0000)]
Make sure the general index and about nodes get labels assigned, so they get
real names instead of node#.html names.

27 years agoSeparate binhex and binuu documentation from binascii. Support better
Fred Drake [Thu, 19 Feb 1998 18:29:18 +0000 (18:29 +0000)]
Separate binhex and binuu documentation from binascii.  Support better
module addressing in HTML.

27 years agoRemove debugging print.
Fred Drake [Thu, 19 Feb 1998 17:26:48 +0000 (17:26 +0000)]
Remove debugging print.

Support {classdesc} and {fulllineitems} environments.

Support most recent logical markup.

27 years agoBring date into line with the last documentation release.
Fred Drake [Thu, 19 Feb 1998 16:18:19 +0000 (16:18 +0000)]
Bring date into line with the last documentation release.

27 years agoWork on a temporary file, not the input file.
Fred Drake [Thu, 19 Feb 1998 16:01:41 +0000 (16:01 +0000)]
Work on a temporary file, not the input file.

27 years agoRevised some targets to make better use of make "special" variables, to avoid
Fred Drake [Thu, 19 Feb 1998 16:01:04 +0000 (16:01 +0000)]
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.

27 years agoSupport environments {fulllineitems} and {classdesc}, more of the new logical
Fred Drake [Thu, 19 Feb 1998 15:20:30 +0000 (15:20 +0000)]
Support environments {fulllineitems} and {classdesc}, more of the new logical
markup.

The info generation now works, yet again.

27 years agoAdjust grouping for the "b(reak)" command syntax description. This is
Fred Drake [Thu, 19 Feb 1998 15:18:02 +0000 (15:18 +0000)]
Adjust grouping for the "b(reak)" command syntax description.  This is
required to get the info generation back in operation, yet again.

27 years agoLogical markup.
Fred Drake [Thu, 19 Feb 1998 15:09:35 +0000 (15:09 +0000)]
Logical markup.

Several uses of "\^" could be simplified; this fixes part of the info
generation process.

27 years ago\nodename{} must immediately follow \chapter{} to be handled correctly;
Fred Drake [Thu, 19 Feb 1998 14:00:22 +0000 (14:00 +0000)]
\nodename{} must immediately follow \chapter{} to be handled correctly;
adding the \label{} broke that.

27 years ago{fulllineitems} is now an environment; use it as such.
Fred Drake [Thu, 19 Feb 1998 06:32:06 +0000 (06:32 +0000)]
{fulllineitems} is now an environment; use it as such.

27 years agoLogical markup.
Fred Drake [Thu, 19 Feb 1998 06:26:35 +0000 (06:26 +0000)]
Logical markup.

Changed {funcdesc} to {classdesc}.  This is a test case for {classdesc}.

27 years agoMostly LaTeX style cleanup.
Fred Drake [Thu, 19 Feb 1998 06:23:06 +0000 (06:23 +0000)]
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.

27 years agobreakable_re: Fix the RE so that module definition entries don't prevent
Fred Drake [Thu, 19 Feb 1998 06:05:29 +0000 (06:05 +0000)]
breakable_re:  Fix the RE so that module definition entries don't prevent
combining.

27 years agoFeature added by Bill van Melle: when no timezone is present, assume
Guido van Rossum [Thu, 19 Feb 1998 00:28:58 +0000 (00:28 +0000)]
Feature added by Bill van Melle: when no timezone is present, assume
local time -- that's better than failure.

27 years ago&do_cmd_url,
Fred Drake [Wed, 18 Feb 1998 22:45:53 +0000 (22:45 +0000)]
&do_cmd_url,
&do_cmd_email:  Adjust to use a font similar to that used in the printed
representation.

&my_module_index_helper:  Change to be only used for defining markup.  Don't
prepend an <A NAME=...> to the result; use the containing page as
the module target for the index.

&ref_module_index_helper:  New function.  Used only for references to modules
described elsewhere.  Generate the right target.

&init_myformat:  Set the anchor_mark to an empty string; this avoids junky
"&#160;"'s in the text, which could really screw up vertical spacing
when that's all that's in a paragraph.

&do_cmd_seemodule:  Insert markup to jump right to the referred-to module.

27 years agoConsistent spelling: "time zone" -> "timezone".
Guido van Rossum [Wed, 18 Feb 1998 21:47:29 +0000 (21:47 +0000)]
Consistent spelling: "time zone" -> "timezone".

Clarify that the sign of the timezone offset returned by
parsedate_tz() is the opposite of time.timezone.

27 years agoAdd named destinations for \label{} in the PDF.
Fred Drake [Wed, 18 Feb 1998 17:21:09 +0000 (17:21 +0000)]
Add named destinations for \label{} in the PDF.

Fix \email{} so it doesn't rely on \url{}.

27 years agoAdd new files from the Mac user interface breakup.
Fred Drake [Wed, 18 Feb 1998 17:19:53 +0000 (17:19 +0000)]
Add new files from the Mac user interface breakup.

27 years agoSeparate Mac user interface modules into separate files, to better support
Fred Drake [Wed, 18 Feb 1998 17:19:11 +0000 (17:19 +0000)]
Separate Mac user interface modules into separate files, to better support
bookmarkable module sections in the HTML.

27 years agorrggbb_to_triplet(), triplet_to_rrggbb(): Improvements given by GvR
Barry Warsaw [Wed, 18 Feb 1998 17:01:12 +0000 (17:01 +0000)]
rrggbb_to_triplet(), triplet_to_rrggbb(): Improvements given by GvR

27 years agoVery modest improvements
Barry Warsaw [Wed, 18 Feb 1998 17:00:24 +0000 (17:00 +0000)]
Very modest improvements

27 years agoGet rid of commented out, slower versions
Barry Warsaw [Wed, 18 Feb 1998 16:22:52 +0000 (16:22 +0000)]
Get rid of commented out, slower versions

27 years agoImplementation using TCLPROC loaded into the Tcl interpreter
Barry Warsaw [Wed, 18 Feb 1998 16:22:22 +0000 (16:22 +0000)]
Implementation using TCLPROC loaded into the Tcl interpreter

27 years agoSmall patches to the DJGPP version of check_case().
Guido van Rossum [Wed, 18 Feb 1998 16:21:00 +0000 (16:21 +0000)]
Small patches to the DJGPP version of check_case().

27 years agoassure a consistent assignment for nodes with multiple labels
Jeremy Hylton [Wed, 18 Feb 1998 16:10:22 +0000 (16:10 +0000)]
assure a consistent assignment for nodes with multiple labels

27 years agoAdded a number of items....
Fred Drake [Wed, 18 Feb 1998 16:03:43 +0000 (16:03 +0000)]
Added a number of items....

27 years agoAdded libsymbol.tex, libtoken.tex to dependencies for the libref.
Fred Drake [Wed, 18 Feb 1998 16:02:14 +0000 (16:02 +0000)]
Added libsymbol.tex, libtoken.tex to dependencies for the libref.

New targets:  ???-all, for each document.  This creates all formats of the
named document (DVI, HTML, PDF, PS).

l2hlib:  Added commands to translate node*.html to use the \label{} stuff,
as supported by Jeremy's node2html.pl.  This gives us mostly
bookmarkable nodes.

27 years agoSeparate the parse, symbol, and token documentation into separate files.
Fred Drake [Wed, 18 Feb 1998 15:59:13 +0000 (15:59 +0000)]
Separate the parse, symbol, and token documentation into separate files.

27 years agoAdded \label{} for logical addressing.
Fred Drake [Wed, 18 Feb 1998 15:47:17 +0000 (15:47 +0000)]
Added \label{} for logical addressing.

27 years agoAdded \label{} for logical addressing.
Fred Drake [Wed, 18 Feb 1998 15:40:11 +0000 (15:40 +0000)]
Added \label{} for logical addressing.

27 years agoAdded \label{} for logical addressing.
Fred Drake [Wed, 18 Feb 1998 15:39:15 +0000 (15:39 +0000)]
Added \label{} for logical addressing.

Logical markup.

27 years agoAdded \label{} for logical addressing.
Fred Drake [Wed, 18 Feb 1998 15:22:08 +0000 (15:22 +0000)]
Added \label{} for logical addressing.

27 years agoAdded \label{} for logical addressing.
Fred Drake [Wed, 18 Feb 1998 15:21:26 +0000 (15:21 +0000)]
Added \label{} for logical addressing.

Logical markup.

27 years agoAdded \label{} for logical addressing.
Fred Drake [Wed, 18 Feb 1998 15:10:24 +0000 (15:10 +0000)]
Added \label{} for logical addressing.

27 years agoAdded \label{} for logical addressing.
Fred Drake [Wed, 18 Feb 1998 15:05:47 +0000 (15:05 +0000)]
Added \label{} for logical addressing.

Logical markup.

27 years agoDon't make backups.
Fred Drake [Wed, 18 Feb 1998 14:52:24 +0000 (14:52 +0000)]
Don't make backups.

Use "mv" instead of "ln -s" to install the new names.

27 years ago\url{}: For pdflatex, make the link active & make it blue. If anyone figures
Fred Drake [Wed, 18 Feb 1998 14:24:19 +0000 (14:24 +0000)]
\url{}:  For pdflatex, make the link active & make it blue.  If anyone figures
out how to make the border go away completely, please let me know!

27 years agoAdd normpath(). Clarify normcase(). (Note -- this doc section
Guido van Rossum [Wed, 18 Feb 1998 14:00:05 +0000 (14:00 +0000)]
Add normpath().  Clarify normcase().  (Note -- this doc section
probably needs more work, describing new functions and the differences
between unix/mac/win.

27 years agoPatch HREFs in html files, replacing nodeXXX.html with label.html.
Jeremy Hylton [Wed, 18 Feb 1998 13:53:48 +0000 (13:53 +0000)]
Patch HREFs in html files, replacing nodeXXX.html with label.html.

27 years ago(1) Change normpath() to *not* also call normcase().
Guido van Rossum [Wed, 18 Feb 1998 13:48:31 +0000 (13:48 +0000)]
(1) Change normpath() to *not* also call normcase().

(2) Fix normcase() to use string.lower() and string.replace() -- it
turns out that the table constructed for translate() didn't work in
locales that have a different number of lowercase and uppercase
letters.

27 years agoAdd mktime_tz(). Add () to a function reference in parsedate_tz().
Guido van Rossum [Wed, 18 Feb 1998 05:09:14 +0000 (05:09 +0000)]
Add mktime_tz().  Add () to a function reference in parsedate_tz().

27 years agoFix sign reversal in mktime_tz discovered by Bill van Melle.
Guido van Rossum [Wed, 18 Feb 1998 05:06:30 +0000 (05:06 +0000)]
Fix sign reversal in mktime_tz discovered by Bill van Melle.

27 years ago__modified(): Make sure `rgbs' is a tuple
Barry Warsaw [Wed, 18 Feb 1998 00:06:20 +0000 (00:06 +0000)]
__modified(): Make sure `rgbs' is a tuple

27 years agoSeveral optimizations:
Barry Warsaw [Wed, 18 Feb 1998 00:05:59 +0000 (00:05 +0000)]
Several optimizations:

    self.__chips now contains the list of rgbtuple values for the
    chips named i - 1 (Tkinter counts from 1, we count from zero).
    The chip number was just the index + 1.  This means color lookup
    need not do an itemcget(), it can just index into __chips.

    instead of calling __canvas.itemconfigure(), we glom up a huge Tcl
    script and call tk.eval() directly.  Actually we do many appends
    to a Python list, then string.join() them together into one huge
    string.  This reduces the overhead of Tkinter but making one fast
    call to Tcl.

27 years agoCache conversions from triplets to rrggbb's and vice versa. Wasteful
Barry Warsaw [Wed, 18 Feb 1998 00:02:26 +0000 (00:02 +0000)]
Cache conversions from triplets to rrggbb's and vice versa.  Wasteful
on space, but improves performance.  Also use map to calculate
triplet_to_pmwrgb().

27 years agomain(): Include a \label{modindex} in the output so latex won't let us re-use
Fred Drake [Tue, 17 Feb 1998 23:13:19 +0000 (23:13 +0000)]
main():  Include a \label{modindex} in the output so latex won't let us re-use
the name elsewhere.  This is useful for the logical filenames project,
since the "modindex" label is hardcoded into .latex2html-init.

27 years ago&do_cmd_textohtmlmoduleindex: Get the modindex key added to the label->node
Fred Drake [Tue, 17 Feb 1998 23:11:40 +0000 (23:11 +0000)]
&do_cmd_textohtmlmoduleindex:  Get the modindex key added to the label->node
association.

27 years agoAdded \label{} for logical addressing.
Fred Drake [Tue, 17 Feb 1998 22:30:13 +0000 (22:30 +0000)]
Added \label{} for logical addressing.

27 years agoAdded about dialog
Barry Warsaw [Tue, 17 Feb 1998 22:25:23 +0000 (22:25 +0000)]
Added about dialog

27 years agoUse \manpage{} markup for referencing a UNIX man page.
Fred Drake [Tue, 17 Feb 1998 22:24:45 +0000 (22:24 +0000)]
Use \manpage{} markup for referencing a UNIX man page.

Added index entry for DES cipher.

27 years agoAdded comment explaining the only warning produced by makeindex, since there
Fred Drake [Tue, 17 Feb 1998 20:31:08 +0000 (20:31 +0000)]
Added comment explaining the only warning produced by makeindex, since there
doesn't appear to be a way to fix that's reasonable.

27 years agoRemove Macintosh ligatures item. Solution: Update your Times fonts.
Fred Drake [Tue, 17 Feb 1998 20:14:12 +0000 (20:14 +0000)]
Remove Macintosh ligatures item.  Solution:  Update your Times fonts.

Added native package semantics note.

27 years agoStarted a TODO list with the latest bug reports.
Fred Drake [Tue, 17 Feb 1998 19:01:02 +0000 (19:01 +0000)]
Started a TODO list with the latest bug reports.

In part prompted by questions from AMK.

27 years agoClarified comment about the PS generation when using the all-pdf target.
Fred Drake [Tue, 17 Feb 1998 18:20:30 +0000 (18:20 +0000)]
Clarified comment about the PS generation when using the all-pdf target.

27 years agoAdd magic to make PDF generation use maximal compression.
Fred Drake [Tue, 17 Feb 1998 15:56:55 +0000 (15:56 +0000)]
Add magic to make PDF generation use maximal compression.

27 years agoAdded all-formats target: use this to get both PDF and PS files; using the
Fred Drake [Tue, 17 Feb 1998 15:45:25 +0000 (15:45 +0000)]
Added all-formats target:  use this to get both PDF and PS files; using the
"alternate" rules for PDF generation doesn't ensure the PS files get
generated since distiller isn't used.

Switch to the "alternate" rules for PDF generation; this is starting to make
more sense than the distiller-based rule, and requires only free software.
I'm also confident it's working well (meaning I paged through all four
pdflatex-generated PDF files).

27 years agoUpdated date for interim documentation release.
Fred Drake [Tue, 17 Feb 1998 15:41:45 +0000 (15:41 +0000)]
Updated date for interim documentation release.

27 years agoIf generating PDF, include the author and title information in acroread's
Fred Drake [Tue, 17 Feb 1998 15:13:01 +0000 (15:13 +0000)]
If generating PDF, include the author and title information in acroread's
"File->General Info" dialog.

27 years agoMassive changes. Fewer warnings from the Python Library Reference. Still
Fred Drake [Tue, 17 Feb 1998 05:54:46 +0000 (05:54 +0000)]
Massive changes.  Fewer warnings from the Python Library Reference.  Still
messy, but the thing seems to be working without bombing completely today.
Formatting lib.texi with TeX doesn't seem to do too badly, either!

Info formatting isn't quite there; that might just have to disappear this
time.

27 years agoAdded chip selection stuff, strip label
Barry Warsaw [Tue, 17 Feb 1998 03:09:40 +0000 (03:09 +0000)]
Added chip selection stuff, strip label

27 years agoAdded method to set selected color to nearest.
Barry Warsaw [Tue, 17 Feb 1998 03:09:19 +0000 (03:09 +0000)]
Added method to set selected color to nearest.

Collapsed `Options' group into `Current Color' group

Set delegate of reds, greens, blues

27 years agoUpdate indexsubitem for file attributes correctly.
Fred Drake [Tue, 17 Feb 1998 02:11:21 +0000 (02:11 +0000)]
Update indexsubitem for file attributes correctly.

27 years ago\nodename{} must appear immediately after \section{} for the info conversion.
Fred Drake [Tue, 17 Feb 1998 02:10:41 +0000 (02:10 +0000)]
\nodename{} must appear immediately after \section{} for the info conversion.

27 years agoIndent {verbatim} environments like in the printed version.
Fred Drake [Mon, 16 Feb 1998 22:50:06 +0000 (22:50 +0000)]
Indent {verbatim} environments like in the printed version.

27 years agoMove optional package inclusions to the top, to make them easier to find.
Fred Drake [Mon, 16 Feb 1998 22:30:10 +0000 (22:30 +0000)]
Move optional package inclusions to the top, to make them easier to find.
Code elsewhere in this file tests for the inclusion of the package and does
not need to be uncommented.  Comments explain what they do and how to
disable them.

Added support for the optional "fancyhdr" package.  If used, page footers
include chapter information on the left and section information on the right.

Both optional packages, "fancyhdr" and "times", are enabled by default.  We
may want to disable them before shipping, but I'm not completely convinced.
(How many installations format their own documentation?)

27 years agoOh, well, various miscellaneous changes.
Guido van Rossum [Mon, 16 Feb 1998 22:19:21 +0000 (22:19 +0000)]
Oh, well, various miscellaneous changes.

27 years agoSwap two statements in the dedent check loop. This makes absolutely
Guido van Rossum [Mon, 16 Feb 1998 22:18:00 +0000 (22:18 +0000)]
Swap two statements in the dedent check loop.  This makes absolutely
no difference, but avoids triggering an optimizer bug in the AIX
compiler where the loop unrolling does the wrong thing...

27 years agoNNTP.xgtitle() description: Add a missing ")" from the response value
Fred Drake [Mon, 16 Feb 1998 21:57:37 +0000 (21:57 +0000)]
NNTP.xgtitle() description:  Add a missing ")" from the response value
description.

NNTP.xover() description:  Adjust some markup for consistency.

27 years agoMade the area for wildcards in the description wider, so we don't invade the
Fred Drake [Mon, 16 Feb 1998 21:37:58 +0000 (21:37 +0000)]
Made the area for wildcards in the description wider, so we don't invade the
left margin.

27 years agoFixed formatting of the program name for crypt.
Fred Drake [Mon, 16 Feb 1998 21:36:57 +0000 (21:36 +0000)]
Fixed formatting of the program name for crypt.

Added another index entry.

27 years agoIn the example file name, use the current Python version, not a hardcoded
Fred Drake [Mon, 16 Feb 1998 21:25:53 +0000 (21:25 +0000)]
In the example file name, use the current Python version, not a hardcoded
value.

Use logical markup.

27 years agoFor the lists which describe the regular expression syntax, increase the
Fred Drake [Mon, 16 Feb 1998 21:21:13 +0000 (21:21 +0000)]
For the lists which describe the regular expression syntax, increase the
width available so we don't run into the left page margin.

27 years agoUse \version to get the current Python version number, where possible. This
Fred Drake [Mon, 16 Feb 1998 20:58:58 +0000 (20:58 +0000)]
Use \version to get the current Python version number, where possible.  This
can only be done in the running text, and not in {verbatim} environments.