]> granicus.if.org Git - python/log
python
25 years agoColor preferences code by Loren Luke (massaged by me somewhat)
Guido van Rossum [Tue, 20 Apr 1999 15:45:30 +0000 (15:45 +0000)]
Color preferences code by Loren Luke (massaged by me somewhat)

25 years agoPatch by Mark Favas: it fixes the search engine behaviour where an
Guido van Rossum [Tue, 20 Apr 1999 15:00:00 +0000 (15:00 +0000)]
Patch by Mark Favas: it fixes the search engine behaviour where an
unsuccessful search wraps around and re-searches that part of the file
between the start of the search and the end of the file - only really
an issue for very large files, but... (also removes a redundant
m.span() call).

25 years agoAdded example use of pack_list() to help explain the pack_item
Fred Drake [Tue, 20 Apr 1999 13:41:14 +0000 (13:41 +0000)]
Added example use of pack_list() to help explain the pack_item
parameter.  Lack of clarity reported by Matthew Gallagher
<hew@hons.cs.usyd.edu.au>.

25 years agoCalling _cleanup() does not guarantee that all processes have
Guido van Rossum [Tue, 20 Apr 1999 12:27:31 +0000 (12:27 +0000)]
Calling _cleanup() does not guarantee that all processes have
terminated; this makes the final assert in the self-test code fail if
the parent runs faster than the children.  Fix this by calling wait()
on the remaining children instead.

25 years agoUpdated to reflect additions.
Fred Drake [Mon, 19 Apr 1999 21:21:28 +0000 (21:21 +0000)]
Updated to reflect additions.

25 years agocolorsys docs from David Ascher.
Fred Drake [Mon, 19 Apr 1999 21:20:13 +0000 (21:20 +0000)]
colorsys docs from David Ascher.

25 years agobsddb docs from Skip Montanaro; added interesting links.
Fred Drake [Mon, 19 Apr 1999 21:19:21 +0000 (21:19 +0000)]
bsddb docs from Skip Montanaro; added interesting links.

25 years agoUtility function that yields a properly formatted time string.
Guido van Rossum [Mon, 19 Apr 1999 18:04:38 +0000 (18:04 +0000)]
Utility function that yields a properly formatted time string.

(Idea by Jeff Bauer, code by Jeremy, renamed and "Date:" constant
stripped from return value by GvR.)

25 years agoRelocating file to Lib/lib-tk.
Fred Drake [Mon, 19 Apr 1999 18:03:57 +0000 (18:03 +0000)]
Relocating file to Lib/lib-tk.

25 years agoJim Fulton writes:
Guido van Rossum [Mon, 19 Apr 1999 17:58:18 +0000 (17:58 +0000)]
Jim Fulton writes:

I have attached a new cPickle that adds a new control attribute
to unpicklers:

  Added new Unpickler attribute, find_global.  If set to None, then
  global and instance pickles are disabled.  Otherwise, it should be set to
  a callable object that takes two arguments, a module name and an
  object name, and returns an object.  If the attribute is unset, then
  the default mechanism is used.

  This feature provides an additional mechanism for controlling which
  classes can be used for unpickling.

25 years agoPatch from Tim Peters to repare a the problem that tracebacks are off
Guido van Rossum [Mon, 19 Apr 1999 17:54:19 +0000 (17:54 +0000)]
Patch from Tim Peters to repare a the problem that tracebacks are off
by a line when Python is run with -x.

25 years agoImprove text of some error messages, as suggested by Sean Reifschneider.
Guido van Rossum [Mon, 19 Apr 1999 17:44:39 +0000 (17:44 +0000)]
Improve text of some error messages, as suggested by Sean Reifschneider.

25 years agoDaniel Neri: OpenBSD is just as BSD'ish as the other BSD's ;-)
Guido van Rossum [Mon, 19 Apr 1999 17:22:12 +0000 (17:22 +0000)]
Daniel Neri: OpenBSD is just as BSD'ish as the other BSD's ;-)

25 years agoPatch by Drew Csillag for FreeBSD's sh, which doesn't automatically
Guido van Rossum [Mon, 19 Apr 1999 17:16:12 +0000 (17:16 +0000)]
Patch by Drew Csillag for FreeBSD's sh, which doesn't automatically
join \-terminated lines.

25 years agoAvoid triggering Alpha OSF/1 specific code on Alpha NT or Linux.
Guido van Rossum [Mon, 19 Apr 1999 16:50:26 +0000 (16:50 +0000)]
Avoid triggering Alpha OSF/1 specific code on Alpha NT or Linux.

