]> granicus.if.org Git - python/log
python
24 years agoUpdate the dependency information to allow the other Makefiles to handle
Fred Drake [Thu, 26 Oct 2000 19:26:47 +0000 (19:26 +0000)]
Update the dependency information to allow the other Makefiles to handle
as much of this as possible.  Avoids propogating information about how
various outputs relate (or don't!).

24 years agoNoted that building the info version requires the HTML::Element package,
Fred Drake [Thu, 26 Oct 2000 19:01:46 +0000 (19:01 +0000)]
Noted that building the info version requires the HTML::Element package,
and provided instructions for getting it installed.

24 years agoAll acknowledgements have been moved to the Doc/ACKS file.
Fred Drake [Thu, 26 Oct 2000 17:19:58 +0000 (17:19 +0000)]
All acknowledgements have been moved to the Doc/ACKS file.

Adjusted to reflect the rename of Setup.in to Setup.dist.

Added pointer to the "Distributing Python Modules" manual in the
appropriate place.

24 years agoUpdate build instructions to reflect the rename from Setup.in to Setup.dist.
Fred Drake [Thu, 26 Oct 2000 17:13:19 +0000 (17:13 +0000)]
Update build instructions to reflect the rename from Setup.in to Setup.dist.
Clarify when this file is created automatically and do not advocate
creating it unless needed.

Explain that Setup never gets overwritten.

24 years agoTest for and create Modules/Setup in the configure script if it does not
Fred Drake [Thu, 26 Oct 2000 17:09:35 +0000 (17:09 +0000)]
Test for and create Modules/Setup in the configure script if it does not
already exist.

24 years agoRename Setup.in to Setup.dist, and assume that configure will create
Fred Drake [Thu, 26 Oct 2000 17:07:40 +0000 (17:07 +0000)]
Rename Setup.in to Setup.dist, and assume that configure will create
Setup (instead of creating it from the Makefile).

24 years agoLots of small markup adjustments for consistency with the rest of the
Fred Drake [Thu, 26 Oct 2000 16:41:03 +0000 (16:41 +0000)]
Lots of small markup adjustments for consistency with the rest of the
documentation.

24 years agoUpdate a comment to be correct.
Fred Drake [Thu, 26 Oct 2000 14:57:29 +0000 (14:57 +0000)]
Update a comment to be correct.

24 years agoRemove bogus stdout redirection and use of sys.__stdout__; use
Fred Drake [Thu, 26 Oct 2000 03:56:46 +0000 (03:56 +0000)]
Remove bogus stdout redirection and use of sys.__stdout__; use
augmented print statement instead.

24 years agoRemove bogus stdout redirection and use of sys.__stdout__; use
Fred Drake [Thu, 26 Oct 2000 03:49:15 +0000 (03:49 +0000)]
Remove bogus stdout redirection and use of sys.__stdout__; use
augmented print statement instead.

24 years agoTypo: shorted --> shorter
Fred Drake [Wed, 25 Oct 2000 23:22:54 +0000 (23:22 +0000)]
Typo:  shorted --> shorter
This closes bug #117706.

24 years agoPatch 102114, Bug 11725. On OpenBSD (but apparently not on the other
Guido van Rossum [Wed, 25 Oct 2000 22:07:45 +0000 (22:07 +0000)]
Patch 102114, Bug 11725.  On OpenBSD (but apparently not on the other
BSDs) you need a leading underscore in the dlsym() lookup name.

24 years agoFix two typos in __imul__. Closes Bug #117745.
Guido van Rossum [Wed, 25 Oct 2000 21:58:20 +0000 (21:58 +0000)]
Fix two typos in __imul__.  Closes Bug #117745.

24 years agoAdd IDLE wish: access items of arrays
Guido van Rossum [Wed, 25 Oct 2000 21:18:12 +0000 (21:18 +0000)]
Add IDLE wish: access items of arrays

24 years agoSince LookupError can be raised by sys.setdefaultencoding(), we should not
Fred Drake [Wed, 25 Oct 2000 21:05:29 +0000 (21:05 +0000)]
Since LookupError can be raised by sys.setdefaultencoding(), we should not
document it as only being a base class, not matter how unlikely this is
to affect normal users.

24 years agoMarc-Andre Lemburg <mal@lemburg.com> noted that the encode() string method
Fred Drake [Wed, 25 Oct 2000 21:03:55 +0000 (21:03 +0000)]
Marc-Andre Lemburg <mal@lemburg.com> noted that the encode() string method
was added in 2.0.

24 years agoAdditions from Marc-Andre Lemburg <mal@lemburg.com>, documenting
Fred Drake [Wed, 25 Oct 2000 21:02:55 +0000 (21:02 +0000)]
Additions from Marc-Andre Lemburg <mal@lemburg.com>, documenting
getdefaultencoding() and setdefaultencoding().

24 years agoSeveral additions and updates based on text from Marc-Andre Lemburg
Fred Drake [Wed, 25 Oct 2000 20:59:52 +0000 (20:59 +0000)]
Several additions and updates based on text from Marc-Andre Lemburg
<mal@lemburg.com>.

Lots of markup reformatting to make it easier for me to read & maintain.

24 years agoMany changes.
Jeremy Hylton [Wed, 25 Oct 2000 18:10:32 +0000 (18:10 +0000)]
Many changes.

Reformatting -- long lines, "[ ]" -> "[]", a few indentation nits.

Replace calls to Node function (which constructed ast nodes) with
calls to actual constructors imported from ast module.

Optimize com_node (most frequently used method) for the common case --
the appropriate method is found in _dispatch.

Fix com_augassign to use class object's rather than node names
(rendered invalid by recent changes to ast)

Remove expensive tests for sequence-ness in com_stmt and
com_append_stmt. These tests should never fail; if they do, something
is really broken and exception will be raised elsewhere.

Fix com_stmt and com_append_stmt to use isinstance rather than
testing's type slot of ast node (this slot disappeared with recent
changes to ast).

24 years agoGenerated from rev 1.1 of ast.txt
Jeremy Hylton [Wed, 25 Oct 2000 18:02:59 +0000 (18:02 +0000)]
Generated from rev 1.1 of ast.txt

24 years agoSmall optimizations in dispatch method: 1) lookup node's __class__ once
Jeremy Hylton [Wed, 25 Oct 2000 18:02:02 +0000 (18:02 +0000)]
Small optimizations in dispatch method: 1) lookup node's __class__ once
and store in local; 2) define _preorder to be dispatch (rather than
method that called dispatch).

