]> granicus.if.org Git - python/log
python
27 years agoNew blood.
Guido van Rossum [Tue, 30 Dec 1997 04:31:04 +0000 (04:31 +0000)]
New blood.

27 years agoSet the patch level to 1.5.
Guido van Rossum [Tue, 30 Dec 1997 04:29:49 +0000 (04:29 +0000)]
Set the patch level to 1.5.

27 years agoSet the release date for 1.5 (final).
Guido van Rossum [Tue, 30 Dec 1997 04:29:30 +0000 (04:29 +0000)]
Set the release date for 1.5 (final).

27 years agothe usual
Guido van Rossum [Tue, 30 Dec 1997 04:20:58 +0000 (04:20 +0000)]
the usual

27 years agoTwo critical fixes to the changes that I made for Greg McFarlane --
Guido van Rossum [Tue, 30 Dec 1997 04:07:19 +0000 (04:07 +0000)]
Two critical fixes to the changes that I made for Greg McFarlane --
patches provided by Greg (am I glad I sent him my latest version!).

27 years agoAdded .PHONY annotation for lib.info target; the real target is
Fred Drake [Mon, 29 Dec 1997 22:04:44 +0000 (22:04 +0000)]
Added .PHONY annotation for lib.info target; the real target is
python-lib.info.  The annotation is needed to prevent at least GNU make from
building a second set of info files with the lib.info base name.

27 years agoRemove more commented-out text that is no longer needed.
Guido van Rossum [Mon, 29 Dec 1997 21:43:04 +0000 (21:43 +0000)]
Remove more commented-out text that is no longer needed.

27 years agoRemove the commented-out warning at the top. It shouldn't be there
Guido van Rossum [Mon, 29 Dec 1997 21:42:03 +0000 (21:42 +0000)]
Remove the commented-out warning at the top.  It shouldn't be there
for the 1.5 release version of the file.

27 years agoGetting uglier. But it doesn't completely bomb except for some table stuff.
Fred Drake [Mon, 29 Dec 1997 21:40:35 +0000 (21:40 +0000)]
Getting uglier.  But it doesn't completely bomb except for some table stuff.
I'll get to it when I can.

27 years agoLots of minor nits that allow this file to get processed without failures by
Fred Drake [Mon, 29 Dec 1997 21:39:39 +0000 (21:39 +0000)]
Lots of minor nits that allow this file to get processed without failures by
the info generation phases.  Most of the errors had occurred in the makeinfo
step.

Commented out the warning at the top; this should still really be removed
before 1.5, but that's not my call.  It generated problems for the info
conversion as well.

27 years agoIgnore generated info files.
Fred Drake [Mon, 29 Dec 1997 21:37:21 +0000 (21:37 +0000)]
Ignore generated info files.

27 years agoReduce warning count from partparse.py.
Fred Drake [Mon, 29 Dec 1997 21:32:26 +0000 (21:32 +0000)]
Reduce warning count from partparse.py.

Removed BaseHTTPServer.py from list of undocumented modules.

27 years agoRevised lib1.texi target to deal with some conversion nastiness. See comment.
Fred Drake [Mon, 29 Dec 1997 21:31:23 +0000 (21:31 +0000)]
Revised lib1.texi target to deal with some conversion nastiness.  See comment.

27 years agoReduce warning count from partparse.py.
Fred Drake [Mon, 29 Dec 1997 20:28:33 +0000 (20:28 +0000)]
Reduce warning count from partparse.py.

