]> granicus.if.org Git - python/log
python
27 years agogenerated output for new tests
Barry Warsaw [Fri, 22 Aug 1997 21:27:40 +0000 (21:27 +0000)]
generated output for new tests

27 years agoAdded tests of the new builtin functions issubclass() and isinstance()
Barry Warsaw [Fri, 22 Aug 1997 21:27:03 +0000 (21:27 +0000)]
Added tests of the new builtin functions issubclass() and isinstance()

27 years agocmp_exception gets promoted (essentially) to the C API function
Barry Warsaw [Fri, 22 Aug 1997 21:26:19 +0000 (21:26 +0000)]
cmp_exception gets promoted (essentially) to the C API function
PyErr_GivenExceptionMatches().

set_exc_info(): make sure to normalize exceptions.

do_raise(): Use PyErr_NormalizeException() if type is a class.

loop_subscript(): Use PyErr_ExceptionMatches() instead of raw pointer
compare for PyExc_IndexError.

27 years agoThree new C API functions:
Barry Warsaw [Fri, 22 Aug 1997 21:22:58 +0000 (21:22 +0000)]
Three new C API functions:

- int PyErr_GivenExceptionMatches(obj1, obj2)

  Returns 1 if obj1 and obj2 are the same object, or if obj1 is an
  instance of type obj2, or of a class derived from obj2

- int PyErr_ExceptionMatches(obj)

  Higher level wrapper around PyErr_GivenExceptionMatches() which uses
  PyErr_Occurred() as obj1.  This will be the more commonly called
  function.

- void PyErr_NormalizeException(typeptr, valptr, tbptr)

  Normalizes exceptions, and places the normalized values in the
  arguments.  If type is not a class, this does nothing.  If type is a
  class, then it makes sure that value is an instance of the class by:

  1. if instance is of the type, or a class derived from type, it does
     nothing.

  2. otherwise it instantiates the class, using the value as an
     argument.  If value is None, it uses an empty arg tuple, and if
     the value is a tuple, it uses just that.

27 years agoTwo new built-in functions: issubclass() and isinstance(). Both take
Barry Warsaw [Fri, 22 Aug 1997 21:14:38 +0000 (21:14 +0000)]
Two new built-in functions: issubclass() and isinstance().  Both take
classes as their second arguments.  The former takes a class as the
first argument and returns true iff first is second, or is a subclass
of second.

The latter takes any object as the first argument and returns true iff
first is an instance of the second, or any subclass of second.

Also, change all occurances of pointer compares against
PyExc_IndexError with PyErr_ExceptionMatches() calls.

27 years agoCorrect off-by-two-pixels error.
Guido van Rossum [Fri, 22 Aug 1997 20:56:07 +0000 (20:56 +0000)]
Correct off-by-two-pixels error.

27 years agoAdd unsupported variable EXE which can be set to .exe on systems where
Guido van Rossum [Fri, 22 Aug 1997 20:53:47 +0000 (20:53 +0000)]
Add unsupported variable EXE which can be set to .exe on systems where
the executable must have that suffix.  Note that there is no
corresponding support in the top-level Makefile because I'm not sure
that the install targets there make sense under these circumstances.

27 years agoAdded configuration tests for presence of alarm(), pause(), and getpwent()
Guido van Rossum [Fri, 22 Aug 1997 20:42:00 +0000 (20:42 +0000)]
Added configuration tests for presence of alarm(), pause(), and getpwent()

27 years agoOops, don't suppress echo of the rm command in l2hclean!
Fred Drake [Fri, 22 Aug 1997 18:20:33 +0000 (18:20 +0000)]
Oops, don't suppress echo of the rm command in l2hclean!