24 years agoSupport for generation of ast.py from simple description of node
Jeremy Hylton [Wed, 25 Oct 2000 17:59:17 +0000 (17:59 +0000)]
Support for generation of ast.py from simple description of node
structure (ast.txt).  Usage is python astgen.py > ast.py.

24 years agoTry to clarify when the Modules/Setup file should be edited. Added
Fred Drake [Wed, 25 Oct 2000 17:51:02 +0000 (17:51 +0000)]
Try to clarify when the Modules/Setup file should be edited.  Added
information about the --with-pydebug option to configure.

This closes bug #117070.

24 years agoAlso point TK_LIBRARY to the appropriate directory.
Guido van Rossum [Wed, 25 Oct 2000 17:42:13 +0000 (17:42 +0000)]
Also point TK_LIBRARY to the appropriate directory.
Changed the landmark to tclIndex, which should occur in both.

24 years agoRename $PYTHON_VERSION to $PACKAGE_VERSION; this is the version number for
Fred Drake [Wed, 25 Oct 2000 16:18:10 +0000 (16:18 +0000)]
Rename $PYTHON_VERSION to $PACKAGE_VERSION; this is the version number for
whatever is being documented, not necessarily Python.  (These tools are
also used for the How-To documents, etc.)

get_version_text():  New function.  Returns HTML fragment describing the
        software version and documentation date.

