From guido@cnri.reston.va.us Fri Oct 1 15:29:17 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Fri, 1 Oct 1999 10:29:17 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/PC winsound.c Message-ID: <199910011429.KAA13501@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/PC In directory eric:/projects/python/develop/guido/src/PC Modified Files: winsound.c Log Message: Mark Hammond writes: Attached is a context diff to winsound.c that adds a Beep() function to play a sound through the PC speaker. Seems to make sense to have this added, so I just went and did it! From fdrake@weyr.cnri.reston.va.us Mon Oct 4 19:11:56 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 4 Oct 1999 14:11:56 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Lib ConfigParser.py Message-ID: <199910041811.OAA28949@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory weyr:/home/fdrake/projects/python/Lib Modified Files: ConfigParser.py Log Message: ConfigParser.read(): Don't mask IOError exceptions. From guido@cnri.reston.va.us Mon Oct 4 19:57:28 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 4 Oct 1999 14:57:28 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Lib ConfigParser.py Message-ID: <199910041857.OAA18769@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory eric:/projects/python/develop/guido/src/Lib Modified Files: ConfigParser.py Log Message: Urmpfh! Withdraw the change that Fred just checked in -- it was a poorly documented feature, not a bug, to ignore I/O errors in read(). The new docstring explains the reason for the feature: """ this is designed so that you can specifiy a list of potential configuration file locations (e.g. current directory, user's home directory, systemwide directory), and all existing configuration files in the list will be read. """ Also add a lower-level function, readfp(), which takes an open file object (and optionally a filename). XXX There are some other problems with this module, but I don't have time to dig into these; in particular, there are complaints that the %(name)s substitution from the [DEFAULTS] section doesn't work correctly. From guido@cnri.reston.va.us Mon Oct 4 20:58:23 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 4 Oct 1999 15:58:23 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Lib ConfigParser.py Message-ID: <199910041958.PAA19065@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory eric:/projects/python/develop/guido/src/Lib Modified Files: ConfigParser.py Log Message: Added has_option(); fix bug in get() which botched interpolation if '%(' was found in first position (found by Fred Drake). From guido@cnri.reston.va.us Tue Oct 5 22:59:34 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Tue, 5 Oct 1999 17:59:34 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src configure configure.in Message-ID: <199910052159.RAA05627@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src In directory eric:/projects/python/develop/guido/src Modified Files: configure configure.in Log Message: Dynamic linking support for BSD/OS 4.x as suggested by Vivek Khera From guido@cnri.reston.va.us Tue Oct 5 23:16:08 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Tue, 5 Oct 1999 18:16:08 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Demo/pysvr pysvr.c Message-ID: <199910052216.SAA05817@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Demo/pysvr In directory eric:/projects/python/develop/guido/src/Demo/pysvr Modified Files: pysvr.c Log Message: Add -v flag. Comment duplicate Py_Finalize(). From guido@cnri.reston.va.us Tue Oct 5 23:17:42 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Tue, 5 Oct 1999 18:17:42 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Python sysmodule.c Message-ID: <199910052217.SAA07270@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Python In directory eric:/projects/python/develop/guido/src/Python Modified Files: sysmodule.c Log Message: In PySys_GetObject(), it's possible that tstate->interp->sysdict is NULL. In that case, return NULL rather than dumping core. This fixes PR#91, submitted by Lele Gaifax. From guido@cnri.reston.va.us Wed Oct 6 16:19:20 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Wed, 6 Oct 1999 11:19:20 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Lib rfc822.py Message-ID: <199910061519.LAA08886@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory eric:/projects/python/develop/guido/src/Lib Modified Files: rfc822.py Log Message: Fix PR#3, submitted by Skip Montanaro: if no space appears after the colon, the first character of the value is lost. From bwarsaw@cnri.reston.va.us Thu Oct 7 21:00:02 1999 From: bwarsaw@cnri.reston.va.us (Barry A. Warsaw) Date: Thu, 7 Oct 1999 16:00:02 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Tools/audiopy audiopy Message-ID: <199910072000.QAA02675@anthem.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Tools/audiopy In directory anthem:/projects/python/develop/bwarsaw/python/dist/src/Tools/audiopy Modified Files: audiopy Log Message: main(): Arg! I wasn't properly ignoring EINVAL; now only re-raise the exception if code <> errno.EINVAL. Jeremy this should fix your problem. From guido@cnri.reston.va.us Sun Oct 10 22:14:26 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Sun, 10 Oct 1999 17:14:26 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Lib pickle.py Message-ID: <199910102114.RAA12361@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory eric:/projects/python/develop/guido/src/Lib Modified Files: pickle.py Log Message: Jeremy writes: I found the following patch helpful in tracking down a bug in some code. I had appended time, the module, instead of time.time(). Not sure if it is generally true that printing the repr of the object is good, but I expect that most unpicklable things will have fairly information and concise reprs (like files or sockets or modules). From guido@cnri.reston.va.us Mon Oct 11 15:03:13 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 11 Oct 1999 10:03:13 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Objects classobject.c Message-ID: <199910111403.KAA12759@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Objects In directory eric:/projects/python/develop/guido/src/Objects Modified Files: classobject.c Log Message: Fix for PR#98 (Adrian Eyre) -- in instancemethod_repr, the funcname object is DECREFed too early. From guido@cnri.reston.va.us Mon Oct 11 23:15:42 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 11 Oct 1999 18:15:42 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Lib string.py Message-ID: <199910112215.SAA14477@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory eric:/projects/python/develop/guido/src/Lib Modified Files: string.py Log Message: Fix PR#31 -- zfill() mishandles empty string. From guido@cnri.reston.va.us Mon Oct 11 23:34:41 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 11 Oct 1999 18:34:41 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Objects longobject.c Message-ID: <199910112234.SAA14632@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Objects In directory eric:/projects/python/develop/guido/src/Objects Modified Files: longobject.c Log Message: Fix PR#66. Solution: add error checking around l_divmod() calls in long_pow(). From bwarsaw@cnri.reston.va.us Tue Oct 12 17:12:49 1999 From: bwarsaw@cnri.reston.va.us (Barry A. Warsaw) Date: Tue, 12 Oct 1999 12:12:49 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Lib ConfigParser.py Message-ID: <199910121612.MAA09711@anthem.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory anthem:/projects/python/develop/bwarsaw/python/dist/src/Lib Modified Files: ConfigParser.py Log Message: fixed a typo in a docstring, and slightly expanded the module docstring info for readfp(). From jhylton@cnri.reston.va.us Tue Oct 12 17:20:14 1999 From: jhylton@cnri.reston.va.us (Jeremy Hylton) Date: Tue, 12 Oct 1999 12:20:14 -0400 (EDT) Subject: [Python-checkins] CVS: /python/dist/src/Lib SocketServer.py Message-ID: <199910121620.MAA18959@bitdiddle.cnri.reston.va.us> Update of /projects/cvsroot//python/dist/src/Lib In directory bitdiddle:/local/home/jhylton/local/python/src/Lib Modified Files: SocketServer.py Log Message: update to use threading module instead of thread. From fdrake@weyr.cnri.reston.va.us Tue Oct 12 19:42:06 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 12 Oct 1999 14:42:06 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/api api.tex Message-ID: <199910121842.OAA09201@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/api In directory weyr:/home/fdrake/projects/python/Doc-152p1/api Modified Files: Tag: release152p1-patches api.tex Log Message: Patch from Paul Dubois pointing out that the dictionary reference returned from PyModule_GetDict() is borrowed. Made a couple of other details about PyModule_Get*() functions explicit. From bwarsaw@cnri.reston.va.us Tue Oct 12 20:54:35 1999 From: bwarsaw@cnri.reston.va.us (Barry A. Warsaw) Date: Tue, 12 Oct 1999 15:54:35 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Include floatobject.h intobject.h Message-ID: <199910121954.PAA26172@anthem.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Include In directory anthem:/tmp/python/src/Include Modified Files: floatobject.h intobject.h Log Message: Mainlining the string_methods branch. See branch revision log messages for specific changes. From bwarsaw@cnri.reston.va.us Tue Oct 12 20:54:41 1999 From: bwarsaw@cnri.reston.va.us (Barry A. Warsaw) Date: Tue, 12 Oct 1999 15:54:41 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Lib string.py stringold.py Message-ID: <199910121954.PAA26187@anthem.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory anthem:/tmp/python/src/Lib Modified Files: string.py stringold.py Log Message: Mainlining the string_methods branch. See branch revision log messages for specific changes. From bwarsaw@cnri.reston.va.us Tue Oct 12 20:54:55 1999 From: bwarsaw@cnri.reston.va.us (Barry A. Warsaw) Date: Tue, 12 Oct 1999 15:54:55 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Python bltinmodule.c Message-ID: <199910121954.PAA26218@anthem.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Python In directory anthem:/tmp/python/src/Python Modified Files: bltinmodule.c Log Message: Mainlining the string_methods branch. See branch revision log messages for specific changes. From bwarsaw@cnri.reston.va.us Tue Oct 12 20:54:49 1999 From: bwarsaw@cnri.reston.va.us (Barry A. Warsaw) Date: Tue, 12 Oct 1999 15:54:49 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Objects abstract.c floatobject.c intobject.c stringobject.c Message-ID: <199910121954.PAA26204@anthem.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Objects In directory anthem:/tmp/python/src/Objects Modified Files: abstract.c floatobject.c intobject.c stringobject.c Log Message: Mainlining the string_methods branch. See branch revision log messages for specific changes. From fdrake@weyr.cnri.reston.va.us Wed Oct 13 23:14:52 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 13 Oct 1999 18:14:52 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib liblinecache.tex Message-ID: <199910132214.SAA11472@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/lib In directory weyr:/home/fdrake/projects/python/Doc-152p1/lib Modified Files: Tag: release152p1-patches liblinecache.tex Log Message: Fix up grammar in clearcache() description, based on comment from Robert Kern. In getline() description, point out that the trailing newline is included with the line. From fdrake@weyr.cnri.reston.va.us Sat Oct 16 03:07:52 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 15 Oct 1999 22:07:52 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Lib CGIHTTPServer.py Message-ID: <199910160207.WAA26545@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory weyr:/home/fdrake/projects/python/Lib Modified Files: CGIHTTPServer.py Log Message: Based on comments from Paul Prescod: If os.fork() doesn't exist, raise SystemError with an explanation at the top of the module. Added a note to the module docstring. From fdrake@weyr.cnri.reston.va.us Mon Oct 18 14:43:45 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 18 Oct 1999 09:43:45 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Lib CGIHTTPServer.py Message-ID: <199910181343.JAA28515@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory weyr:/home/fdrake/projects/python/Lib Modified Files: CGIHTTPServer.py Log Message: os.fork raises AttributeError, not NameError, if fork() isn't supported. Pointed out by Moshe Zadka . From fdrake@weyr.cnri.reston.va.us Mon Oct 18 15:10:07 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 18 Oct 1999 10:10:07 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libposixpath.tex Message-ID: <199910181410.KAA28732@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/lib In directory weyr:/home/fdrake/projects/python/Doc/lib Modified Files: libposixpath.tex Log Message: Fixed typo in explanation of abspath(); noticed by Paul Prescod . From fdrake@weyr.cnri.reston.va.us Mon Oct 18 15:10:38 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 18 Oct 1999 10:10:38 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libposixpath.tex Message-ID: <199910181410.KAA28751@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/lib In directory weyr:/home/fdrake/projects/python/Doc-152p1/lib Modified Files: Tag: release152p1-patches libposixpath.tex Log Message: Fixed typo in explanation of abspath(); noticed by Paul Prescod . From guido@cnri.reston.va.us Mon Oct 18 22:41:44 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 18 Oct 1999 17:41:44 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Lib fileinput.py Message-ID: <199910182141.RAA23595@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory eric:/projects/python/develop/guido/src/Lib Modified Files: fileinput.py Log Message: Fix for PR#111: when using the inplace option, give the new file the same permissions as the old file, plugging a security hole. (Not using exactly the suggested bugfix.) From guido@cnri.reston.va.us Mon Oct 18 23:06:39 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 18 Oct 1999 18:06:39 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Lib/lib-tk Tkinter.py Message-ID: <199910182206.SAA23729@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib/lib-tk In directory eric:/projects/python/develop/guido/src/Lib/lib-tk Modified Files: Tkinter.py Log Message: Fixed PR#106: winfo_visualsavailable() with the includeids=1 option didn't properly handle the hex numbers returned. From jhylton@cnri.reston.va.us Mon Oct 18 23:25:23 1999 From: jhylton@cnri.reston.va.us (Jeremy Hylton) Date: Mon, 18 Oct 1999 18:25:23 -0400 (EDT) Subject: [Python-checkins] CVS: /python/dist/src/Lib getpass.py Message-ID: <199910182225.SAA20769@bitdiddle.cnri.reston.va.us> Update of /projects/cvsroot//python/dist/src/Lib In directory bitdiddle:/local/home/jhylton/local/python/src/Lib Modified Files: getpass.py Log Message: print a warning if the password will be echoed. At import time, getpass will be bound to the appropriate platform-specific function. If the platform's echo-disabler is not available, default_getpass, which prints the warning, will be used From guido@cnri.reston.va.us Tue Oct 19 05:47:14 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Tue, 19 Oct 1999 00:47:14 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Modules binascii.c Message-ID: <199910190447.AAA24788@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Modules In directory eric:/projects/python/develop/guido/src/Modules Modified Files: binascii.c Log Message: Fix PR#110 -- bad input ("====") for a2b_base64() caused it to call _PyString_Resize() with a negative size. From guido@cnri.reston.va.us Tue Oct 19 14:29:24 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Tue, 19 Oct 1999 09:29:24 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Modules posixmodule.c Message-ID: <199910191329.JAA25342@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Modules In directory eric:/projects/python/develop/guido/src/Modules Modified Files: posixmodule.c Log Message: John DuBois tells us that SCO OpenServer 5.0 and later requires _SVID3 before it reveals the needed definitions in sys/statvfs.h. From guido@cnri.reston.va.us Tue Oct 19 18:48:55 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Tue, 19 Oct 1999 13:48:55 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Lib/test test_binhex.py Message-ID: <199910191748.NAA26280@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib/test In directory eric:/projects/python/develop/guido/src/Lib/test Modified Files: test_binhex.py Log Message: This test really only tests the binhex module. Renamed it and adapted a comment and an error message. From guido@cnri.reston.va.us Tue Oct 19 20:05:15 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Tue, 19 Oct 1999 15:05:15 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Modules binascii.c Message-ID: <199910191905.PAA26638@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Modules In directory eric:/projects/python/develop/guido/src/Modules Modified Files: binascii.c Log Message: Patch by Jason Trowbridge. (Followup to his PR#110.) (Slightly reformatted.) - Illegal padding is now ignored. (Recommendation by GvR.) - Padding no longer removes characters from data string (resulting in lost data/strings with negative lengths). - Illegal characters outside the ASCII range are now ignored, instead of possibly being remapped to a valid character. From guido@cnri.reston.va.us Tue Oct 19 20:07:33 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Tue, 19 Oct 1999 15:07:33 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Lib/test/output test_binhex Message-ID: <199910191907.PAA26849@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib/test/output In directory eric:/projects/python/develop/guido/src/Lib/test/output Added Files: test_binhex Log Message: Test output for test_binhex.py. From guido@cnri.reston.va.us Tue Oct 19 20:08:13 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Tue, 19 Oct 1999 15:08:13 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Lib/test test_binascii.py Message-ID: <199910191908.PAA26867@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib/test In directory eric:/projects/python/develop/guido/src/Lib/test Modified Files: test_binascii.py Log Message: Rewritten -- this now tests the binascii *except* for the binhex module, which is tested by test_binhex.py. From guido@cnri.reston.va.us Tue Oct 19 20:09:01 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Tue, 19 Oct 1999 15:09:01 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Lib/test/output test_binascii Message-ID: <199910191909.PAA26885@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib/test/output In directory eric:/projects/python/develop/guido/src/Lib/test/output Modified Files: test_binascii Log Message: Test output. (XXX perhaps a bit too verbose; in particular it is sensitive to all the doc strings.) From guido@cnri.reston.va.us Wed Oct 20 13:29:57 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Wed, 20 Oct 1999 08:29:57 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Lib/lib-tk Tkinter.py Message-ID: <199910201229.IAA27826@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib/lib-tk In directory eric:/projects/python/develop/guido/src/Lib/lib-tk Modified Files: Tkinter.py Log Message: Fix PR#107: wm_colormapwindows() did the wrong thing when presented more than one window argument. From fdrake@weyr.cnri.reston.va.us Wed Oct 20 16:06:25 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 20 Oct 1999 11:06:25 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/api refcounts.dat Message-ID: <199910201506.LAA06895@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/api In directory weyr:/home/fdrake/projects/python/Doc/api Added Files: refcounts.dat Log Message: Initial version as provided by Skip Montanaro . From fdrake@weyr.cnri.reston.va.us Wed Oct 20 17:03:38 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 20 Oct 1999 12:03:38 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/api refcounts.dat Message-ID: <199910201603.MAA11419@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/api In directory weyr:/home/fdrake/projects/python/Doc/api Modified Files: refcounts.dat Log Message: Added note that Skip created the initial version of this file. Fixed up a few of his ??? comments. From fdrake@weyr.cnri.reston.va.us Wed Oct 20 22:50:32 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 20 Oct 1999 17:50:32 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/tools refcounts.py Message-ID: <199910202150.RAA27464@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/tools In directory weyr:/home/fdrake/projects/python/Doc/tools Added Files: refcounts.py Log Message: Module/script to parse the reference count data file and make the information accessible to Python. When run as a script, just dumps the information back out in the data format, with functions in sorted order and a blank line between different functions. Still need to apply the information somehow. From guido@cnri.reston.va.us Fri Oct 22 14:09:21 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Fri, 22 Oct 1999 09:09:21 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Lib smtplib.py Message-ID: <199910221309.JAA00500@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory eric:/projects/python/develop/guido/src/Lib Modified Files: smtplib.py Log Message: In helo() and ehlo(), Don't fail when gethostbyaddr() fails -- just keep whatever gethostname() returns. After a suggestion by Doug Wyatt. From fdrake@weyr.cnri.reston.va.us Fri Oct 22 14:59:31 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 22 Oct 1999 09:59:31 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libstatvfs.tex Message-ID: <199910221359.JAA08044@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/lib In directory weyr:/home/fdrake/projects/python/Doc-152p1/lib Modified Files: Tag: release152p1-patches libstatvfs.tex Log Message: Added description for F_BLOCKS (omission noted by Andreas Jung ). From fdrake@weyr.cnri.reston.va.us Fri Oct 22 18:42:53 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 22 Oct 1999 13:42:53 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/tut tut.tex Message-ID: <199910221742.NAA09097@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/tut In directory weyr:/home/fdrake/projects/python/Doc-152p1/tut Modified Files: Tag: release152p1-patches tut.tex Log Message: Lots of small-ish changes, mostly suggested by Stefan Hoffmeister . Many related to small formatting problems from LaTeX2HTML (spaces getting dropped). Others required more clarification or added sentences and examples. Also moved section on __init__() from "Random Remarks" to early in the introduction of classes, since most people want some initialization to occur when instances are created. From fdrake@weyr.cnri.reston.va.us Fri Oct 22 22:08:57 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 22 Oct 1999 17:08:57 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libwinsound.tex Message-ID: <199910222108.RAA16041@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/lib In directory weyr:/home/fdrake/projects/python/Doc/lib Modified Files: libwinsound.tex Log Message: Documented Beep() function. From guido@cnri.reston.va.us Tue Oct 26 01:12:21 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 25 Oct 1999 20:12:21 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Python ceval.c Message-ID: <199910260012.UAA01816@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Python In directory eric:/projects/python/develop/guido/src/Python Modified Files: ceval.c Log Message: Fix PR117. The error message is "keywords must be strings". Perhaps not as descriptive as what Barry suggests, but this also catches the (in my opinion important) case where some other C code besides apply() constructs a kwdict that doesn't have the right format. All the other possibilities of getting it wrong (non-dict, wrong keywords etc) are already caught so this makes sense to check here. From guido@cnri.reston.va.us Tue Oct 26 14:01:36 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Tue, 26 Oct 1999 09:01:36 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Lib BaseHTTPServer.py Message-ID: <199910261301.JAA02364@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory eric:/projects/python/develop/guido/src/Lib Modified Files: BaseHTTPServer.py Log Message: Fix by Moshe Zadka (cleaned up and documented by GvR) to break out the request handling into separate parse_request() and handle_request() methods. From guido@cnri.reston.va.us Tue Oct 26 14:09:08 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Tue, 26 Oct 1999 09:09:08 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Lib rlcompleter.py Message-ID: <199910261309.JAA02425@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory eric:/projects/python/develop/guido/src/Lib Modified Files: rlcompleter.py Log Message: Patch by Michael Hudson: when the object of attribute expansion is a class instance, include the class attributes in the list of possible expansions. From guido@cnri.reston.va.us Tue Oct 26 15:02:01 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Tue, 26 Oct 1999 10:02:01 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Lib filecmp.py Message-ID: <199910261402.KAA02725@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory eric:/projects/python/develop/guido/src/Lib Added Files: filecmp.py Log Message: New module by Moshe Zadka (submitted on Sept. 25). This unifies the functionality of cmp.py and cmpcache.py, which are hereby declared obsolescent. From fdrake@weyr.cnri.reston.va.us Tue Oct 26 17:27:29 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 26 Oct 1999 12:27:29 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libundoc.tex Message-ID: <199910261627.MAA02597@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/lib In directory weyr:/home/fdrake/projects/python/Doc/lib Modified Files: libundoc.tex Log Message: Added cmp and cmpcache to the "Obsolete" section. From fdrake@weyr.cnri.reston.va.us Tue Oct 26 17:28:05 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 26 Oct 1999 12:28:05 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib lib.tex Message-ID: <199910261628.MAA02620@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/lib In directory weyr:/home/fdrake/projects/python/Doc/lib Modified Files: lib.tex Log Message: cmp and cmpcache are now obsolete, so don't include their documentation sections. From fdrake@weyr.cnri.reston.va.us Tue Oct 26 17:31:52 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 26 Oct 1999 12:31:52 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libcmp.tex libcmpcache.tex Message-ID: <199910261631.MAA02743@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/lib In directory weyr:/home/fdrake/projects/python/Doc/lib Modified Files: libcmp.tex libcmpcache.tex Log Message: Added deprecation notes, in case anyone decides to read these anyway. From fdrake@weyr.cnri.reston.va.us Thu Oct 28 17:32:26 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 28 Oct 1999 12:32:26 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libstdtypes.tex Message-ID: <199910281632.MAA08642@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/lib In directory weyr:/home/fdrake/projects/python/Doc-152p1/lib Modified Files: Tag: release152p1-patches libstdtypes.tex Log Message: Make a couple of references to other sections hyperlinks. From fdrake@weyr.cnri.reston.va.us Thu Oct 28 19:16:46 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 28 Oct 1999 14:16:46 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/perl SynopsisTable.pm Message-ID: <199910281816.OAA10632@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/perl In directory weyr:/home/fdrake/projects/python/Doc-152p1/perl Modified Files: Tag: release152p1-patches SynopsisTable.pm Log Message: Make the generated HTML a little more XHTML friendly. From fdrake@weyr.cnri.reston.va.us Thu Oct 28 19:17:14 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 28 Oct 1999 14:17:14 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/perl l2hinit.perl Message-ID: <199910281817.OAA10650@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/perl In directory weyr:/home/fdrake/projects/python/Doc-152p1/perl Modified Files: Tag: release152p1-patches l2hinit.perl Log Message: Make the generated HTML a little more XHTML friendly. From fdrake@weyr.cnri.reston.va.us Thu Oct 28 19:23:24 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 28 Oct 1999 14:23:24 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/perl ltxmarkup.perl Message-ID: <199910281823.OAA10735@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/perl In directory weyr:/home/fdrake/projects/python/Doc-152p1/perl Modified Files: Tag: release152p1-patches ltxmarkup.perl Log Message: Make the generated HTML a little more XHTML friendly. From fdrake@weyr.cnri.reston.va.us Thu Oct 28 19:25:46 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 28 Oct 1999 14:25:46 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/perl python.perl Message-ID: <199910281825.OAA10759@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/perl In directory weyr:/home/fdrake/projects/python/Doc-152p1/perl Modified Files: Tag: release152p1-patches python.perl Log Message: Make the generated HTML a little more XHTML friendly. Clean up the support for table environments defined in python.sty. Make sure the 'c' column alignment specifier is properly handled for table headers. From fdrake@weyr.cnri.reston.va.us Thu Oct 28 19:44:22 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 28 Oct 1999 14:44:22 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/perl python.perl Message-ID: <199910281844.OAA11274@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/perl In directory weyr:/home/fdrake/projects/python/Doc-152p1/perl Modified Files: Tag: release152p1-patches python.perl Log Message: Remove debugging print. From fdrake@weyr.cnri.reston.va.us Thu Oct 28 20:43:36 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 28 Oct 1999 15:43:36 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libtelnetlib.tex Message-ID: <199910281943.PAA11888@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/lib In directory weyr:/home/fdrake/projects/python/Doc-152p1/lib Modified Files: Tag: release152p1-patches libtelnetlib.tex Log Message: Work around a LaTeX2HTML bug by moving a comment (the bug was exhibited in the *previous* section -- how clever of them!). From fdrake@weyr.cnri.reston.va.us Fri Oct 29 18:23:16 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 29 Oct 1999 13:23:16 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libfilecmp.tex Message-ID: <199910291723.NAA11530@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/lib In directory weyr:/home/fdrake/projects/python/Doc/lib Added Files: libfilecmp.tex Log Message: filecmp documentation from Moshe Zadka . From fdrake@weyr.cnri.reston.va.us Fri Oct 29 18:24:13 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 29 Oct 1999 13:24:13 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib lib.tex Message-ID: <199910291724.NAA11554@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/lib In directory weyr:/home/fdrake/projects/python/Doc/lib Modified Files: lib.tex Log Message: Added section for filecmp. From fdrake@weyr.cnri.reston.va.us Fri Oct 29 18:26:00 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 29 Oct 1999 13:26:00 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libundoc.tex Message-ID: <199910291726.NAA11579@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/lib In directory weyr:/home/fdrake/projects/python/Doc/lib Modified Files: libundoc.tex Log Message: Make references to new filecmp module hyperlinks now that there's documentation. From fdrake@weyr.cnri.reston.va.us Fri Oct 29 18:27:09 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 29 Oct 1999 13:27:09 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc Makefile.deps Message-ID: <199910291727.NAA11597@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc In directory weyr:/home/fdrake/projects/python/Doc Modified Files: Makefile.deps Log Message: Added dependency on filecmp section, removed dependencies on cmp and cmpcache sections. From fdrake@weyr.cnri.reston.va.us Fri Oct 29 18:51:30 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 29 Oct 1999 13:51:30 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libdircache.tex Message-ID: <199910291751.NAA11942@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/lib In directory weyr:/home/fdrake/projects/python/Doc/lib Modified Files: libdircache.tex Log Message: pathes --> paths; typo reported by Gerry Wiener . From fdrake@weyr.cnri.reston.va.us Fri Oct 29 21:51:44 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 29 Oct 1999 16:51:44 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/tools mkhtml.sh Message-ID: <199910292051.QAA16724@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/tools In directory weyr:/home/fdrake/projects/python/Doc/tools Modified Files: mkhtml.sh Log Message: Change the suggestions pointer at the bottom of generated HTML pages. From fdrake@weyr.cnri.reston.va.us Fri Oct 29 21:51:45 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 29 Oct 1999 16:51:45 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/html Makefile Message-ID: <199910292051.QAA16736@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/html In directory weyr:/home/fdrake/projects/python/Doc/html Modified Files: Makefile Log Message: Change the suggestions pointer at the bottom of generated HTML pages. From fdrake@weyr.cnri.reston.va.us Fri Oct 29 21:49:23 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 29 Oct 1999 16:49:23 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc Makefile.deps Message-ID: <199910292049.QAA16319@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc In directory weyr:/home/fdrake/projects/python/Doc Modified Files: Makefile.deps Log Message: Straighten out dependencies so changes in the texinputs/* get reflected. From fdrake@weyr.cnri.reston.va.us Fri Oct 29 21:49:24 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 29 Oct 1999 16:49:24 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/paper-letter Makefile Message-ID: <199910292049.QAA16344@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/paper-letter In directory weyr:/home/fdrake/projects/python/Doc/paper-letter Modified Files: Makefile Log Message: Straighten out dependencies so changes in the texinputs/* get reflected. From guido@cnri.reston.va.us Fri Oct 1 15:29:17 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Fri, 1 Oct 1999 10:29:17 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/PC winsound.c Message-ID: <199910011429.KAA13501@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/PC In directory eric:/projects/python/develop/guido/src/PC Modified Files: winsound.c Log Message: Mark Hammond writes: Attached is a context diff to winsound.c that adds a Beep() function to play a sound through the PC speaker. Seems to make sense to have this added, so I just went and did it! From fdrake@weyr.cnri.reston.va.us Mon Oct 4 19:11:56 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 4 Oct 1999 14:11:56 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Lib ConfigParser.py Message-ID: <199910041811.OAA28949@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory weyr:/home/fdrake/projects/python/Lib Modified Files: ConfigParser.py Log Message: ConfigParser.read(): Don't mask IOError exceptions. From guido@cnri.reston.va.us Mon Oct 4 19:57:28 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 4 Oct 1999 14:57:28 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Lib ConfigParser.py Message-ID: <199910041857.OAA18769@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory eric:/projects/python/develop/guido/src/Lib Modified Files: ConfigParser.py Log Message: Urmpfh! Withdraw the change that Fred just checked in -- it was a poorly documented feature, not a bug, to ignore I/O errors in read(). The new docstring explains the reason for the feature: """ this is designed so that you can specifiy a list of potential configuration file locations (e.g. current directory, user's home directory, systemwide directory), and all existing configuration files in the list will be read. """ Also add a lower-level function, readfp(), which takes an open file object (and optionally a filename). XXX There are some other problems with this module, but I don't have time to dig into these; in particular, there are complaints that the %(name)s substitution from the [DEFAULTS] section doesn't work correctly. From guido@cnri.reston.va.us Mon Oct 4 20:58:23 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 4 Oct 1999 15:58:23 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Lib ConfigParser.py Message-ID: <199910041958.PAA19065@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory eric:/projects/python/develop/guido/src/Lib Modified Files: ConfigParser.py Log Message: Added has_option(); fix bug in get() which botched interpolation if '%(' was found in first position (found by Fred Drake). From guido@cnri.reston.va.us Tue Oct 5 22:59:34 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Tue, 5 Oct 1999 17:59:34 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src configure configure.in Message-ID: <199910052159.RAA05627@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src In directory eric:/projects/python/develop/guido/src Modified Files: configure configure.in Log Message: Dynamic linking support for BSD/OS 4.x as suggested by Vivek Khera From guido@cnri.reston.va.us Tue Oct 5 23:16:08 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Tue, 5 Oct 1999 18:16:08 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Demo/pysvr pysvr.c Message-ID: <199910052216.SAA05817@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Demo/pysvr In directory eric:/projects/python/develop/guido/src/Demo/pysvr Modified Files: pysvr.c Log Message: Add -v flag. Comment duplicate Py_Finalize(). From guido@cnri.reston.va.us Tue Oct 5 23:17:42 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Tue, 5 Oct 1999 18:17:42 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Python sysmodule.c Message-ID: <199910052217.SAA07270@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Python In directory eric:/projects/python/develop/guido/src/Python Modified Files: sysmodule.c Log Message: In PySys_GetObject(), it's possible that tstate->interp->sysdict is NULL. In that case, return NULL rather than dumping core. This fixes PR#91, submitted by Lele Gaifax. From guido@cnri.reston.va.us Wed Oct 6 16:19:20 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Wed, 6 Oct 1999 11:19:20 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Lib rfc822.py Message-ID: <199910061519.LAA08886@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory eric:/projects/python/develop/guido/src/Lib Modified Files: rfc822.py Log Message: Fix PR#3, submitted by Skip Montanaro: if no space appears after the colon, the first character of the value is lost. From bwarsaw@cnri.reston.va.us Thu Oct 7 21:00:02 1999 From: bwarsaw@cnri.reston.va.us (Barry A. Warsaw) Date: Thu, 7 Oct 1999 16:00:02 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Tools/audiopy audiopy Message-ID: <199910072000.QAA02675@anthem.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Tools/audiopy In directory anthem:/projects/python/develop/bwarsaw/python/dist/src/Tools/audiopy Modified Files: audiopy Log Message: main(): Arg! I wasn't properly ignoring EINVAL; now only re-raise the exception if code <> errno.EINVAL. Jeremy this should fix your problem. From guido@cnri.reston.va.us Sun Oct 10 22:14:26 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Sun, 10 Oct 1999 17:14:26 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Lib pickle.py Message-ID: <199910102114.RAA12361@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory eric:/projects/python/develop/guido/src/Lib Modified Files: pickle.py Log Message: Jeremy writes: I found the following patch helpful in tracking down a bug in some code. I had appended time, the module, instead of time.time(). Not sure if it is generally true that printing the repr of the object is good, but I expect that most unpicklable things will have fairly information and concise reprs (like files or sockets or modules). From guido@cnri.reston.va.us Mon Oct 11 15:03:13 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 11 Oct 1999 10:03:13 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Objects classobject.c Message-ID: <199910111403.KAA12759@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Objects In directory eric:/projects/python/develop/guido/src/Objects Modified Files: classobject.c Log Message: Fix for PR#98 (Adrian Eyre) -- in instancemethod_repr, the funcname object is DECREFed too early. From guido@cnri.reston.va.us Mon Oct 11 23:15:42 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 11 Oct 1999 18:15:42 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Lib string.py Message-ID: <199910112215.SAA14477@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory eric:/projects/python/develop/guido/src/Lib Modified Files: string.py Log Message: Fix PR#31 -- zfill() mishandles empty string. From guido@cnri.reston.va.us Mon Oct 11 23:34:41 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 11 Oct 1999 18:34:41 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Objects longobject.c Message-ID: <199910112234.SAA14632@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Objects In directory eric:/projects/python/develop/guido/src/Objects Modified Files: longobject.c Log Message: Fix PR#66. Solution: add error checking around l_divmod() calls in long_pow(). From bwarsaw@cnri.reston.va.us Tue Oct 12 17:12:49 1999 From: bwarsaw@cnri.reston.va.us (Barry A. Warsaw) Date: Tue, 12 Oct 1999 12:12:49 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Lib ConfigParser.py Message-ID: <199910121612.MAA09711@anthem.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory anthem:/projects/python/develop/bwarsaw/python/dist/src/Lib Modified Files: ConfigParser.py Log Message: fixed a typo in a docstring, and slightly expanded the module docstring info for readfp(). From jhylton@cnri.reston.va.us Tue Oct 12 17:20:14 1999 From: jhylton@cnri.reston.va.us (Jeremy Hylton) Date: Tue, 12 Oct 1999 12:20:14 -0400 (EDT) Subject: [Python-checkins] CVS: /python/dist/src/Lib SocketServer.py Message-ID: <199910121620.MAA18959@bitdiddle.cnri.reston.va.us> Update of /projects/cvsroot//python/dist/src/Lib In directory bitdiddle:/local/home/jhylton/local/python/src/Lib Modified Files: SocketServer.py Log Message: update to use threading module instead of thread. From fdrake@weyr.cnri.reston.va.us Tue Oct 12 19:42:06 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 12 Oct 1999 14:42:06 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/api api.tex Message-ID: <199910121842.OAA09201@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/api In directory weyr:/home/fdrake/projects/python/Doc-152p1/api Modified Files: Tag: release152p1-patches api.tex Log Message: Patch from Paul Dubois pointing out that the dictionary reference returned from PyModule_GetDict() is borrowed. Made a couple of other details about PyModule_Get*() functions explicit. From bwarsaw@cnri.reston.va.us Tue Oct 12 20:54:35 1999 From: bwarsaw@cnri.reston.va.us (Barry A. Warsaw) Date: Tue, 12 Oct 1999 15:54:35 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Include floatobject.h intobject.h Message-ID: <199910121954.PAA26172@anthem.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Include In directory anthem:/tmp/python/src/Include Modified Files: floatobject.h intobject.h Log Message: Mainlining the string_methods branch. See branch revision log messages for specific changes. From bwarsaw@cnri.reston.va.us Tue Oct 12 20:54:41 1999 From: bwarsaw@cnri.reston.va.us (Barry A. Warsaw) Date: Tue, 12 Oct 1999 15:54:41 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Lib string.py stringold.py Message-ID: <199910121954.PAA26187@anthem.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory anthem:/tmp/python/src/Lib Modified Files: string.py stringold.py Log Message: Mainlining the string_methods branch. See branch revision log messages for specific changes. From bwarsaw@cnri.reston.va.us Tue Oct 12 20:54:55 1999 From: bwarsaw@cnri.reston.va.us (Barry A. Warsaw) Date: Tue, 12 Oct 1999 15:54:55 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Python bltinmodule.c Message-ID: <199910121954.PAA26218@anthem.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Python In directory anthem:/tmp/python/src/Python Modified Files: bltinmodule.c Log Message: Mainlining the string_methods branch. See branch revision log messages for specific changes. From bwarsaw@cnri.reston.va.us Tue Oct 12 20:54:49 1999 From: bwarsaw@cnri.reston.va.us (Barry A. Warsaw) Date: Tue, 12 Oct 1999 15:54:49 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Objects abstract.c floatobject.c intobject.c stringobject.c Message-ID: <199910121954.PAA26204@anthem.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Objects In directory anthem:/tmp/python/src/Objects Modified Files: abstract.c floatobject.c intobject.c stringobject.c Log Message: Mainlining the string_methods branch. See branch revision log messages for specific changes. From fdrake@weyr.cnri.reston.va.us Wed Oct 13 23:14:52 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 13 Oct 1999 18:14:52 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib liblinecache.tex Message-ID: <199910132214.SAA11472@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/lib In directory weyr:/home/fdrake/projects/python/Doc-152p1/lib Modified Files: Tag: release152p1-patches liblinecache.tex Log Message: Fix up grammar in clearcache() description, based on comment from Robert Kern. In getline() description, point out that the trailing newline is included with the line. From fdrake@weyr.cnri.reston.va.us Sat Oct 16 03:07:52 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 15 Oct 1999 22:07:52 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Lib CGIHTTPServer.py Message-ID: <199910160207.WAA26545@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory weyr:/home/fdrake/projects/python/Lib Modified Files: CGIHTTPServer.py Log Message: Based on comments from Paul Prescod: If os.fork() doesn't exist, raise SystemError with an explanation at the top of the module. Added a note to the module docstring. From fdrake@weyr.cnri.reston.va.us Mon Oct 18 14:43:45 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 18 Oct 1999 09:43:45 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Lib CGIHTTPServer.py Message-ID: <199910181343.JAA28515@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory weyr:/home/fdrake/projects/python/Lib Modified Files: CGIHTTPServer.py Log Message: os.fork raises AttributeError, not NameError, if fork() isn't supported. Pointed out by Moshe Zadka . From fdrake@weyr.cnri.reston.va.us Mon Oct 18 15:10:07 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 18 Oct 1999 10:10:07 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libposixpath.tex Message-ID: <199910181410.KAA28732@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/lib In directory weyr:/home/fdrake/projects/python/Doc/lib Modified Files: libposixpath.tex Log Message: Fixed typo in explanation of abspath(); noticed by Paul Prescod . From fdrake@weyr.cnri.reston.va.us Mon Oct 18 15:10:38 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 18 Oct 1999 10:10:38 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libposixpath.tex Message-ID: <199910181410.KAA28751@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/lib In directory weyr:/home/fdrake/projects/python/Doc-152p1/lib Modified Files: Tag: release152p1-patches libposixpath.tex Log Message: Fixed typo in explanation of abspath(); noticed by Paul Prescod . From guido@cnri.reston.va.us Mon Oct 18 22:41:44 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 18 Oct 1999 17:41:44 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Lib fileinput.py Message-ID: <199910182141.RAA23595@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory eric:/projects/python/develop/guido/src/Lib Modified Files: fileinput.py Log Message: Fix for PR#111: when using the inplace option, give the new file the same permissions as the old file, plugging a security hole. (Not using exactly the suggested bugfix.) From guido@cnri.reston.va.us Mon Oct 18 23:06:39 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 18 Oct 1999 18:06:39 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Lib/lib-tk Tkinter.py Message-ID: <199910182206.SAA23729@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib/lib-tk In directory eric:/projects/python/develop/guido/src/Lib/lib-tk Modified Files: Tkinter.py Log Message: Fixed PR#106: winfo_visualsavailable() with the includeids=1 option didn't properly handle the hex numbers returned. From jhylton@cnri.reston.va.us Mon Oct 18 23:25:23 1999 From: jhylton@cnri.reston.va.us (Jeremy Hylton) Date: Mon, 18 Oct 1999 18:25:23 -0400 (EDT) Subject: [Python-checkins] CVS: /python/dist/src/Lib getpass.py Message-ID: <199910182225.SAA20769@bitdiddle.cnri.reston.va.us> Update of /projects/cvsroot//python/dist/src/Lib In directory bitdiddle:/local/home/jhylton/local/python/src/Lib Modified Files: getpass.py Log Message: print a warning if the password will be echoed. At import time, getpass will be bound to the appropriate platform-specific function. If the platform's echo-disabler is not available, default_getpass, which prints the warning, will be used From guido@cnri.reston.va.us Tue Oct 19 05:47:14 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Tue, 19 Oct 1999 00:47:14 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Modules binascii.c Message-ID: <199910190447.AAA24788@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Modules In directory eric:/projects/python/develop/guido/src/Modules Modified Files: binascii.c Log Message: Fix PR#110 -- bad input ("====") for a2b_base64() caused it to call _PyString_Resize() with a negative size. From guido@cnri.reston.va.us Tue Oct 19 14:29:24 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Tue, 19 Oct 1999 09:29:24 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Modules posixmodule.c Message-ID: <199910191329.JAA25342@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Modules In directory eric:/projects/python/develop/guido/src/Modules Modified Files: posixmodule.c Log Message: John DuBois tells us that SCO OpenServer 5.0 and later requires _SVID3 before it reveals the needed definitions in sys/statvfs.h. From guido@cnri.reston.va.us Tue Oct 19 18:48:55 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Tue, 19 Oct 1999 13:48:55 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Lib/test test_binhex.py Message-ID: <199910191748.NAA26280@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib/test In directory eric:/projects/python/develop/guido/src/Lib/test Modified Files: test_binhex.py Log Message: This test really only tests the binhex module. Renamed it and adapted a comment and an error message. From guido@cnri.reston.va.us Tue Oct 19 20:05:15 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Tue, 19 Oct 1999 15:05:15 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Modules binascii.c Message-ID: <199910191905.PAA26638@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Modules In directory eric:/projects/python/develop/guido/src/Modules Modified Files: binascii.c Log Message: Patch by Jason Trowbridge. (Followup to his PR#110.) (Slightly reformatted.) - Illegal padding is now ignored. (Recommendation by GvR.) - Padding no longer removes characters from data string (resulting in lost data/strings with negative lengths). - Illegal characters outside the ASCII range are now ignored, instead of possibly being remapped to a valid character. From guido@cnri.reston.va.us Tue Oct 19 20:07:33 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Tue, 19 Oct 1999 15:07:33 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Lib/test/output test_binhex Message-ID: <199910191907.PAA26849@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib/test/output In directory eric:/projects/python/develop/guido/src/Lib/test/output Added Files: test_binhex Log Message: Test output for test_binhex.py. From guido@cnri.reston.va.us Tue Oct 19 20:08:13 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Tue, 19 Oct 1999 15:08:13 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Lib/test test_binascii.py Message-ID: <199910191908.PAA26867@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib/test In directory eric:/projects/python/develop/guido/src/Lib/test Modified Files: test_binascii.py Log Message: Rewritten -- this now tests the binascii *except* for the binhex module, which is tested by test_binhex.py. From guido@cnri.reston.va.us Tue Oct 19 20:09:01 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Tue, 19 Oct 1999 15:09:01 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Lib/test/output test_binascii Message-ID: <199910191909.PAA26885@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib/test/output In directory eric:/projects/python/develop/guido/src/Lib/test/output Modified Files: test_binascii Log Message: Test output. (XXX perhaps a bit too verbose; in particular it is sensitive to all the doc strings.) From guido@cnri.reston.va.us Wed Oct 20 13:29:57 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Wed, 20 Oct 1999 08:29:57 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Lib/lib-tk Tkinter.py Message-ID: <199910201229.IAA27826@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib/lib-tk In directory eric:/projects/python/develop/guido/src/Lib/lib-tk Modified Files: Tkinter.py Log Message: Fix PR#107: wm_colormapwindows() did the wrong thing when presented more than one window argument. From fdrake@weyr.cnri.reston.va.us Wed Oct 20 16:06:25 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 20 Oct 1999 11:06:25 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/api refcounts.dat Message-ID: <199910201506.LAA06895@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/api In directory weyr:/home/fdrake/projects/python/Doc/api Added Files: refcounts.dat Log Message: Initial version as provided by Skip Montanaro . From fdrake@weyr.cnri.reston.va.us Wed Oct 20 17:03:38 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 20 Oct 1999 12:03:38 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/api refcounts.dat Message-ID: <199910201603.MAA11419@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/api In directory weyr:/home/fdrake/projects/python/Doc/api Modified Files: refcounts.dat Log Message: Added note that Skip created the initial version of this file. Fixed up a few of his ??? comments. From fdrake@weyr.cnri.reston.va.us Wed Oct 20 22:50:32 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 20 Oct 1999 17:50:32 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/tools refcounts.py Message-ID: <199910202150.RAA27464@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/tools In directory weyr:/home/fdrake/projects/python/Doc/tools Added Files: refcounts.py Log Message: Module/script to parse the reference count data file and make the information accessible to Python. When run as a script, just dumps the information back out in the data format, with functions in sorted order and a blank line between different functions. Still need to apply the information somehow. From guido@cnri.reston.va.us Fri Oct 22 14:09:21 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Fri, 22 Oct 1999 09:09:21 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Lib smtplib.py Message-ID: <199910221309.JAA00500@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory eric:/projects/python/develop/guido/src/Lib Modified Files: smtplib.py Log Message: In helo() and ehlo(), Don't fail when gethostbyaddr() fails -- just keep whatever gethostname() returns. After a suggestion by Doug Wyatt. From fdrake@weyr.cnri.reston.va.us Fri Oct 22 14:59:31 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 22 Oct 1999 09:59:31 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libstatvfs.tex Message-ID: <199910221359.JAA08044@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/lib In directory weyr:/home/fdrake/projects/python/Doc-152p1/lib Modified Files: Tag: release152p1-patches libstatvfs.tex Log Message: Added description for F_BLOCKS (omission noted by Andreas Jung ). From fdrake@weyr.cnri.reston.va.us Fri Oct 22 18:42:53 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 22 Oct 1999 13:42:53 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/tut tut.tex Message-ID: <199910221742.NAA09097@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/tut In directory weyr:/home/fdrake/projects/python/Doc-152p1/tut Modified Files: Tag: release152p1-patches tut.tex Log Message: Lots of small-ish changes, mostly suggested by Stefan Hoffmeister . Many related to small formatting problems from LaTeX2HTML (spaces getting dropped). Others required more clarification or added sentences and examples. Also moved section on __init__() from "Random Remarks" to early in the introduction of classes, since most people want some initialization to occur when instances are created. From fdrake@weyr.cnri.reston.va.us Fri Oct 22 22:08:57 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 22 Oct 1999 17:08:57 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libwinsound.tex Message-ID: <199910222108.RAA16041@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/lib In directory weyr:/home/fdrake/projects/python/Doc/lib Modified Files: libwinsound.tex Log Message: Documented Beep() function. From guido@cnri.reston.va.us Tue Oct 26 01:12:21 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 25 Oct 1999 20:12:21 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Python ceval.c Message-ID: <199910260012.UAA01816@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Python In directory eric:/projects/python/develop/guido/src/Python Modified Files: ceval.c Log Message: Fix PR117. The error message is "keywords must be strings". Perhaps not as descriptive as what Barry suggests, but this also catches the (in my opinion important) case where some other C code besides apply() constructs a kwdict that doesn't have the right format. All the other possibilities of getting it wrong (non-dict, wrong keywords etc) are already caught so this makes sense to check here. From guido@cnri.reston.va.us Tue Oct 26 14:01:36 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Tue, 26 Oct 1999 09:01:36 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Lib BaseHTTPServer.py Message-ID: <199910261301.JAA02364@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory eric:/projects/python/develop/guido/src/Lib Modified Files: BaseHTTPServer.py Log Message: Fix by Moshe Zadka (cleaned up and documented by GvR) to break out the request handling into separate parse_request() and handle_request() methods. From guido@cnri.reston.va.us Tue Oct 26 14:09:08 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Tue, 26 Oct 1999 09:09:08 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Lib rlcompleter.py Message-ID: <199910261309.JAA02425@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory eric:/projects/python/develop/guido/src/Lib Modified Files: rlcompleter.py Log Message: Patch by Michael Hudson: when the object of attribute expansion is a class instance, include the class attributes in the list of possible expansions. From guido@cnri.reston.va.us Tue Oct 26 15:02:01 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Tue, 26 Oct 1999 10:02:01 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Lib filecmp.py Message-ID: <199910261402.KAA02725@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory eric:/projects/python/develop/guido/src/Lib Added Files: filecmp.py Log Message: New module by Moshe Zadka (submitted on Sept. 25). This unifies the functionality of cmp.py and cmpcache.py, which are hereby declared obsolescent. From fdrake@weyr.cnri.reston.va.us Tue Oct 26 17:27:29 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 26 Oct 1999 12:27:29 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libundoc.tex Message-ID: <199910261627.MAA02597@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/lib In directory weyr:/home/fdrake/projects/python/Doc/lib Modified Files: libundoc.tex Log Message: Added cmp and cmpcache to the "Obsolete" section. From fdrake@weyr.cnri.reston.va.us Tue Oct 26 17:28:05 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 26 Oct 1999 12:28:05 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib lib.tex Message-ID: <199910261628.MAA02620@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/lib In directory weyr:/home/fdrake/projects/python/Doc/lib Modified Files: lib.tex Log Message: cmp and cmpcache are now obsolete, so don't include their documentation sections. From fdrake@weyr.cnri.reston.va.us Tue Oct 26 17:31:52 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 26 Oct 1999 12:31:52 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libcmp.tex libcmpcache.tex Message-ID: <199910261631.MAA02743@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/lib In directory weyr:/home/fdrake/projects/python/Doc/lib Modified Files: libcmp.tex libcmpcache.tex Log Message: Added deprecation notes, in case anyone decides to read these anyway. From fdrake@weyr.cnri.reston.va.us Thu Oct 28 17:32:26 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 28 Oct 1999 12:32:26 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libstdtypes.tex Message-ID: <199910281632.MAA08642@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/lib In directory weyr:/home/fdrake/projects/python/Doc-152p1/lib Modified Files: Tag: release152p1-patches libstdtypes.tex Log Message: Make a couple of references to other sections hyperlinks. From fdrake@weyr.cnri.reston.va.us Thu Oct 28 19:16:46 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 28 Oct 1999 14:16:46 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/perl SynopsisTable.pm Message-ID: <199910281816.OAA10632@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/perl In directory weyr:/home/fdrake/projects/python/Doc-152p1/perl Modified Files: Tag: release152p1-patches SynopsisTable.pm Log Message: Make the generated HTML a little more XHTML friendly. From fdrake@weyr.cnri.reston.va.us Thu Oct 28 19:17:14 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 28 Oct 1999 14:17:14 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/perl l2hinit.perl Message-ID: <199910281817.OAA10650@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/perl In directory weyr:/home/fdrake/projects/python/Doc-152p1/perl Modified Files: Tag: release152p1-patches l2hinit.perl Log Message: Make the generated HTML a little more XHTML friendly. From fdrake@weyr.cnri.reston.va.us Thu Oct 28 19:23:24 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 28 Oct 1999 14:23:24 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/perl ltxmarkup.perl Message-ID: <199910281823.OAA10735@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/perl In directory weyr:/home/fdrake/projects/python/Doc-152p1/perl Modified Files: Tag: release152p1-patches ltxmarkup.perl Log Message: Make the generated HTML a little more XHTML friendly. From fdrake@weyr.cnri.reston.va.us Thu Oct 28 19:25:46 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 28 Oct 1999 14:25:46 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/perl python.perl Message-ID: <199910281825.OAA10759@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/perl In directory weyr:/home/fdrake/projects/python/Doc-152p1/perl Modified Files: Tag: release152p1-patches python.perl Log Message: Make the generated HTML a little more XHTML friendly. Clean up the support for table environments defined in python.sty. Make sure the 'c' column alignment specifier is properly handled for table headers. From fdrake@weyr.cnri.reston.va.us Thu Oct 28 19:44:22 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 28 Oct 1999 14:44:22 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/perl python.perl Message-ID: <199910281844.OAA11274@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/perl In directory weyr:/home/fdrake/projects/python/Doc-152p1/perl Modified Files: Tag: release152p1-patches python.perl Log Message: Remove debugging print. From fdrake@weyr.cnri.reston.va.us Thu Oct 28 20:43:36 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 28 Oct 1999 15:43:36 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libtelnetlib.tex Message-ID: <199910281943.PAA11888@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/lib In directory weyr:/home/fdrake/projects/python/Doc-152p1/lib Modified Files: Tag: release152p1-patches libtelnetlib.tex Log Message: Work around a LaTeX2HTML bug by moving a comment (the bug was exhibited in the *previous* section -- how clever of them!). From fdrake@weyr.cnri.reston.va.us Fri Oct 29 18:23:16 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 29 Oct 1999 13:23:16 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libfilecmp.tex Message-ID: <199910291723.NAA11530@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/lib In directory weyr:/home/fdrake/projects/python/Doc/lib Added Files: libfilecmp.tex Log Message: filecmp documentation from Moshe Zadka . From fdrake@weyr.cnri.reston.va.us Fri Oct 29 18:24:13 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 29 Oct 1999 13:24:13 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib lib.tex Message-ID: <199910291724.NAA11554@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/lib In directory weyr:/home/fdrake/projects/python/Doc/lib Modified Files: lib.tex Log Message: Added section for filecmp. From fdrake@weyr.cnri.reston.va.us Fri Oct 29 18:26:00 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 29 Oct 1999 13:26:00 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libundoc.tex Message-ID: <199910291726.NAA11579@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/lib In directory weyr:/home/fdrake/projects/python/Doc/lib Modified Files: libundoc.tex Log Message: Make references to new filecmp module hyperlinks now that there's documentation. From fdrake@weyr.cnri.reston.va.us Fri Oct 29 18:27:09 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 29 Oct 1999 13:27:09 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc Makefile.deps Message-ID: <199910291727.NAA11597@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc In directory weyr:/home/fdrake/projects/python/Doc Modified Files: Makefile.deps Log Message: Added dependency on filecmp section, removed dependencies on cmp and cmpcache sections. From fdrake@weyr.cnri.reston.va.us Fri Oct 29 18:51:30 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 29 Oct 1999 13:51:30 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libdircache.tex Message-ID: <199910291751.NAA11942@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/lib In directory weyr:/home/fdrake/projects/python/Doc/lib Modified Files: libdircache.tex Log Message: pathes --> paths; typo reported by Gerry Wiener . From fdrake@weyr.cnri.reston.va.us Fri Oct 29 21:51:44 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 29 Oct 1999 16:51:44 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/tools mkhtml.sh Message-ID: <199910292051.QAA16724@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/tools In directory weyr:/home/fdrake/projects/python/Doc/tools Modified Files: mkhtml.sh Log Message: Change the suggestions pointer at the bottom of generated HTML pages. From fdrake@weyr.cnri.reston.va.us Fri Oct 29 21:51:45 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 29 Oct 1999 16:51:45 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/html Makefile Message-ID: <199910292051.QAA16736@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/html In directory weyr:/home/fdrake/projects/python/Doc/html Modified Files: Makefile Log Message: Change the suggestions pointer at the bottom of generated HTML pages. From fdrake@weyr.cnri.reston.va.us Fri Oct 29 21:49:23 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 29 Oct 1999 16:49:23 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc Makefile.deps Message-ID: <199910292049.QAA16319@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc In directory weyr:/home/fdrake/projects/python/Doc Modified Files: Makefile.deps Log Message: Straighten out dependencies so changes in the texinputs/* get reflected. From fdrake@weyr.cnri.reston.va.us Fri Oct 29 21:49:24 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 29 Oct 1999 16:49:24 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/paper-letter Makefile Message-ID: <199910292049.QAA16344@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/paper-letter In directory weyr:/home/fdrake/projects/python/Doc/paper-letter Modified Files: Makefile Log Message: Straighten out dependencies so changes in the texinputs/* get reflected.