25 years agoA few wishes are now fulfilled.
Guido van Rossum [Mon, 19 Apr 1999 16:26:02 +0000 (16:26 +0000)]
A few wishes are now fulfilled.

25 years agoTim Peters implements some of my wishes:
Guido van Rossum [Mon, 19 Apr 1999 16:23:15 +0000 (16:23 +0000)]
Tim Peters implements some of my wishes:

o Makes the tab key intelligently insert spaces when appropriate (see Help
list banter twixt David Ascher and me; idea stolen from every other editor
on earth <wink>).

o newline_and_indent_event trims trailing whitespace on the old line (pymode
and Codewright).

o newline_and_indent_event no longer fooled by trailing whitespace or
comment after ":" (pymode, PTUI).

o newline_and_indent_event now reduces the new line's indentation after
return, break, continue, raise and pass stmts (pymode).

The last two are easy to fool in the presence of strings & continuations,
but pymode requires Emacs's high-powered C parsing functions to avoid that
in finite time.

25 years agoRemove superfluous index entry for posix.popen(); no longer
Fred Drake [Fri, 16 Apr 1999 19:00:48 +0000 (19:00 +0000)]
Remove superfluous index entry for posix.popen(); no longer
appropriate since popen() is only documented in os.

25 years agoAdded link to Fredrik Lundh's online Tkinter reference material.
Fred Drake [Fri, 16 Apr 1999 18:26:22 +0000 (18:26 +0000)]
Added link to Fredrik Lundh's online Tkinter reference material.

25 years agoMinor nits, include author info.
Fred Drake [Fri, 16 Apr 1999 14:03:32 +0000 (14:03 +0000)]
Minor nits, include author info.

25 years agoIn list of sequence comparison examples, "=" should be "==". Reported
Fred Drake [Fri, 16 Apr 1999 13:17:04 +0000 (13:17 +0000)]
In list of sequence comparison examples, "=" should be "==".  Reported
by Mirko Liss <n89553@hrz.uni-paderborn.de>.

25 years ago'warn()' method now takes an optional line number.
Greg Ward [Thu, 15 Apr 1999 17:50:19 +0000 (17:50 +0000)]
'warn()' method now takes an optional line number.

25 years agoRemoved dbhash from the undocumented list.
Fred Drake [Thu, 15 Apr 1999 16:05:29 +0000 (16:05 +0000)]
Removed dbhash from the undocumented list.

25 years agoAdd libdbhash.tex.
Fred Drake [Thu, 15 Apr 1999 15:12:37 +0000 (15:12 +0000)]
Add libdbhash.tex.

25 years agoDocument the dbhash module, and link to it from appropriate places.
Fred Drake [Thu, 15 Apr 1999 15:11:40 +0000 (15:11 +0000)]
Document the dbhash module, and link to it from appropriate places.

25 years agoCorrect documentation for <file>.read(); Python makes a serious
Fred Drake [Wed, 14 Apr 1999 14:31:53 +0000 (14:31 +0000)]
Correct documentation for <file>.read(); Python makes a serious
best-effort to return 'size' bytes.  Point out that this may mean
multiple fread() calls.  Reported by Anders Hammarquist
<iko@iko.pp.se> via the Debian crew.

25 years agoUse the standard stylesheet here as well.
Fred Drake [Wed, 14 Apr 1999 14:28:48 +0000 (14:28 +0000)]
Use the standard stylesheet here as well.

25 years agoUse the tools/mkdvi.sh script to generate DVI and PDF output for the
Fred Drake [Wed, 14 Apr 1999 14:04:39 +0000 (14:04 +0000)]
Use the tools/mkdvi.sh script to generate DVI and PDF output for the
library reference now that it's sufficiently capable.

25 years agoFurther refinement, to allow this to handle the library reference as
Fred Drake [Wed, 14 Apr 1999 13:13:32 +0000 (13:13 +0000)]
Further refinement, to allow this to handle the library reference as
well as the other "manual" documents.