bot_navigation_panel():  Include the result of get_version_text() at the
        end, so the information is available on every page.

24 years agoRename $PYTHON_VERSION to $PACKAGE_VERSION; this is the version number for
Fred Drake [Wed, 25 Oct 2000 16:15:13 +0000 (16:15 +0000)]
Rename $PYTHON_VERSION to $PACKAGE_VERSION; this is the version number for
whatever is being documented, not necessarily Python.  (These tools are
also used for the How-To documents, etc.)

24 years agoRemove some HTML from the PYTHONDOCS fragment defined here.
Fred Drake [Wed, 25 Oct 2000 16:12:04 +0000 (16:12 +0000)]
Remove some HTML from the PYTHONDOCS fragment defined here.

24 years agoMinor addition; add a little formatting to the release information that
Fred Drake [Wed, 25 Oct 2000 16:10:46 +0000 (16:10 +0000)]
Minor addition; add a little formatting to the release information that
will be added to Doc/perl/l2hinit.perl shortly.

24 years agoMake this actually work now that the tool is checked in here instead of
Fred Drake [Tue, 24 Oct 2000 19:59:55 +0000 (19:59 +0000)]
Make this actually work now that the tool is checked in here instead of
just sitting around in my working directory.

24 years agoKa-Ping Yee <ping@lfw.org>:
Fred Drake [Tue, 24 Oct 2000 19:57:45 +0000 (19:57 +0000)]
Ka-Ping Yee <ping@lfw.org>:
Changes to error messages to increase consistency & clarity.

This (mostly) closes SourceForge patch #101839.

24 years agoInsert the current directory to the front of sys.path -- and remove it
Guido van Rossum [Tue, 24 Oct 2000 17:16:32 +0000 (17:16 +0000)]
Insert the current directory to the front of sys.path -- and remove it
at the end.  This fixes a problem where

python Lib/test/test_import.py

failed while "make test" succeeded.

24 years agoAdded a test case for the saxutils.prepare_input_source setSystemId bug.
Lars Gustäbel [Tue, 24 Oct 2000 16:00:22 +0000 (16:00 +0000)]
Added a test case for the saxutils.prepare_input_source setSystemId bug.