27 years agoSimplify LaTeX2HTML targets && support re-use of output directories (which
Fred Drake [Fri, 22 Aug 1997 18:18:54 +0000 (18:18 +0000)]
Simplify LaTeX2HTML targets && support re-use of output directories (which
saves re-generation of images).

Add l2hclean target.

27 years agoReverse the search order for the Don Beaudry hook so that the first
Guido van Rossum [Fri, 22 Aug 1997 16:56:16 +0000 (16:56 +0000)]
Reverse the search order for the Don Beaudry hook so that the first
class wins.  Makes more sense.

27 years agoChanged description of SchedParams() in the following way:
Fred Drake [Fri, 22 Aug 1997 13:51:31 +0000 (13:51 +0000)]
Changed description of SchedParams() in the following way:

\bar{Besocial} --> \var{besocial}
     ^--- note case ----^

The fixed version matches the signature.  Changed "\bar{Besocial} gives ..."
to "The \var{besocial} flag gives ..." to keep from starting the sentence
with a lowercase token.

(The \bar{} --> \var{} change was required to keep LaTeX happy.)

27 years agoAdded missing "\end{funcdesc}" after FindFolder documentation.
Fred Drake [Fri, 22 Aug 1997 13:45:13 +0000 (13:45 +0000)]
Added missing "\end{funcdesc}" after FindFolder documentation.

27 years agoAdded new Py_IsInitalized() API function to test the 'initialized' flag.
Guido van Rossum [Fri, 22 Aug 1997 04:20:13 +0000 (04:20 +0000)]
Added new Py_IsInitalized() API function to test the 'initialized' flag.

27 years agoRemoved JF's dollar-Log-dollar RCS turd that caused compilation to
Barry Warsaw [Thu, 21 Aug 1997 22:36:26 +0000 (22:36 +0000)]
Removed JF's dollar-Log-dollar RCS turd that caused compilation to
crash due to GvR's last check in message :-).  Will try to convince JF
to remove all this evilness.

27 years agoRemove redundant decl for PyOS_InputHook.
Guido van Rossum [Thu, 21 Aug 1997 17:26:04 +0000 (17:26 +0000)]
Remove redundant decl for PyOS_InputHook.

27 years agoCompletely disable the declarations for malloc() and friends. Use
Guido van Rossum [Thu, 21 Aug 1997 16:13:37 +0000 (16:13 +0000)]
Completely disable the declarations for malloc() and friends.  Use
#ifdef though, so if you still need these for a really backwards
compiler you know what to do.

27 years agoAdd warning about dumb SGI make.
Guido van Rossum [Thu, 21 Aug 1997 03:05:11 +0000 (03:05 +0000)]
Add warning about dumb SGI make.

27 years agoUse lseek instead of ftell; compensate by adding BUFSIZE
Guido van Rossum [Thu, 21 Aug 1997 02:31:25 +0000 (02:31 +0000)]
Use lseek instead of ftell; compensate by adding BUFSIZE

27 years agoAdded /**/ around #end tags
Guido van Rossum [Thu, 21 Aug 1997 02:30:45 +0000 (02:30 +0000)]
Added /**/ around #end tags

27 years agoMust remove conflicting files from archive
Guido van Rossum [Thu, 21 Aug 1997 02:30:20 +0000 (02:30 +0000)]
Must remove conflicting files from archive
*before* adding signalmodule.o, because some ar programs
are too smart for us...

27 years agomention cPickle and cStringIO
Guido van Rossum [Thu, 21 Aug 1997 02:29:19 +0000 (02:29 +0000)]
mention cPickle and cStringIO

27 years agothe usual
Guido van Rossum [Thu, 21 Aug 1997 02:29:16 +0000 (02:29 +0000)]
the usual

27 years agoFix some badly botched prototypes for PyRun* c.s.
Guido van Rossum [Thu, 21 Aug 1997 02:28:57 +0000 (02:28 +0000)]
Fix some badly botched prototypes for PyRun* c.s.

27 years agoAdded reop
Guido van Rossum [Thu, 21 Aug 1997 02:28:40 +0000 (02:28 +0000)]
Added reop

27 years agoAdded missing newline to warning msg
Guido van Rossum [Thu, 21 Aug 1997 02:28:19 +0000 (02:28 +0000)]
Added missing newline to warning msg

27 years agoRichard Jones: I think we can be confident in using 'CC="-Aa
Guido van Rossum [Thu, 21 Aug 1997 00:08:11 +0000 (00:08 +0000)]
Richard Jones: I think we can be confident in using 'CC="-Aa
-D_HPUX_SOURCE"' on HP 9.x and 10.x platforms.

27 years agoGot rid of HP-UX comments (which seem to be out of date -- one should
Guido van Rossum [Wed, 20 Aug 1997 23:50:51 +0000 (23:50 +0000)]
Got rid of HP-UX comments (which seem to be out of date -- one should
use -Ae).

Added Cray T3E comments.

27 years agoGlobally renamed join() to joinpath() to avoid compilation error on Cray.
Guido van Rossum [Wed, 20 Aug 1997 23:48:16 +0000 (23:48 +0000)]
Globally renamed join() to joinpath() to avoid compilation error on Cray.

27 years agoRenamed strndup to pystrndup, to avoid conflicting prototype
Guido van Rossum [Wed, 20 Aug 1997 23:38:57 +0000 (23:38 +0000)]
Renamed strndup to pystrndup, to avoid conflicting prototype
in GNU libc on some platforms.

27 years agoInterpret three slashes in file: URL as local file (for Netscape on
Guido van Rossum [Wed, 20 Aug 1997 23:34:01 +0000 (23:34 +0000)]
Interpret three slashes in file: URL as local file (for Netscape on
Windows/Mac).

27 years agoWhen we have signalmodule.o, remove intrcheck.o as well as sigcheck.o.
Guido van Rossum [Wed, 20 Aug 1997 22:45:52 +0000 (22:45 +0000)]
When we have signalmodule.o, remove intrcheck.o as well as sigcheck.o.

27 years agoUse a counter instead of a Boolean to check for initialized; n calls
Guido van Rossum [Wed, 20 Aug 1997 22:40:18 +0000 (22:40 +0000)]
Use a counter instead of a Boolean to check for initialized; n calls
to Py_Initialize will be undone by n calls to Py_Uninitialize.

27 years agoMake sure the objects returned by __getinitargs__() are kept alive (in
Guido van Rossum [Wed, 20 Aug 1997 22:26:19 +0000 (22:26 +0000)]
Make sure the objects returned by __getinitargs__() are kept alive (in
the memo) to avoid a certain kind of nasty crash.  (Not easily
reproducable because it requires a later call to __getinitargs__() to
return a tuple that happens to be allocated at the same address.)

27 years agoUse 'buildno1' instead of '@buildno' for temp file since DJGPP's bash
Guido van Rossum [Wed, 20 Aug 1997 22:13:15 +0000 (22:13 +0000)]
Use 'buildno1' instead of '@buildno' for temp file since DJGPP's bash
doesn't seem to grok @buildno.

27 years agoNeed to define AR since it is used, and not all Makes define it by default.
Guido van Rossum [Tue, 19 Aug 1997 14:40:11 +0000 (14:40 +0000)]
Need to define AR since it is used, and not all Makes define it by default.

27 years agoRemoved support_print docs.
Jack Jansen [Tue, 19 Aug 1997 14:01:35 +0000 (14:01 +0000)]
Removed support_print docs.

27 years agoDocs on new tcl/tk, new build tree layout
Jack Jansen [Tue, 19 Aug 1997 14:01:16 +0000 (14:01 +0000)]
Docs on new tcl/tk, new build tree layout

27 years agoVery sketchy preliminary docs on new applescripting functionality.
Jack Jansen [Tue, 19 Aug 1997 14:00:56 +0000 (14:00 +0000)]
Very sketchy preliminary docs on new applescripting functionality.

27 years agoAdded reop
Jack Jansen [Tue, 19 Aug 1997 13:59:59 +0000 (13:59 +0000)]
Added reop

27 years agoMkPluginAliases now knows about fat PythonCore (and all resource files
Jack Jansen [Tue, 19 Aug 1997 13:58:57 +0000 (13:58 +0000)]
MkPluginAliases now knows about fat PythonCore (and all resource files
got binhexed again)

27 years agoPythonCore is now a fat shared library, the plugin modules aren't fat,
Jack Jansen [Tue, 19 Aug 1997 13:58:00 +0000 (13:58 +0000)]
PythonCore is now a fat shared library, the plugin modules aren't fat,
unfortunately, this turned out to be too difficult.

Plugins.prj now builds all plugin modules, and all the
interdependencies between the projects are correct. One exception:
plugins don't attempt to build PythonCore (PythonFAT and PythonApplet do).

27 years agoMoved assert.h to ../Parser directory
Guido van Rossum [Tue, 19 Aug 1997 12:07:22 +0000 (12:07 +0000)]
Moved assert.h to ../Parser directory

27 years agoAlas, the thread support for Tk didn't work. Withdraw it, until I
Guido van Rossum [Tue, 19 Aug 1997 01:00:50 +0000 (01:00 +0000)]
Alas, the thread support for Tk didn't work.  Withdraw it, until I
figure out how to do this right.

27 years agoMade lookdict nearly twice as fast, resulting in a 5% overall
Guido van Rossum [Mon, 18 Aug 1997 21:52:47 +0000 (21:52 +0000)]
Made lookdict nearly twice as fast, resulting in a 5% overall
improvement of pystone.  Vladimir Marangozov.

27 years agoI'm tired -- checking in more news items. This isn't complete; I'm
Guido van Rossum [Mon, 18 Aug 1997 21:17:32 +0000 (21:17 +0000)]
I'm tired -- checking in more news items.  This isn't complete; I'm
about halfways.

27 years agoRemove remark on python15.lib being in the Debug subdir only.
Guido van Rossum [Mon, 18 Aug 1997 20:58:06 +0000 (20:58 +0000)]
Remove remark on python15.lib being in the Debug subdir only.

27 years agoChanged the way python15.lib is included in the other projects.
Guido van Rossum [Mon, 18 Aug 1997 20:57:13 +0000 (20:57 +0000)]
Changed the way python15.lib is included in the other projects.
Per Mark Hammond's suggestion, add it to the extra libs in Settings
instead of to the project's source files.

27 years agoUse correct keyword parameter when calling copy with answer option!
Guido van Rossum [Mon, 18 Aug 1997 20:56:10 +0000 (20:56 +0000)]
Use correct keyword parameter when calling copy with answer option!

27 years agoChange default verbosity so that there are only three levels left: -q,
Guido van Rossum [Mon, 18 Aug 1997 20:08:24 +0000 (20:08 +0000)]
Change default verbosity so that there are only three levels left: -q,
default and -v.  In default mode, the name of each test is printed.
-v is the same as the old -vv.  -q is more quiet than the old default
mode; that's fine I think.

27 years agoRemoved ancient FAQ from distribution
Guido van Rossum [Mon, 18 Aug 1997 19:55:01 +0000 (19:55 +0000)]
Removed ancient FAQ from distribution

27 years agoMoved inclusion of PURIFY in LINKCC to configure
Guido van Rossum [Mon, 18 Aug 1997 16:00:04 +0000 (16:00 +0000)]
Moved inclusion of PURIFY in LINKCC to configure

27 years agoNo longer used.
Guido van Rossum [Mon, 18 Aug 1997 15:46:16 +0000 (15:46 +0000)]
No longer used.

27 years agoTweaks to cope with strftime returning 0 without error for %Z
Guido van Rossum [Mon, 18 Aug 1997 15:37:38 +0000 (15:37 +0000)]
Tweaks to cope with strftime returning 0 without error for %Z

27 years agoForgot to check in the fixed output for print
Guido van Rossum [Mon, 18 Aug 1997 15:36:05 +0000 (15:36 +0000)]
Forgot to check in the fixed output for print

27 years agoCasts by Jack to shut up the Mac compiler.
Guido van Rossum [Mon, 18 Aug 1997 15:31:24 +0000 (15:31 +0000)]
Casts by Jack to shut up the Mac compiler.

27 years agoDeleteTimerHandler was accidentally #ifdef'ed out for macintosh with
Guido van Rossum [Mon, 18 Aug 1997 15:28:52 +0000 (15:28 +0000)]
DeleteTimerHandler was accidentally #ifdef'ed out for macintosh with
Tk 8.0; this was a mistake.

27 years agoMisc Mac mods by Jack. Added libmacic.tex, and these patches:
Guido van Rossum [Mon, 18 Aug 1997 15:14:26 +0000 (15:14 +0000)]
Misc Mac mods by Jack.  Added libmacic.tex, and these patches:

libmacfs.tex Document NewAliasMinimalFromFullPath
libmacos.tex Document SetEventHandler and SchedParams
libmacui.tex Document asynchronous event handling
libmailbox.tex Removed mime-turds that somehow got in here

27 years agoAdd missing comma to make a tuple of (tagOrId).
Guido van Rossum [Mon, 18 Aug 1997 14:44:04 +0000 (14:44 +0000)]
Add missing comma to make a tuple of (tagOrId).

27 years agoWhen making all, don't make sharedmods. That's now called separately
Guido van Rossum [Mon, 18 Aug 1997 14:23:13 +0000 (14:23 +0000)]
When making all, don't make sharedmods.  That's now called separately
from the toplevel Makefile.  (For AIX, but doesn't hurt elsewhere.)

27 years agoChange the order in which things are built -- build the shared modules
Guido van Rossum [Mon, 18 Aug 1997 14:22:24 +0000 (14:22 +0000)]
Change the order in which things are built -- build the shared modules
after the main interpreter.  Needed for AIX.

27 years agoFix LINKCC for AIX
Guido van Rossum [Mon, 18 Aug 1997 14:12:12 +0000 (14:12 +0000)]
Fix LINKCC for AIX

27 years agoRecognize https:// as URL as well.
Guido van Rossum [Mon, 18 Aug 1997 13:59:41 +0000 (13:59 +0000)]
Recognize https:// as URL as well.

27 years agoOops. Of course, print b should also be print `b`. :-(
Guido van Rossum [Mon, 18 Aug 1997 13:42:28 +0000 (13:42 +0000)]
Oops.  Of course, print b should also be print `b`. :-(

27 years agoUse a trick to make the test for GMP v2 to work when GMP v1 defines
Guido van Rossum [Sun, 17 Aug 1997 19:08:33 +0000 (19:08 +0000)]
Use a trick to make the test for GMP v2 to work when GMP v1 defines
__GNU_MP__ as empty: #if __GNU_MP__ + 0 == 2
(Untested.)

27 years agoConsistently change Python-C API to Python/C API; added lots of new
Guido van Rossum [Sun, 17 Aug 1997 18:02:23 +0000 (18:02 +0000)]
Consistently change Python-C API to Python/C API; added lots of new
introductory text for reference counts and error handling, with good
examples.

27 years agoPyTuple_SetItem should require that the tuple's refcnt is one!
Guido van Rossum [Sun, 17 Aug 1997 16:25:45 +0000 (16:25 +0000)]
PyTuple_SetItem should require that the tuple's refcnt is one!

27 years agoDifferent strategy regarding whether to declare getrusage() and
Guido van Rossum [Sun, 17 Aug 1997 16:24:30 +0000 (16:24 +0000)]
Different strategy regarding whether to declare getrusage() and
getpagesize() -- #ifdef doesn't work, Linux has conflicting decls in
its headers.  Choice: only declare the return type, not the argument
prototype, and not on Linux.

27 years agoset sharedlib extensions properly for NeXT (Ted Horst)
Guido van Rossum [Sat, 16 Aug 1997 14:38:09 +0000 (14:38 +0000)]
set sharedlib extensions properly for NeXT (Ted Horst)

27 years agothe usual
Guido van Rossum [Sat, 16 Aug 1997 14:35:52 +0000 (14:35 +0000)]
the usual

27 years agotypo in next config
Guido van Rossum [Sat, 16 Aug 1997 14:35:26 +0000 (14:35 +0000)]
typo in next config

27 years agoThis commit was manufactured by cvs2svn to create tag 'r15a3'. v1.5a3
cvs2svn [Fri, 15 Aug 1997 20:18:44 +0000 (20:18 +0000)]
This commit was manufactured by cvs2svn to create tag 'r15a3'.

27 years agoAnother typo (importand).
Guido van Rossum [Fri, 15 Aug 1997 20:18:44 +0000 (20:18 +0000)]
Another typo (importand).

27 years agoFinal touch...
Guido van Rossum [Fri, 15 Aug 1997 20:09:56 +0000 (20:09 +0000)]
Final touch...

27 years agoTweaked all l2h targets to remove the target directory before renaming
Guido van Rossum [Fri, 15 Aug 1997 19:12:08 +0000 (19:12 +0000)]
Tweaked all l2h targets to remove the target directory before renaming
the intermediate target directory.

27 years agoFixes to make it pass latex without complaints.
Guido van Rossum [Fri, 15 Aug 1997 18:57:32 +0000 (18:57 +0000)]
Fixes to make it pass latex without complaints.

27 years agoType ("thgis").
Guido van Rossum [Fri, 15 Aug 1997 18:51:38 +0000 (18:51 +0000)]
Type ("thgis").

27 years agoNew, more complete list of what's new, pointing to Misc/NEWS for the
Guido van Rossum [Fri, 15 Aug 1997 18:30:14 +0000 (18:30 +0000)]
New, more complete list of what's new, pointing to Misc/NEWS for the
whole list.  Also changed all references to the FAQ to point to the
FAQ wizard.

27 years agoUse imp.find_module() as the most certain way to find the test data.
Guido van Rossum [Fri, 15 Aug 1997 16:23:32 +0000 (16:23 +0000)]
Use imp.find_module() as the most certain way to find the test data.

27 years agogenerated by regrtest.py -g
Jeremy Hylton [Fri, 15 Aug 1997 16:00:02 +0000 (16:00 +0000)]
generated by regrtest.py -g

27 years agotest the zlib module
Jeremy Hylton [Fri, 15 Aug 1997 15:59:43 +0000 (15:59 +0000)]
test the zlib module
only produce output if somethign goes wrong

27 years agoLast minute changes for \B. AMK.
Guido van Rossum [Fri, 15 Aug 1997 15:45:25 +0000 (15:45 +0000)]
Last minute changes for \B.  AMK.

27 years agoAdded tests for \b, \B (AMK).
Guido van Rossum [Fri, 15 Aug 1997 15:44:58 +0000 (15:44 +0000)]
Added tests for \b, \B (AMK).

27 years agoLast minut changes for \B, \S (?). AMK.
Guido van Rossum [Fri, 15 Aug 1997 15:44:23 +0000 (15:44 +0000)]
Last minut changes for \B, \S (?).  AMK.

27 years agoRegenerated
Jack Jansen [Fri, 15 Aug 1997 14:38:59 +0000 (14:38 +0000)]
Regenerated

27 years agoAdded support for WCTabHandle, AuxWinHandle, PixPatHandle: no reason
Jack Jansen [Fri, 15 Aug 1997 14:38:05 +0000 (14:38 +0000)]
Added support for WCTabHandle, AuxWinHandle, PixPatHandle: no reason
for blacklisting them.

27 years agoAdded #include <string.h> for memcpy()
Jack Jansen [Fri, 15 Aug 1997 14:36:45 +0000 (14:36 +0000)]
Added #include <string.h> for memcpy()

27 years agoAdded support for GDHandle, CTabHandle, ITabHandle and CCrsrHandle: no
Jack Jansen [Fri, 15 Aug 1997 14:35:54 +0000 (14:35 +0000)]
Added support for GDHandle, CTabHandle, ITabHandle and CCrsrHandle: no
reason they were blacklisted, we can handle them as generic Handles.

27 years agoAdded GetAuxiliaryControlRecord and SetControlColor, there was no good
Jack Jansen [Fri, 15 Aug 1997 14:32:18 +0000 (14:32 +0000)]
Added GetAuxiliaryControlRecord and SetControlColor, there was no good
reason they were excluded.

27 years agoMade AEDesc_{New,Convert} global
Jack Jansen [Fri, 15 Aug 1997 14:31:13 +0000 (14:31 +0000)]
Made AEDesc_{New,Convert} global

27 years agoAnother checkpoint -- reorganized, in sections.
Guido van Rossum [Fri, 15 Aug 1997 04:39:58 +0000 (04:39 +0000)]
Another checkpoint -- reorganized, in sections.

27 years agothe usual
Guido van Rossum [Fri, 15 Aug 1997 02:52:46 +0000 (02:52 +0000)]
the usual

27 years agoDate
Guido van Rossum [Fri, 15 Aug 1997 02:52:35 +0000 (02:52 +0000)]
Date

27 years ago.
Guido van Rossum [Fri, 15 Aug 1997 02:52:20 +0000 (02:52 +0000)]
.

27 years agoKeep gcc -Wall happy
Guido van Rossum [Fri, 15 Aug 1997 02:52:08 +0000 (02:52 +0000)]
Keep gcc -Wall happy

27 years agoCheckpoint checkin of list of changes. Much more to follow, but it's
Guido van Rossum [Fri, 15 Aug 1997 02:50:47 +0000 (02:50 +0000)]
Checkpoint checkin of list of changes.  Much more to follow, but it's
late...

27 years agoThe usual.
Guido van Rossum [Fri, 15 Aug 1997 00:45:26 +0000 (00:45 +0000)]
The usual.

27 years agoAdded std copyright notice.
Guido van Rossum [Fri, 15 Aug 1997 00:04:24 +0000 (00:04 +0000)]
Added std copyright notice.

27 years agoOops, there was a bug in the output formatting - the last printed
Guido van Rossum [Thu, 14 Aug 1997 23:25:20 +0000 (23:25 +0000)]
Oops, there was a bug in the output formatting - the last printed
values would overwrite the next value.

27 years agoAdded AMK's first cut at docs for re.py
Guido van Rossum [Thu, 14 Aug 1997 23:12:18 +0000 (23:12 +0000)]
Added AMK's first cut at docs for re.py