25 years agoTypo: "Otherwose" --> "Otherwise" (reported by Joakim Sernbrant
Fred Drake [Wed, 14 Apr 1999 12:52:14 +0000 (12:52 +0000)]
Typo: "Otherwose" --> "Otherwise"  (reported by Joakim Sernbrant
<joakim.sernbrant@front.se>).

Misc. small fixes to the logical markup.

25 years agoAdd some support for the module index, so this can be used to build
Fred Drake [Wed, 14 Apr 1999 05:02:06 +0000 (05:02 +0000)]
Add some support for the module index, so this can be used to build
the .aux file for any of the "manual" class documents.

25 years agoFor now, comment out the \ignorePlatformAnnotation; the global index
Fred Drake [Tue, 13 Apr 1999 22:19:21 +0000 (22:19 +0000)]
For now, comment out the \ignorePlatformAnnotation; the global index
doesn't really work with this.

25 years agoDon't include the verbatim style; the default handling is better.
Fred Drake [Tue, 13 Apr 1999 22:17:55 +0000 (22:17 +0000)]
Don't include the verbatim style; the default handling is better.

25 years agoFix problem of LaTeX leakage in the module synopsis tables at the
Fred Drake [Tue, 13 Apr 1999 22:08:59 +0000 (22:08 +0000)]
Fix problem of LaTeX leakage in the module synopsis tables at the
beginning of chapters.  Known problem reported by Barry Scott
<barry@scottb.demon.co.uk>.

25 years agoFix availability declaration for popen2 module; report by Barry Scott
Fred Drake [Tue, 13 Apr 1999 22:03:26 +0000 (22:03 +0000)]
Fix availability declaration for popen2 module; report by Barry Scott
<barry@scottb.demon.co.uk>.

25 years agoMinor cleanup.
Fred Drake [Tue, 13 Apr 1999 21:39:31 +0000 (21:39 +0000)]
Minor cleanup.

25 years agoFix availability declaration for stat module; report by Barry Scott
Fred Drake [Tue, 13 Apr 1999 21:38:02 +0000 (21:38 +0000)]
Fix availability declaration for stat module; report by Barry Scott
<barry@scottb.demon.co.uk>.

25 years agoWork around problems with HTML conversion by making the break and
Fred Drake [Tue, 13 Apr 1999 21:36:44 +0000 (21:36 +0000)]
Work around problems with HTML conversion by making the break and
tbreak synopses be all on one line (each).  Known problem, most
recently reported by Barry Scott <barry@scottb.demon.co.uk>.

25 years agoJust in case a copy of the documentation gets released somehow...
Fred Drake [Tue, 13 Apr 1999 21:22:46 +0000 (21:22 +0000)]
Just in case a copy of the documentation gets released somehow...

25 years agoThis commit was manufactured by cvs2svn to create tag 'r152'. v1.5.2
cvs2svn [Tue, 13 Apr 1999 15:52:45 +0000 (15:52 +0000)]
This commit was manufactured by cvs2svn to create tag 'r152'.

25 years agoNews for 1.5.2 (final).
Guido van Rossum [Tue, 13 Apr 1999 15:52:45 +0000 (15:52 +0000)]
News for 1.5.2 (final).

25 years agoBump version to 1.5.2 (final)
Guido van Rossum [Tue, 13 Apr 1999 15:44:49 +0000 (15:44 +0000)]
Bump version to 1.5.2 (final)

25 years agoAdded shamodule.c
Guido van Rossum [Tue, 13 Apr 1999 15:44:21 +0000 (15:44 +0000)]
Added shamodule.c

25 years agoAdded sha module!
Guido van Rossum [Tue, 13 Apr 1999 15:41:10 +0000 (15:41 +0000)]
Added sha module!

25 years agoPrepare for final release.
Guido van Rossum [Tue, 13 Apr 1999 14:47:26 +0000 (14:47 +0000)]
Prepare for final release.

25 years agoMore (Cameron Laird is honorary; the others are 1.5.2c1 testers).
Guido van Rossum [Tue, 13 Apr 1999 14:32:42 +0000 (14:32 +0000)]
More (Cameron Laird is honorary; the others are 1.5.2c1 testers).

25 years agoWhile I can't really test this thoroughly, Pat Knight and the Solaris
Guido van Rossum [Tue, 13 Apr 1999 14:32:12 +0000 (14:32 +0000)]
While I can't really test this thoroughly, Pat Knight and the Solaris
man pages suggest that the proper thing to do is to add THR_NEW_LWP to
the flags on thr_create(), and that there really isn't a downside, so
I'll do that.

25 years agoBunch of new names who helped iron out the last wrinkles of 1.5.2.
Guido van Rossum [Tue, 13 Apr 1999 14:25:52 +0000 (14:25 +0000)]
Bunch of new names who helped iron out the last wrinkles of 1.5.2.

25 years agoBump the myusterious M$ version number from 1,5,2,1 to 1,5,2,3.
Guido van Rossum [Tue, 13 Apr 1999 14:23:45 +0000 (14:23 +0000)]
Bump the myusterious M$ version number from 1,5,2,1 to 1,5,2,3.
(I can't even display this on NT, maybe Win/98 can?)

25 years agoClass around PixMap objects that allows more python-like access. By Joe Strout.
Jack Jansen [Tue, 13 Apr 1999 11:45:46 +0000 (11:45 +0000)]
Class around PixMap objects that allows more python-like access. By Joe Strout.

25 years agoFix mysterious references to jprofile that were in the source since
Guido van Rossum [Tue, 13 Apr 1999 04:24:22 +0000 (04:24 +0000)]
Fix mysterious references to jprofile that were in the source since
its creation.  I'm assuming these were once valid references to "Jim
Roskind's profile"...

25 years agoRemoved; since long subsumed in Doc/lib/libthreading.tex
Guido van Rossum [Tue, 13 Apr 1999 04:20:48 +0000 (04:20 +0000)]
Removed; since long subsumed in Doc/lib/libthreading.tex

25 years agoPut back __osf__ support for gethostbyname_r(); the real bug was that
Guido van Rossum [Tue, 13 Apr 1999 04:07:32 +0000 (04:07 +0000)]
Put back __osf__ support for gethostbyname_r(); the real bug was that
it was being used even without threads.  This of course might be an
all-platform problem so now we only use the _r variant when we are
using threads.

25 years agoFix accidentally reversed NULL test in load_mark(). Suggested by
Guido van Rossum [Mon, 12 Apr 1999 22:51:20 +0000 (22:51 +0000)]
Fix accidentally reversed NULL test in load_mark().  Suggested by
Tamito Kajiyama.  (This caused a bug only on platforms where malloc(0)
returns NULL.)

25 years agoAdd note about popen2 problem on Linux noticed by Pablo Bleyer.
Guido van Rossum [Mon, 12 Apr 1999 19:01:45 +0000 (19:01 +0000)]
Add note about popen2 problem on Linux noticed by Pablo Bleyer.

25 years agoAdd note about -D_REENTRANT for HP-UX 10.20.
Guido van Rossum [Mon, 12 Apr 1999 18:16:09 +0000 (18:16 +0000)]
Add note about -D_REENTRANT for HP-UX 10.20.

25 years ago'clean' target should remove hassignal.
Guido van Rossum [Mon, 12 Apr 1999 16:42:13 +0000 (16:42 +0000)]
'clean' target should remove hassignal.

25 years agoIgnore the doc/ directory ("Documenting Python").
Fred Drake [Mon, 12 Apr 1999 15:41:44 +0000 (15:41 +0000)]
Ignore the doc/ directory ("Documenting Python").

25 years agoRemove all VC++ info (except VC 1.5) from readme.txt;
Guido van Rossum [Mon, 12 Apr 1999 14:49:01 +0000 (14:49 +0000)]
Remove all VC++ info (except VC 1.5) from readme.txt;
remove the VC++ 4.0 project file; remove the unused _tkinter extern defs.

25 years agoClarify PC build instructions (point to PCbuild).
Guido van Rossum [Mon, 12 Apr 1999 14:47:30 +0000 (14:47 +0000)]
Clarify PC build instructions (point to PCbuild).

25 years agoCast added by Jack Jansen (for Mac port).
Guido van Rossum [Mon, 12 Apr 1999 14:35:48 +0000 (14:35 +0000)]
Cast added by Jack Jansen (for Mac port).

25 years agoForgot to add this file. CDROM device parameters.
Guido van Rossum [Mon, 12 Apr 1999 14:35:08 +0000 (14:35 +0000)]
Forgot to add this file.  CDROM device parameters.

25 years agoTwo different changes.
Guido van Rossum [Mon, 12 Apr 1999 14:34:16 +0000 (14:34 +0000)]
Two different changes.

1. Jack Jansen reports that on the Mac, the time may be negative, and
solves this by adding a write32u() function that writes an unsigned
long.

2. On 64-bit platforms the CRC comparison fails; I've fixed this by
casting both values to be compared to "unsigned long" i.e. modulo
0x100000000L.

25 years agoRemoved reference to the PSA (PSA membership no longer needed for CVS
Jack Jansen [Mon, 12 Apr 1999 09:25:23 +0000 (09:25 +0000)]
Removed reference to the PSA (PSA membership no longer needed for CVS
access).
New location for MacCVS.

25 years agoNo longer needed.
Guido van Rossum [Sat, 10 Apr 1999 18:42:02 +0000 (18:42 +0000)]
No longer needed.

25 years agoCorrect missed character in Andrew Dalke's name.
Guido van Rossum [Sat, 10 Apr 1999 17:17:51 +0000 (17:17 +0000)]
Correct missed character in Andrew Dalke's name.

25 years agoAdd DEC Ultrix notes (from Donn Cave's email).
Guido van Rossum [Sat, 10 Apr 1999 16:04:07 +0000 (16:04 +0000)]
Add DEC Ultrix notes (from Donn Cave's email).

25 years agoThe usual
Guido van Rossum [Sat, 10 Apr 1999 16:02:18 +0000 (16:02 +0000)]
The usual

25 years agoQuote a bunch of shell variables used in test, related to long-long.
Guido van Rossum [Sat, 10 Apr 1999 16:01:48 +0000 (16:01 +0000)]
Quote a bunch of shell variables used in test, related to long-long.

25 years agocasts for picky compilers.
Guido van Rossum [Sat, 10 Apr 1999 15:48:23 +0000 (15:48 +0000)]
casts for picky compilers.

25 years ago3-arg gethostbyname_r doesn't really work on OSF/1.
Guido van Rossum [Sat, 10 Apr 1999 15:46:01 +0000 (15:46 +0000)]
3-arg gethostbyname_r doesn't really work on OSF/1.

25 years agoAvoid totally empty files.
Guido van Rossum [Sat, 10 Apr 1999 14:00:28 +0000 (14:00 +0000)]
Avoid totally empty files.

25 years agoMisspellling: "occurance" --> "occurrence"
Fred Drake [Fri, 9 Apr 1999 19:57:09 +0000 (19:57 +0000)]
Misspellling:  "occurance" --> "occurrence"

25 years agoUse re instead of regex.
Guido van Rossum [Fri, 9 Apr 1999 14:56:35 +0000 (14:56 +0000)]
Use re instead of regex.
Don't rewrite the file in place.
(Reported by Andy Dustman.)

25 years agoUse #!/usr/bin/env python instead of #!/usr/local/bin/python.
Fred Drake [Fri, 9 Apr 1999 14:53:35 +0000 (14:53 +0000)]
Use #!/usr/bin/env python instead of #!/usr/local/bin/python.

25 years agoGet rid of #! line
Guido van Rossum [Fri, 9 Apr 1999 14:49:04 +0000 (14:49 +0000)]
Get rid of #! line

25 years agoOops, try again. Test checkin (empty line) to see whether the new mailman-based Pytho...
Jack Jansen [Fri, 9 Apr 1999 10:22:40 +0000 (10:22 +0000)]
Oops, try again. Test checkin (empty line) to see whether the new mailman-based PythonMac-checkins mailing list works.

25 years agoTest checkin (empty line) to see whether the new mailman-based PythonMac-checkins...
Jack Jansen [Fri, 9 Apr 1999 10:20:26 +0000 (10:20 +0000)]
Test checkin (empty line) to see whether the new mailman-based PythonMac-checkins mailing list works.

25 years agoUse the Tcl 8.0.5 installer.
Guido van Rossum [Thu, 8 Apr 1999 23:13:37 +0000 (23:13 +0000)]
Use the Tcl 8.0.5 installer.
Add a variable %_TCL_% that makes it easier to switch to a different version.

25 years agoThis commit was manufactured by cvs2svn to create tag 'r152c1'. v1.5.2c1
cvs2svn [Thu, 8 Apr 1999 20:50:27 +0000 (20:50 +0000)]
This commit was manufactured by cvs2svn to create tag 'r152c1'.

25 years agoRelease 1.5.2c1. Add IDLE and Uninstall to program group.
Guido van Rossum [Thu, 8 Apr 1999 20:50:27 +0000 (20:50 +0000)]
Release 1.5.2c1.  Add IDLE and Uninstall to program group.
Don't distribute zlib.dll.  Tweak some comments.

25 years agoNow using static zlib 1.1.3
Guido van Rossum [Thu, 8 Apr 1999 20:49:11 +0000 (20:49 +0000)]
Now using static zlib 1.1.3

25 years ago# File location for tut.tex and URL for Aaron Watters' tutorial have changed.
Guido van Rossum [Thu, 8 Apr 1999 20:42:11 +0000 (20:42 +0000)]
# File location for tut.tex and URL for Aaron Watters' tutorial have changed.

25 years ago# TODO entries changed
Guido van Rossum [Thu, 8 Apr 1999 20:28:42 +0000 (20:28 +0000)]
# TODO entries changed

25 years agoThe usual
Guido van Rossum [Thu, 8 Apr 1999 20:27:54 +0000 (20:27 +0000)]
The usual

25 years agoRelease 1.5.2c1
Guido van Rossum [Thu, 8 Apr 1999 20:23:44 +0000 (20:23 +0000)]
Release 1.5.2c1

25 years agoRelease 1.5.2c1.
Guido van Rossum [Thu, 8 Apr 1999 20:23:28 +0000 (20:23 +0000)]
Release 1.5.2c1.

25 years ago# Bah. The same problem occurred a second time.
Guido van Rossum [Thu, 8 Apr 1999 20:22:46 +0000 (20:22 +0000)]
# Bah.  The same problem occurred a second time.

25 years agoNews for the 1.5.2c1 release.
Guido van Rossum [Thu, 8 Apr 1999 20:17:57 +0000 (20:17 +0000)]
News for the 1.5.2c1 release.

25 years agoOn Windows, we suddenly find, strftime() may return "" for an
Guido van Rossum [Thu, 8 Apr 1999 17:23:11 +0000 (17:23 +0000)]
On Windows, we suddenly find, strftime() may return "" for an
unsupported format string.  (I guess this is because the logic for
deciding whether to reallocate the buffer or not has been improved.)
This caused the test code to crash on result[0].  Fix this by assuming
an empty result also means the format is not supported.

25 years agoThis demo imported some private code from Matt. Make it cripple along.
Guido van Rossum [Thu, 8 Apr 1999 15:18:12 +0000 (15:18 +0000)]
This demo imported some private code from Matt.  Make it cripple along.

25 years agoDelete an accidentally checked-in feature that actually broke more
Guido van Rossum [Thu, 8 Apr 1999 14:46:06 +0000 (14:46 +0000)]
Delete an accidentally checked-in feature that actually broke more
than was worth it: when deleting a canvas item, it would try to
automatically delete the bindings for that item.  Since there's
nothing that says you can't reuse the tag and still have the bindings,
this is not correct.  Also, it broke at least one demo
(Demo/tkinter/matt/rubber-band-box-demo-1.py).

25 years agoWin/CE thread support by Mark Hammond.
Guido van Rossum [Thu, 8 Apr 1999 13:57:06 +0000 (13:57 +0000)]
Win/CE thread support by Mark Hammond.

25 years agoPatch by Andrew Kuchling to unflush() (flush() for deflating).
Guido van Rossum [Wed, 7 Apr 1999 20:23:17 +0000 (20:23 +0000)]
Patch by Andrew Kuchling to unflush() (flush() for deflating).
Without this, if inflate() returned Z_BUF_ERROR asking for more output
space, we would report the error; now, we increase the buffer size and
try again, just as for Z_OK.

25 years agoUse binary mode for all gzip files we open.
Guido van Rossum [Wed, 7 Apr 1999 19:00:58 +0000 (19:00 +0000)]
Use binary mode for all gzip files we open.

25 years agoNew change log.
Guido van Rossum [Wed, 7 Apr 1999 18:43:22 +0000 (18:43 +0000)]
New change log.

25 years agoNew version.
Guido van Rossum [Wed, 7 Apr 1999 18:41:59 +0000 (18:41 +0000)]
New version.

25 years agoAlas, get rid of the Win specific hack to ask the user to press Return
Guido van Rossum [Wed, 7 Apr 1999 18:32:51 +0000 (18:32 +0000)]
Alas, get rid of the Win specific hack to ask the user to press Return
before exiting when an error happened.  This didn't work right when
Python is invoked from a daemon.

25 years agoVersion bump awaiting impending new release.
Guido van Rossum [Wed, 7 Apr 1999 18:27:29 +0000 (18:27 +0000)]
Version bump awaiting impending new release.
(Not much has changed :-( )

25 years agoRemoving an unused image of a snake.
Guido van Rossum [Wed, 7 Apr 1999 17:23:09 +0000 (17:23 +0000)]
Removing an unused image of a snake.
I don't know what its origins are but I think I've seen it
once in a NeXT dictionary application -- not sure whether
anyone owns copyright but I don't see why we should risk it.