27 years agoMoved things around a bit in interact(), so outout is processed before
Guido van Rossum [Mon, 29 Dec 1997 20:05:45 +0000 (20:05 +0000)]
Moved things around a bit in interact(), so outout is processed before
input.  When an EOF is read, break out of the loop instead of (by
default) writing an empty line (which doesn't do much good).  Don't
close self when falling through the loop.

27 years agoIgnore another intermediate file from the info generation.
Fred Drake [Mon, 29 Dec 1997 20:03:46 +0000 (20:03 +0000)]
Ignore another intermediate file from the info generation.

27 years agoAt Jeff Rush' request, add Py_BEGIN/END_ALLOW_THREADS around call to
Guido van Rossum [Mon, 29 Dec 1997 20:03:10 +0000 (20:03 +0000)]
At Jeff Rush' request, add Py_BEGIN/END_ALLOW_THREADS around call to
DosSleep().

27 years agoReduce warning count from partparse.py.
Fred Drake [Mon, 29 Dec 1997 20:02:55 +0000 (20:02 +0000)]
Reduce warning count from partparse.py.

27 years agoMoved some #ifdefs around that got put in the wrong place by the
Guido van Rossum [Mon, 29 Dec 1997 20:02:27 +0000 (20:02 +0000)]
Moved some #ifdefs around that got put in the wrong place by the
latest OS/2 patch set.

27 years agoAdded Greg Stein's docs for BaseHTTPServer.py.
Guido van Rossum [Mon, 29 Dec 1997 20:01:55 +0000 (20:01 +0000)]
Added Greg Stein's docs for BaseHTTPServer.py.
Moved docs for "re" to before docs for "regex".

27 years agoMake "{" and "}" in code sample visible instead of a group (it's supposed to
Fred Drake [Mon, 29 Dec 1997 19:59:38 +0000 (19:59 +0000)]
Make "{" and "}" in code sample visible instead of a group (it's supposed to
be a dictionary...).

27 years agoFixed several bugs reported by Greg McFarmane:
Guido van Rossum [Mon, 29 Dec 1997 19:59:33 +0000 (19:59 +0000)]
Fixed several bugs reported by Greg McFarmane:

 *  The invoke methods of the three Tkinter widgets Button,
    Checkbutton and Radiobutton should return the value returned by
    the callback, (like the Menu widget does):

def invoke(self):
    return self.tk.call(self._w, 'invoke')

 *  The select_from method of the Canvas widget should use 'from', not
    'set':

def select_from(self, tagOrId, index):
    self.tk.call(self._w, 'select', 'from', tagOrId, index)

    Currently, if you use select_from, you get the error message:
 'TclError: bad select option "set": must be adjust, clear, from, item, or to'

 *  The 'entrycget' and 'type' methods of the Tk menu widget are
    missing from Tkinter.

 *  There is a bug in grid_columnconfigure and grid_rowconfigure.  For
    example, this should return the current value of the 'minsize'
    option for column 0:

f.grid_columnconfigure(0, 'minsize')

    Instead it returns the same as:

f.grid_columnconfigure(0)

    I suggest that the hint given in the comment in the
    Tkinter.Misc.configure method should be followed - "ought to
    generalize this so tag_config etc.  can use it".  Repeating the
    same configure code several times in Tkinter is inviting errors.
    [I did not follow this advice --G]

 *  The grid_slaves method should handle options.  Currently, to pass
    options to the grid_slaves method, you have to do something like:

grid_slaves('-row', 1)

27 years agoMinor editing corrections.
Guido van Rossum [Mon, 29 Dec 1997 19:57:36 +0000 (19:57 +0000)]
Minor editing corrections.

27 years agoAdded doc string, provided by Charles Waldman (with some reformatting
Guido van Rossum [Mon, 29 Dec 1997 19:52:29 +0000 (19:52 +0000)]
Added doc string, provided by Charles Waldman (with some reformatting
and a little editing my me).

27 years agoAdded missing "\" to "\var{address}, var{length}" in buffer_info() description.
Fred Drake [Mon, 29 Dec 1997 19:33:45 +0000 (19:33 +0000)]
Added missing "\" to "\var{address}, var{length}" in buffer_info() description.

27 years agoAdded doc string, provided by Charles Waldman (with some reformatting
Guido van Rossum [Mon, 29 Dec 1997 19:26:28 +0000 (19:26 +0000)]
Added doc string, provided by Charles Waldman (with some reformatting
and a little editing my me).

27 years agoReduce warning count from partparse.py.
Fred Drake [Mon, 29 Dec 1997 19:09:37 +0000 (19:09 +0000)]
Reduce warning count from partparse.py.

27 years agoUse tableii environment for the table instead of tabular. This makes it
Fred Drake [Mon, 29 Dec 1997 19:02:01 +0000 (19:02 +0000)]
Use tableii environment for the table instead of tabular.  This makes it
consistent with other 2-column tables in the Python documentation.

27 years agoReduce warning count from partparse.py.
Fred Drake [Mon, 29 Dec 1997 18:53:31 +0000 (18:53 +0000)]
Reduce warning count from partparse.py.

27 years agoNit adjustments to remove warnings when processed with partparse.py.
Fred Drake [Mon, 29 Dec 1997 18:21:37 +0000 (18:21 +0000)]
Nit adjustments to remove warnings when processed with partparse.py.

27 years agoNormalized the word "Unix" to "\UNIX{}".
Fred Drake [Mon, 29 Dec 1997 17:31:22 +0000 (17:31 +0000)]
Normalized the word "Unix" to "\UNIX{}".

Changed "{\tt crypt}" to "\sectcode{crypt}" in section heading.

27 years agoA bunch of minor stuff.
Fred Drake [Mon, 29 Dec 1997 17:19:22 +0000 (17:19 +0000)]
A bunch of minor stuff.

Lots of support for new macros defined in myformat.sty; including the new
indexing macros, seealso environment & friends, and the byte code instruction
support.

27 years agoAdded back info generation. Still buggy in the final phase (makeinfo run).
Fred Drake [Mon, 29 Dec 1997 17:17:54 +0000 (17:17 +0000)]
Added back info generation.  Still buggy in the final phase (makeinfo run).

Does not conflict with any other targets.

27 years agoAdded missing "\" to "var{P}.\var{M}" in load_module() description.
Fred Drake [Mon, 29 Dec 1997 17:16:24 +0000 (17:16 +0000)]
Added missing "\" to "var{P}.\var{M}" in load_module() description.

27 years agoRemove unneeded "{}" that confused makeinfo.
Fred Drake [Mon, 29 Dec 1997 17:11:55 +0000 (17:11 +0000)]
Remove unneeded "{}" that confused makeinfo.

27 years agoChange name of temporary file to avoid possible filesystem issues; matches
Fred Drake [Mon, 29 Dec 1997 16:58:46 +0000 (16:58 +0000)]
Change name of temporary file to avoid possible filesystem issues; matches
similar renaming of the @buildno file elsewhere in the Python tree.

27 years agoChanged all \verb\...\ markup to either \code{...} or \samp{...}.
Fred Drake [Mon, 29 Dec 1997 16:55:50 +0000 (16:55 +0000)]
Changed all \verb\...\ markup to either \code{...} or \samp{...}.

27 years agoRemoved "-*-texinfo-*-" from first line; this can cause emacs/xemacs to stop
Fred Drake [Mon, 29 Dec 1997 16:54:11 +0000 (16:54 +0000)]
Removed "-*-texinfo-*-" from first line; this can cause emacs/xemacs to stop
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.

27 years agoNormalized the \seetext markup to match the only other instance: should be
Fred Drake [Mon, 29 Dec 1997 16:37:04 +0000 (16:37 +0000)]
Normalized the \seetext markup to match the only other instance:  should be
"\seetext{...}" instead of "\seetext ...".

27 years agoChanged some \verb\...\ markup to the more common \code{...}. \verb\...\ is
Fred Drake [Mon, 29 Dec 1997 15:55:10 +0000 (15:55 +0000)]
Changed some \verb\...\ markup to the more common \code{...}.  \verb\...\ is
rarely needed and should be avoided where possible since it doesn't behave
well with some processing tools (like partparse.py).

27 years agoSolve two annoying problems with ftp URLs for Jack: when repeated
Guido van Rossum [Sun, 28 Dec 1997 04:21:20 +0000 (04:21 +0000)]
Solve two annoying problems with ftp URLs for Jack: when repeated
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.)

27 years agoDo a better job of keeping the dialog visible when the master window
Guido van Rossum [Sun, 28 Dec 1997 03:42:50 +0000 (03:42 +0000)]
Do a better job of keeping the dialog visible when the master window
is near or beyond the edge of the screen.  Patch by Skip Montanaro.

27 years agodo_env_tableii(), do_env_tableiii(): Align the table in the center, just
Fred Drake [Sun, 28 Dec 1997 03:41:07 +0000 (03:41 +0000)]
do_env_tableii(), do_env_tableiii():  Align the table in the center, just
like LaTeX does.  There's no need to diverge on this.

27 years agoTypo: Widht instead of Width...
Guido van Rossum [Sat, 27 Dec 1997 15:14:43 +0000 (15:14 +0000)]
Typo: Widht instead of Width...

27 years agoPlug the most annoying recursive printing problem -- reset '_' to None
Guido van Rossum [Fri, 26 Dec 1997 22:15:57 +0000 (22:15 +0000)]
Plug the most annoying recursive printing problem -- reset '_' to None
before printing and set it to the printed variable *after* printing
(and only when printing is successful).

27 years agoJust for fun, add a static module, "xyzzy" -- show that calling its
Guido van Rossum [Thu, 25 Dec 1997 04:51:41 +0000 (04:51 +0000)]
Just for fun, add a static module, "xyzzy" -- show that calling its
initxyzzy() works.

27 years agoAdd setsockopt...SO_REUSEADDR to avoid stupid waiting when killing and
Guido van Rossum [Thu, 25 Dec 1997 04:48:51 +0000 (04:48 +0000)]
Add setsockopt...SO_REUSEADDR to avoid stupid waiting when killing and
restarting the server.

27 years agoAdded expect() method which takes a list of regular expressions and an
Guido van Rossum [Wed, 24 Dec 1997 22:24:19 +0000 (22:24 +0000)]
Added expect() method which takes a list of regular expressions and an
optional timeout.  Also moved some imports around.

27 years agoUse string.replace instead of regsub.[g]sub.
Guido van Rossum [Wed, 24 Dec 1997 21:18:41 +0000 (21:18 +0000)]
Use string.replace instead of regsub.[g]sub.

27 years agoDecided to add the telnet library that I wrote long ago (it's still in
Guido van Rossum [Wed, 24 Dec 1997 21:07:04 +0000 (21:07 +0000)]
Decided to add the telnet library that I wrote long ago (it's still in
the Demos/cwilib directory).  Converted comments to doc strings and
used default arguments instead of *args.  Updated the example.

27 years agoChecking in fixed PS, with A4 capability.
Guido van Rossum [Wed, 24 Dec 1997 18:32:36 +0000 (18:32 +0000)]
Checking in fixed PS, with A4 capability.

27 years agoScript to edit one line in the PS to allow A4 printing.
Guido van Rossum [Wed, 24 Dec 1997 18:31:53 +0000 (18:31 +0000)]
Script to edit one line in the PS to allow A4 printing.

27 years agoUpped tcl/tk instructions for 8.0p2
Jack Jansen [Tue, 23 Dec 1997 22:56:25 +0000 (22:56 +0000)]
Upped tcl/tk instructions for 8.0p2

27 years agoAdded Jack Jansen's versioncheck to the README file.
Guido van Rossum [Tue, 23 Dec 1997 19:03:42 +0000 (19:03 +0000)]
Added Jack Jansen's versioncheck to the README file.

27 years agoAdding Jack Jansen's version checking utility.
Guido van Rossum [Tue, 23 Dec 1997 18:43:55 +0000 (18:43 +0000)]
Adding Jack Jansen's version checking utility.

27 years agoConvert a couple of three-column tables with an empty third column to
Fred Drake [Tue, 23 Dec 1997 04:21:20 +0000 (04:21 +0000)]
Convert a couple of three-column tables with an empty third column to
two-column tables.  This improves the rendering of the HTML version on
(at least) some browsers.

27 years agoRemoved unnecessary \small{} block; latex2html got it wrong and its no
Fred Drake [Tue, 23 Dec 1997 04:10:35 +0000 (04:10 +0000)]
Removed unnecessary \small{} block; latex2html got it wrong and its no
longer needed for printed output.

27 years agoRemoved unnecessary \small{} block; latex2html got it wrong and its no
Fred Drake [Tue, 23 Dec 1997 04:03:26 +0000 (04:03 +0000)]
Removed unnecessary \small{} block; latex2html got it wrong and its no
longer needed for printed output.

27 years agoAMK's latest -- synchronized with PCRE 1.04.
Guido van Rossum [Mon, 22 Dec 1997 22:46:52 +0000 (22:46 +0000)]
AMK's latest -- synchronized with PCRE 1.04.

27 years agoAMK's latest
Guido van Rossum [Mon, 22 Dec 1997 22:41:40 +0000 (22:41 +0000)]
AMK's latest

27 years agodo_env_tableii(), do_cmd_lineii(),
Fred Drake [Mon, 22 Dec 1997 22:37:34 +0000 (22:37 +0000)]
do_env_tableii(), do_cmd_lineii(),
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.

27 years agoConverted to use re instead of regex; version 0.9.0.
Guido van Rossum [Sun, 21 Dec 1997 07:05:32 +0000 (07:05 +0000)]
Converted to use re instead of regex; version 0.9.0.

27 years agoOops, left in a non-standard multi-line doc string that GCC finds okay
Guido van Rossum [Sun, 21 Dec 1997 06:46:20 +0000 (06:46 +0000)]
Oops, left in a non-standard multi-line doc string that GCC finds okay
but other compilers don't like.

27 years agoOops, tiny fix for the DGUX rule when installing -- don't fail when
Guido van Rossum [Fri, 19 Dec 1997 23:02:22 +0000 (23:02 +0000)]
Oops, tiny fix for the DGUX rule when installing -- don't fail when
libpython$(VERSION).so doesn't exist.

27 years agoAdded bsddb project
Guido van Rossum [Fri, 19 Dec 1997 04:49:27 +0000 (04:49 +0000)]
Added bsddb project

27 years agoAdd new optional parameter 'suffix' (default ''), which is appended to
Guido van Rossum [Fri, 19 Dec 1997 04:29:50 +0000 (04:29 +0000)]
Add new optional parameter 'suffix' (default ''), which is appended to
the temporary file name.  Also some minor formatting of Jim F's code.

27 years agoOops -- '(' is also a legal start character of a new format...
Guido van Rossum [Fri, 19 Dec 1997 04:25:23 +0000 (04:25 +0000)]
Oops -- '(' is also a legal start character of a new format...

27 years agoAdded doc strings, suggested by Charles G. Waldman (but massaged quite a bit).
Guido van Rossum [Fri, 19 Dec 1997 04:24:24 +0000 (04:24 +0000)]
Added doc strings, suggested by Charles G. Waldman (but massaged quite a bit).

27 years agoPatch by Brian Gallew for DG/UX. I'm not quite sure what it does but
Guido van Rossum [Thu, 18 Dec 1997 23:55:32 +0000 (23:55 +0000)]
Patch by Brian Gallew for DG/UX.  I'm not quite sure what it does but
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.

27 years agoTwo unrelated changes:
Guido van Rossum [Thu, 18 Dec 1997 23:42:19 +0000 (23:42 +0000)]
Two unrelated changes:

- 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.

27 years agoMoved toolbox to lib-toolbox, Sjoerd-style.
Jack Jansen [Thu, 18 Dec 1997 17:50:29 +0000 (17:50 +0000)]
Moved toolbox to lib-toolbox, Sjoerd-style.

27 years agoMoved scripting to lib-scripting (did it the Sjoerd-way this time)
Jack Jansen [Thu, 18 Dec 1997 17:47:12 +0000 (17:47 +0000)]
Moved scripting to lib-scripting (did it the Sjoerd-way this time)

27 years agoReplace unprotected tilders by \~ -- an unprotected tilde is a
Guido van Rossum [Thu, 18 Dec 1997 16:28:56 +0000 (16:28 +0000)]
Replace unprotected tilders by \~ -- an unprotected tilde is a
non-breaking space!

27 years agoChange {\em ...} to \emph{...}; this seems to be the developing preference
Fred Drake [Thu, 18 Dec 1997 15:56:05 +0000 (15:56 +0000)]
Change {\em ...} to \emph{...}; this seems to be the developing preference
throughout the manuals, and seems easier to read.

27 years agoimg_tag(), top_navigation_panel(): Generate markup the same case as other
Fred Drake [Thu, 18 Dec 1997 14:16:46 +0000 (14:16 +0000)]
img_tag(), top_navigation_panel():  Generate markup the same case as other
functions in this file.

27 years agomake_mod_index_entry(): Generate markup the same case as other functions in
Fred Drake [Thu, 18 Dec 1997 14:14:16 +0000 (14:14 +0000)]
make_mod_index_entry():  Generate markup the same case as other functions in
this file.

27 years agoOops, the output file really should be called zlib.pyd here!
Guido van Rossum [Thu, 18 Dec 1997 05:27:55 +0000 (05:27 +0000)]
Oops, the output file really should be called zlib.pyd here!

27 years agoAdded project for zlib
Guido van Rossum [Thu, 18 Dec 1997 05:22:23 +0000 (05:22 +0000)]
Added project for zlib

27 years agoWin32 treatment.
Guido van Rossum [Thu, 18 Dec 1997 05:21:29 +0000 (05:21 +0000)]
Win32 treatment.

27 years agoMake this test succeed even when using "import test.test_zlib".
Guido van Rossum [Thu, 18 Dec 1997 05:21:07 +0000 (05:21 +0000)]
Make this test succeed even when using "import test.test_zlib".

27 years agoChanges for older Win platforms by Jim Ahlstrom
Guido van Rossum [Wed, 17 Dec 1997 21:27:23 +0000 (21:27 +0000)]
Changes for older Win platforms by Jim Ahlstrom

27 years agoTiny doc patch for QNS
Guido van Rossum [Wed, 17 Dec 1997 21:08:34 +0000 (21:08 +0000)]
Tiny doc patch for QNS

27 years agoOops! Should've renamed dos_8x3 to dos-8x3 here, too.
Guido van Rossum [Wed, 17 Dec 1997 18:57:16 +0000 (18:57 +0000)]
Oops!  Should've renamed dos_8x3 to dos-8x3 here, too.

27 years agoMake the word "Module" in the section header start with an upper-case "M".
Fred Drake [Wed, 17 Dec 1997 15:30:07 +0000 (15:30 +0000)]
Make the word "Module" in the section header start with an upper-case "M".

Include "()" when naming functions in the text.

Fixed reference to the built-in str() function.

Format constant names using \code{}.

27 years agoMake the word "Module" in the section header start with an upper-case "M".
Fred Drake [Wed, 17 Dec 1997 14:17:35 +0000 (14:17 +0000)]
Make the word "Module" in the section header start with an upper-case "M".

Added index entry for RFC 1014.

27 years agoMake the word "Module" in the section header start with an upper-case "M"
Fred Drake [Wed, 17 Dec 1997 14:12:31 +0000 (14:12 +0000)]
Make the word "Module" in the section header start with an upper-case "M"
for all three modules described here.

Added a \label{} for each of the two modules missing it.

27 years agoMake the word "Module" in the section header start with an upper-case "M".
Fred Drake [Wed, 17 Dec 1997 14:11:18 +0000 (14:11 +0000)]
Make the word "Module" in the section header start with an upper-case "M".

Added a \label{} for the module.

Fixed one minor grammatical nit:  use plural pronoun to refer to a pair of
referents.

Include "()" when naming functions in the text.

27 years agoMake the word "Module" in the section header start with an upper-case "M".
Fred Drake [Wed, 17 Dec 1997 14:08:01 +0000 (14:08 +0000)]
Make the word "Module" in the section header start with an upper-case "M".

27 years agoMake the word "Module" in the section header start with an upper-case "M".
Fred Drake [Wed, 17 Dec 1997 14:07:25 +0000 (14:07 +0000)]
Make the word "Module" in the section header start with an upper-case "M".

Added a \label{} for the module.

Changed one \code{} to a \samp{}.

27 years agoMake the word "Module" in the section header start with an upper-case "M".
Fred Drake [Wed, 17 Dec 1997 14:01:52 +0000 (14:01 +0000)]
Make the word "Module" in the section header start with an upper-case "M".

27 years agoMake the word "Module" in the section header start with an upper-case "M"
Fred Drake [Wed, 17 Dec 1997 14:01:31 +0000 (14:01 +0000)]
Make the word "Module" in the section header start with an upper-case "M"
for both modules documented here.

27 years agoMake the word "Module" in the section header start with an upper-case "M".
Fred Drake [Wed, 17 Dec 1997 13:52:04 +0000 (13:52 +0000)]
Make the word "Module" in the section header start with an upper-case "M".

27 years agoMake the word "Module" in the section header start with an upper-case "M".
Fred Drake [Wed, 17 Dec 1997 13:51:08 +0000 (13:51 +0000)]
Make the word "Module" in the section header start with an upper-case "M".

Minor grammatical nit.

27 years agoMake the word "Module" in the section header start with an upper-case "M".
Fred Drake [Wed, 17 Dec 1997 13:47:39 +0000 (13:47 +0000)]
Make the word "Module" in the section header start with an upper-case "M".

Remove the leading comment declaring this to be a template for module
documentation.

27 years agoMake the word "Module" in the section header start with an upper-case "M"
Fred Drake [Wed, 17 Dec 1997 13:45:50 +0000 (13:45 +0000)]
Make the word "Module" in the section header start with an upper-case "M"
for both modules documented here.

27 years agoMake the word "Module" in the section header start with an upper-case "M"
Fred Drake [Wed, 17 Dec 1997 13:44:37 +0000 (13:44 +0000)]
Make the word "Module" in the section header start with an upper-case "M"
for both built-in and standard modules.  They were different.

27 years agogen_index_id(): New function. Construct an index key such that the sort
Fred Drake [Wed, 17 Dec 1997 03:08:27 +0000 (03:08 +0000)]
gen_index_id():  New function.  Construct an index key such that the sort
is stable and the form is only defined in one place, since we do
some fancy footwork with the keys to separate the defining instance
of a module reference from other references in the HTML index.

make_index_entry():  Override the standard definition to use get_index_id().

make_str_index_entry():  Moved to myformat.perl; only needed there.

index_key_eq():  Override the standard definition.  Add key transforms to
remove extra junk from the end of the keys; it was only there to
maintain ordering.

clean_key():  Remove key transform no longer needed at this stage, because
keeping it makes the sort unstable.

add_idx():  Add key transforms to undo the mess we do to separate a module's
defining and reference entries.  Don't make the text bold.

27 years agomake_mod_index_entry(): New function. Create the index entry for a module.
Fred Drake [Wed, 17 Dec 1997 02:59:39 +0000 (02:59 +0000)]
make_mod_index_entry():  New function.  Create the index entry for a module.

my_module_index_helper():  Do the actual work for \*modindex{}, including
both the defining and reference forms.

make_str_index_entry():  Moved from .latex2html-init; it's really specific
to the presentation.

27 years agoAMK's latest; plus three null bytes that I added for purify
Guido van Rossum [Wed, 17 Dec 1997 00:24:13 +0000 (00:24 +0000)]
AMK's latest; plus three null bytes that I added for purify

27 years agoAMK's latest
Guido van Rossum [Wed, 17 Dec 1997 00:23:39 +0000 (00:23 +0000)]
AMK's latest