24 years agoFix bug in prepare_input_source (patched by Paul P., sourceforge.net down
Lars Gustäbel [Tue, 24 Oct 2000 15:53:12 +0000 (15:53 +0000)]
Fix bug in prepare_input_source (patched by Paul P., sourceforge.net down
now, so can't find number).

24 years agoUpdated output.
Lars Gustäbel [Tue, 24 Oct 2000 15:36:28 +0000 (15:36 +0000)]
Updated output.

24 years agoAdded some more tests here and there.
Lars Gustäbel [Tue, 24 Oct 2000 15:35:07 +0000 (15:35 +0000)]
Added some more tests here and there.

24 years agoAdded entries for the xml.dom.minidom module.
Fred Drake [Tue, 24 Oct 2000 02:35:42 +0000 (02:35 +0000)]
Added entries for the xml.dom.minidom module.

24 years agoPaul Prescod <paul@prescod.net>:
Fred Drake [Tue, 24 Oct 2000 02:34:45 +0000 (02:34 +0000)]
Paul Prescod <paul@prescod.net>:
Documentation for the xml.dom.minidom module & Python DOM API.

FLD:  I have revised the markup in some places and added a few minor
details to Paul's text, but that's it.  Given the substantial
structural differences with the bulk of the presentation, I will be
making additional revisions over the next few days.

24 years agoRemove second horizontal line below table headers; it is just too
Fred Drake [Tue, 24 Oct 2000 02:18:30 +0000 (02:18 +0000)]
Remove second horizontal line below table headers; it is just too
distracting.

24 years agoRemove some obsolete files, and update the README.
Fred Drake [Mon, 23 Oct 2000 20:50:23 +0000 (20:50 +0000)]
Remove some obsolete files, and update the README.

24 years agoMake reindent.py happy (convert everything to 4-space indents!).
Fred Drake [Mon, 23 Oct 2000 18:31:14 +0000 (18:31 +0000)]
Make reindent.py happy (convert everything to 4-space indents!).

24 years agoMake reindent.py happy (lots of trailing whitespace removed).
Fred Drake [Mon, 23 Oct 2000 18:09:50 +0000 (18:09 +0000)]
Make reindent.py happy (lots of trailing whitespace removed).

24 years agoMake reindent happy, but not in the way it planned!
Fred Drake [Mon, 23 Oct 2000 17:30:23 +0000 (17:30 +0000)]
Make reindent happy, but not in the way it planned!

24 years agoMake reindent.py happy (convert everything to 4-space indents!).
Fred Drake [Mon, 23 Oct 2000 17:22:08 +0000 (17:22 +0000)]
Make reindent.py happy (convert everything to 4-space indents!).

24 years agoUse 4-space indents.
Fred Drake [Mon, 23 Oct 2000 17:00:30 +0000 (17:00 +0000)]
Use 4-space indents.

24 years agoClean up the temporary file when done with it.
Fred Drake [Mon, 23 Oct 2000 16:59:35 +0000 (16:59 +0000)]
Clean up the temporary file when done with it.

24 years agoMake sure the temporary file is cleaned up even when we raise TestSkipped.
Fred Drake [Mon, 23 Oct 2000 16:38:20 +0000 (16:38 +0000)]
Make sure the temporary file is cleaned up even when we raise TestSkipped.

24 years agoAdded note saying to use test_support.TESTFN for a temporary filename,
Fred Drake [Mon, 23 Oct 2000 16:37:14 +0000 (16:37 +0000)]
Added note saying to use test_support.TESTFN for a temporary filename,
and be clear that you need to clean it up when done.

24 years agoAdded exception to the rule that the buffer returned by PyString_AsString()
Fred Drake [Mon, 23 Oct 2000 16:00:54 +0000 (16:00 +0000)]
Added exception to the rule that the buffer returned by PyString_AsString()
and PyString_AsStringAndSize() for strings that were just created using
PyString_FromStringAndSize(NULL, n).

This closes bug #117377.

Added warning about passing NULL to the concrete object functions; many of
them use the appropriate Py<Type>_Check() test, but do not check for NULL.

"de-allocated" --> "deallocated"

24 years agoCorrect the name of a parameter in the description of the register()
Fred Drake [Mon, 23 Oct 2000 15:41:13 +0000 (15:41 +0000)]
Correct the name of a parameter in the description of the register()
function.

This closes bug #117467.

24 years agoAdded test for regression on SourceForge bug #117490.
Fred Drake [Mon, 23 Oct 2000 13:39:15 +0000 (13:39 +0000)]
Added test for regression on SourceForge bug #117490.

24 years agoMaildir.__init__(): Make sure self.boxes is set.
Fred Drake [Mon, 23 Oct 2000 13:37:01 +0000 (13:37 +0000)]
Maildir.__init__():  Make sure self.boxes is set.

This closes SourceForge bug #117490.

24 years agostruct.pack has become picky about h (short) and H (unsigned short).
Jack Jansen [Sun, 22 Oct 2000 21:59:23 +0000 (21:59 +0000)]
struct.pack has become picky about h (short) and H (unsigned short).

24 years agoUpdated because developer option isn't distributed separately anymore.
Jack Jansen [Sun, 22 Oct 2000 21:57:12 +0000 (21:57 +0000)]
Updated because developer option isn't distributed separately anymore.

24 years agoRemoved, no longer pertinent.
Jack Jansen [Sun, 22 Oct 2000 21:55:03 +0000 (21:55 +0000)]
Removed, no longer pertinent.

24 years agoFinal version used for 2.0 distribution.
Jack Jansen [Sun, 22 Oct 2000 21:54:33 +0000 (21:54 +0000)]
Final version used for 2.0 distribution.

24 years agoMore names.
Fred Drake [Sun, 22 Oct 2000 03:23:58 +0000 (03:23 +0000)]
More names.

24 years agoAdded missing entry for invert() function.
Fred Drake [Sun, 22 Oct 2000 03:19:30 +0000 (03:19 +0000)]
Added missing entry for invert() function.

Added table mapping abstract operations to syntax to functions, based on
a suggestion from Bob Weiner <weiner@beopen.com>.

24 years agoMinor tweaks to catch up with the current code in a few spots.
Greg Ward [Sun, 22 Oct 2000 01:40:08 +0000 (01:40 +0000)]
Minor tweaks to catch up with the current code in a few spots.
Wrote the "Distutils Configuration Files" section.

24 years agoFlesh out the "LaTeX Primer" some more.
Fred Drake [Fri, 20 Oct 2000 20:51:31 +0000 (20:51 +0000)]
Flesh out the "LaTeX Primer" some more.

24 years agot_bootstram(): Use PySys_WriteStderr() instead of fprintf(stderr,...).
Fred Drake [Fri, 20 Oct 2000 20:02:37 +0000 (20:02 +0000)]
t_bootstram():  Use PySys_WriteStderr() instead of fprintf(stderr,...).

This closes bug #117324.

24 years agomore edits to make the text fit (jvr)
Just van Rossum [Fri, 20 Oct 2000 07:49:00 +0000 (07:49 +0000)]
more edits to make the text fit (jvr)

24 years agooops, that one caused a syntax error... (jvr)
Just van Rossum [Fri, 20 Oct 2000 07:40:30 +0000 (07:40 +0000)]
oops, that one caused a syntax error... (jvr)

24 years agoedits to make the 2.0 copyright fit in the about box again... (jvr)
Just van Rossum [Fri, 20 Oct 2000 07:35:33 +0000 (07:35 +0000)]
edits to make the 2.0 copyright fit in the about box again... (jvr)

24 years agoCleaned uthread dependencies (jvr)
Just van Rossum [Fri, 20 Oct 2000 06:37:11 +0000 (06:37 +0000)]
Cleaned uthread dependencies (jvr)

24 years agoHm, I never checked in my incomplete "run with interpreter" mods. UI is there (but...
Just van Rossum [Fri, 20 Oct 2000 06:36:30 +0000 (06:36 +0000)]
Hm, I never checked in my incomplete "run with interpreter" mods. UI is there (but is disabled), functionality is not there.

24 years agofixed 2.0 compat bug
Just van Rossum [Fri, 20 Oct 2000 06:34:57 +0000 (06:34 +0000)]
fixed 2.0 compat bug

24 years agoUpdate the display of some floating point values at the interactive prompt
Fred Drake [Fri, 20 Oct 2000 03:03:18 +0000 (03:03 +0000)]
Update the display of some floating point values at the interactive prompt
to reflect current behavior.
This closes SourceForge bug #117305.

Made a reference to the library reference a hyperlink.

Fixed some minor markup nits.

24 years agoAdded PyMac_OutputSeen(), which acknowledges all current output in the stdio window...
Jack Jansen [Thu, 19 Oct 2000 22:02:16 +0000 (22:02 +0000)]
Added PyMac_OutputSeen(), which acknowledges all current output in the stdio window, i.e. it acts like input has been read insofar as the keep-console-open option is interested.

24 years agoAdd Numerical:Lib:Packages to sys.path. A workaround for distutils not working.
Jack Jansen [Thu, 19 Oct 2000 22:00:01 +0000 (22:00 +0000)]
Add Numerical:Lib:Packages to sys.path. A workaround for distutils not working.

24 years agoReady for 2.0
Jack Jansen [Thu, 19 Oct 2000 21:58:27 +0000 (21:58 +0000)]
Ready for 2.0

24 years agoOops, all the options were off-by-one. Reported by Tom Bridgman.
Jack Jansen [Thu, 19 Oct 2000 21:50:54 +0000 (21:50 +0000)]
Oops, all the options were off-by-one. Reported by Tom Bridgman.

24 years agoFixed balloon help for options. Sort-of reported by Russell Finn.
Jack Jansen [Thu, 19 Oct 2000 21:22:46 +0000 (21:22 +0000)]
Fixed balloon help for options. Sort-of reported by Russell Finn.

24 years agoFixed balloon help for startup options. Reported by Russell Finn.
Jack Jansen [Thu, 19 Oct 2000 21:22:20 +0000 (21:22 +0000)]
Fixed balloon help for startup options. Reported by Russell Finn.

24 years agoRemoved try/except TypeError around calling the ae handler function, it masksprogramm...
Jack Jansen [Thu, 19 Oct 2000 20:49:12 +0000 (20:49 +0000)]
Removed try/except TypeError around calling the ae handler function, it masksprogrammer errors and obfuscates the stacktrace. Suggested by Tattoo Mabonzo K.

24 years agoOops, not only the Popt versions were wrong, the resources were also short.
Jack Jansen [Thu, 19 Oct 2000 20:34:14 +0000 (20:34 +0000)]
Oops, not only the Popt versions were wrong, the resources were also short.

24 years agoDifferent phrasing of keepconsole options, suggested by David Goodger.
Jack Jansen [Thu, 19 Oct 2000 20:33:41 +0000 (20:33 +0000)]
Different phrasing of keepconsole options, suggested by David Goodger.

24 years agoUse MacOS.OutputSeen() on menuselections: it treats a menu selection in the same...
Jack Jansen [Thu, 19 Oct 2000 20:32:35 +0000 (20:32 +0000)]
Use MacOS.OutputSeen() on menuselections: it treats a menu selection in the same way as input to stdin (i.e. as an ack of the output that went before). This makes the CGI tools work nicely for Quit.

24 years agoUse MacOS.OutputSeen() on menuselections. Removed KeepConsole code again. This soluti...
Jack Jansen [Thu, 19 Oct 2000 20:31:51 +0000 (20:31 +0000)]
Use MacOS.OutputSeen() on menuselections. Removed KeepConsole code again. This solution is better: it treats a menu selection in the same way as input to stdin (i.e. as an ack of the output that went before).

24 years agoRemove the bzip2 archives from the "distfiles" target. There are not
Fred Drake [Thu, 19 Oct 2000 13:25:15 +0000 (13:25 +0000)]
Remove the bzip2 archives from the "distfiles" target.  There are not
enough downloads to keep this around.

24 years agoFixed a bug that caused namespace names to be reported as lists rather
Lars Gustäbel [Thu, 19 Oct 2000 07:36:29 +0000 (07:36 +0000)]
Fixed a bug that caused namespace names to be reported as lists rather
than tuples.

24 years agoTwo more names.
Fred Drake [Thu, 19 Oct 2000 05:58:03 +0000 (05:58 +0000)]
Two more names.

24 years agoHelper scripts used in published the "development" snapshots of the
Fred Drake [Thu, 19 Oct 2000 05:54:51 +0000 (05:54 +0000)]
Helper scripts used in published the "development" snapshots of the
Python documentation.

24 years agoRevise the capitalization policy of \versionchanged explanation; the
Fred Drake [Thu, 19 Oct 2000 05:36:10 +0000 (05:36 +0000)]
Revise the capitalization policy of \versionchanged explanation; the
explanation must now be capitalized.  This is more consistent with the
\see* explanation fields.

Added a lot of material to the "LaTeX Primer" section.

24 years agoCapitalize first letter of an explanation for a \versionchanged
Fred Drake [Thu, 19 Oct 2000 05:33:46 +0000 (05:33 +0000)]
Capitalize first letter of an explanation for a \versionchanged
annotation.

24 years agoCorrection from David Bolen: the Windows version no longer crashes
Andrew M. Kuchling [Thu, 19 Oct 2000 01:42:33 +0000 (01:42 +0000)]
Correction from David Bolen: the Windows version no longer crashes
    on trying to import a 1.5 module
Bump the document version number

24 years agoDocument the .lastindex and .lastgroup attributes of MatchObject
Andrew M. Kuchling [Wed, 18 Oct 2000 23:08:13 +0000 (23:08 +0000)]
Document the .lastindex and .lastgroup attributes of MatchObject

24 years agoMake all the \seemodule explanations consistent: start with a capitalized
Fred Drake [Wed, 18 Oct 2000 17:43:06 +0000 (17:43 +0000)]
Make all the \seemodule explanations consistent: start with a capitalized
letter and end with proper punctuation.  "Documenting Python" will be
updated accordingly so that this will be editorial policy for the Python
documentation.

24 years agoCapitalize & use periods for \seemodule explanation parameter.
Fred Drake [Wed, 18 Oct 2000 16:47:52 +0000 (16:47 +0000)]
Capitalize & use periods for \seemodule explanation parameter.

24 years agoUpdated Popt resources to current version
Jack Jansen [Wed, 18 Oct 2000 09:13:45 +0000 (09:13 +0000)]
Updated Popt resources to current version

24 years agoUse test_support.TESTFN as the temporary filename.
Fred Drake [Wed, 18 Oct 2000 01:21:38 +0000 (01:21 +0000)]
Use test_support.TESTFN as the temporary filename.
Fix a minor stylistic nit.

This closes SourceForge bug #117032.

24 years agoBump version number -- this document is pretty much finished!
Andrew M. Kuchling [Tue, 17 Oct 2000 13:02:42 +0000 (13:02 +0000)]
Bump version number -- this document is pretty much finished!

24 years agoUpdate the links to the NumPy website and documentation, based on a
Fred Drake [Tue, 17 Oct 2000 04:58:01 +0000 (04:58 +0000)]
Update the links to the NumPy website and documentation, based on a
comment from Janko Hauser <jhauser@ifm.uni-kiel.de>.

24 years agoThis commit was manufactured by cvs2svn to create tag 'release20'. v2.0
cvs2svn [Mon, 16 Oct 2000 20:51:33 +0000 (20:51 +0000)]
This commit was manufactured by cvs2svn to create tag 'release20'.

24 years agoTypo repair.
Tim Peters [Mon, 16 Oct 2000 20:51:33 +0000 (20:51 +0000)]
Typo repair.

24 years agorevise xml comment
Jeremy Hylton [Mon, 16 Oct 2000 20:41:38 +0000 (20:41 +0000)]
revise xml comment

24 years agoUpdated the XML package comment.
Fred Drake [Mon, 16 Oct 2000 20:27:25 +0000 (20:27 +0000)]
Updated the XML package comment.

24 years agoFilled in math-module info; fixed a typo or two.
Tim Peters [Mon, 16 Oct 2000 20:24:53 +0000 (20:24 +0000)]
Filled in math-module info; fixed a typo or two.

24 years agoAdd NEWS for 2.0 final (there are a few XXX comments that must be
Jeremy Hylton [Mon, 16 Oct 2000 20:08:38 +0000 (20:08 +0000)]
Add NEWS for 2.0 final (there are a few XXX comments that must be
addressed).

Fix a few nits in 2.0c1 news.

24 years agothe usual
Jeremy Hylton [Mon, 16 Oct 2000 18:26:42 +0000 (18:26 +0000)]
the usual

24 years agothe usual (part II)
Jeremy Hylton [Mon, 16 Oct 2000 17:42:40 +0000 (17:42 +0000)]
the usual (part II)