From guido@cnri.reston.va.us Mon Feb 1 15:35:16 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 1 Feb 1999 10:35:16 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Lib xmllib.py Message-ID: <199902011535.KAA05146@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory eric:/projects/python/develop/guido/src/Lib Modified Files: xmllib.py Log Message: Patch by Sjoerd Mullender for better compatibility with the version from Python 1.5.1: If after __init__ finishes no new elements variable was created, this patch will search the instance's namespace for all attributes whose name start with start_ or end_ and put their value in a new elements instance variable. From guido@cnri.reston.va.us Mon Feb 1 16:15:32 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 1 Feb 1999 11:15:32 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Modules posixmodule.c Message-ID: <199902011615.LAA05337@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: Oops, the patch for NeXT always replaced waitpid() with wait4() -- this doesn't exist everywhere, so go back to using #ifdef NeXT. From fdrake@weyr.cnri.reston.va.us Mon Feb 1 16:17:42 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 1 Feb 1999 11:17:42 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libexcs.tex Message-ID: <199902011617.LAA20608@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: libexcs.tex Log Message: OSError description: "as the by the" --> "as the" From bwarsaw@cnri.reston.va.us Mon Feb 1 17:09:02 1999 From: bwarsaw@cnri.reston.va.us (Barry A. Warsaw) Date: Mon, 1 Feb 1999 12:09:02 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Modules pcremodule.c Message-ID: <199902011709.MAA07002@anthem.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Modules In directory anthem:/projects/python/develop/bwarsaw/pristine/Modules Modified Files: pcremodule.c Log Message: PyPcre_expand(): Fixed two memory leaks, where a PyString_FromString() was appended to a list. Lists are reference count neutral, so the string must be DECREF'd. Also added some checks for the return value of PyList_Append(). Note: there are still some memory problems reported by Purify (I get two Array Bounds Reads still and an Unitialized Memory Read). Also, in scanning the code, there appears to be some potential problems where return values aren't checked. To much to attack now though. From guido@cnri.reston.va.us Mon Feb 1 19:34:55 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 1 Feb 1999 14:34:55 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Tools/idle StackViewer.py Message-ID: <199902011934.OAA05913@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Tools/idle In directory eric:/projects/python/develop/guido/src/Tools/idle Modified Files: StackViewer.py Log Message: Protect against accessing an empty stack. From guido@cnri.reston.va.us Mon Feb 1 19:35:34 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 1 Feb 1999 14:35:34 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Tools/idle Debugger.py Message-ID: <199902011935.OAA05935@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Tools/idle In directory eric:/projects/python/develop/guido/src/Tools/idle Modified Files: Debugger.py Log Message: Add canonic() function -- for brand new bdb.py feature. From fdrake@weyr.cnri.reston.va.us Mon Feb 1 20:19:39 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 1 Feb 1999 15:19:39 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/mac libmac.tex Message-ID: <199902012019.PAA23823@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/mac In directory weyr:/home/fdrake/projects/python/Doc/mac Modified Files: libmac.tex Log Message: Remove all references to posixpath; only refer to os.path. Formalize the xstat() documentation. From fdrake@weyr.cnri.reston.va.us Mon Feb 1 20:20:40 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 1 Feb 1999 15:20:40 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libposixpath.tex Message-ID: <199902012020.PAA23847@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: Make the text generic, and call it os.path instead of posixpath. From fdrake@weyr.cnri.reston.va.us Mon Feb 1 20:23:03 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 1 Feb 1999 15:23:03 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libposix.tex Message-ID: <199902012023.PAA23874@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: libposix.tex Log Message: Take out just about everything and refer the reader to the os module. From fdrake@weyr.cnri.reston.va.us Mon Feb 1 21:28:00 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 1 Feb 1999 16:28:00 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libshutil.tex Message-ID: <199902012128.QAA25006@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: libshutil.tex Log Message: Added module synopsis. From fdrake@weyr.cnri.reston.va.us Mon Feb 1 22:24:42 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 1 Feb 1999 17:24:42 -0500 Subject: [Python-checkins] CVS: python/dist/src/Modules posixmodule.c Message-ID: <199902012224.RAA25975@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Modules In directory weyr:/home/fdrake/projects/python/Modules Modified Files: posixmodule.c Log Message: spawnv, spawnve docstrings: added mode parameter; this is required! From guido@cnri.reston.va.us Mon Feb 1 23:06:19 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 1 Feb 1999 18:06:19 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Tools/idle PyShell.py Message-ID: <199902012306.SAA06353@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Tools/idle In directory eric:/projects/python/develop/guido/src/Tools/idle Modified Files: PyShell.py Log Message: Add current dir or paths of file args to sys.path. From guido@cnri.reston.va.us Mon Feb 1 23:52:33 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 1 Feb 1999 18:52:33 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Lib os.py Message-ID: <199902012352.SAA06512@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory eric:/projects/python/develop/guido/src/Lib Modified Files: os.py Log Message: Special-case _P_WAIT etc. for NT. From guido@cnri.reston.va.us Mon Feb 1 23:54:34 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 1 Feb 1999 18:54:34 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Modules posixmodule.c Message-ID: <199902012354.SAA06539@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: Add _P_WAIT etc. for NT. From guido@cnri.reston.va.us Tue Feb 2 15:14:41 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Tue, 2 Feb 1999 10:14:41 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Modules winsound.c Message-ID: <199902021514.KAA07446@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Modules In directory eric:/projects/python/develop/guido/src/Modules Added Files: winsound.c Log Message: Windows sound playing module, by Fredrik Lundh. From fdrake@weyr.cnri.reston.va.us Tue Feb 2 16:37:15 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 2 Feb 1999 11:37:15 -0500 Subject: [Python-checkins] CVS: python/dist/src/Modules posixmodule.c Message-ID: <199902021637.LAA27528@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Modules In directory weyr:/home/fdrake/projects/python/Modules Modified Files: posixmodule.c Log Message: Added documentation to the docstrings for the W*() functions that take a process exit status as a parameter. From guido@cnri.reston.va.us Tue Feb 2 17:54:40 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Tue, 2 Feb 1999 12:54:40 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Lib xmllib.py Message-ID: <199902021754.MAA07936@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory eric:/projects/python/develop/guido/src/Lib Modified Files: xmllib.py Log Message: Patch by Sjoerd Mullender to placate /F: Fix leaking of instances by removing the elements variable that we created on closing the parser. The elements variable is now created in the reset() method, so that the sequence close(); reset(); ... works. Also, add the name of the entity reference that wasn't found to the error message. From guido@cnri.reston.va.us Tue Feb 2 17:55:13 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Tue, 2 Feb 1999 12:55:13 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libxmllib.tex Message-ID: <199902021755.MAA07956@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/lib In directory eric:/projects/python/develop/guido/Doc/lib Modified Files: libxmllib.tex Log Message: Patch by Sjoerd Mullender to placate /F: Clarified (hopefully :-) the documentation of elements and attributes variables. From fdrake@weyr.cnri.reston.va.us Tue Feb 2 18:00:43 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 2 Feb 1999 13:00:43 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libexcs.tex Message-ID: <199902021800.NAA28716@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: libexcs.tex Log Message: Move \versionadded macros to end of descriptions. From fdrake@weyr.cnri.reston.va.us Tue Feb 2 18:01:47 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 2 Feb 1999 13:01:47 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/perl python.perl Message-ID: <199902021801.NAA28858@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/perl In directory weyr:/home/fdrake/projects/python/Doc/perl Modified Files: python.perl Log Message: Make \versionadded and \versionchanged less prominant -- neither bold nor a separate paragraph. From fdrake@weyr.cnri.reston.va.us Tue Feb 2 18:02:49 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 2 Feb 1999 13:02:49 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/texinputs python.sty Message-ID: <199902021802.NAA28910@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/texinputs In directory weyr:/home/fdrake/projects/python/Doc/texinputs Modified Files: python.sty Log Message: Make \versionadded and \versionchanged less prominant -- neither bold nor a separate paragraph. From fdrake@weyr.cnri.reston.va.us Tue Feb 2 18:57:13 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 2 Feb 1999 13:57:13 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/tools node2label.pl Message-ID: <199902021857.NAA29827@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: node2label.pl Log Message: This seems to fix a problem with targeting from the indexes. From fdrake@weyr.cnri.reston.va.us Tue Feb 2 18:58:34 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 2 Feb 1999 13:58:34 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libposixpath.tex Message-ID: <199902021858.NAA29852@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: Change this to be os.path. Use consistent parameter naming with the os documentation (paths always named "path" or "path1", "path2"...). From fdrake@weyr.cnri.reston.va.us Tue Feb 2 19:00:00 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 2 Feb 1999 14:00:00 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libundoc.tex Message-ID: <199902021900.NAA29890@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 posixpath, winsound. From fdrake@weyr.cnri.reston.va.us Tue Feb 2 19:00:39 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 2 Feb 1999 14:00:39 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/lib lib.tex Message-ID: <199902021900.OAA29923@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: Moved posixpath to os.path. From fdrake@weyr.cnri.reston.va.us Tue Feb 2 19:01:38 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 2 Feb 1999 14:01:38 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libre.tex Message-ID: <199902021901.OAA29947@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: libre.tex Log Message: Moved \versionadded to end of description sections. From fdrake@weyr.cnri.reston.va.us Tue Feb 2 19:02:36 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 2 Feb 1999 14:02:36 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libos.tex libposix.tex Message-ID: <199902021902.OAA29972@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: libos.tex libposix.tex Log Message: Fix the os/posix documentation issue. From fdrake@weyr.cnri.reston.va.us Tue Feb 2 19:03:10 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 2 Feb 1999 14:03:10 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc TODO Message-ID: <199902021903.OAA29995@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc In directory weyr:/home/fdrake/projects/python/Doc Modified Files: TODO Log Message: Remove three items. From guido@cnri.reston.va.us Tue Feb 2 22:15:25 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Tue, 2 Feb 1999 17:15:25 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Lib xmllib.py Message-ID: <199902022215.RAA08353@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory eric:/projects/python/develop/guido/src/Lib Modified Files: xmllib.py Log Message: Fredrik Lundh fixes Sjoerd's patch... """Sjoerd's version stores unbound methods. that's not good enough ;-) Here's an alternative implementation of fixdict.""" From guido@cnri.reston.va.us Tue Feb 2 23:41:47 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Tue, 2 Feb 1999 18:41:47 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Modules winsound.c Message-ID: <199902022341.SAA08719@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Modules In directory eric:/projects/python/develop/guido/src/Modules Removed Files: winsound.c Log Message: Never mind, this belongs in the PC subdirectory, and besides Toby Dickenson sent me a more functional (if lower level) wrapper around PlaySound. From guido@cnri.reston.va.us Wed Feb 3 16:31:45 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Wed, 3 Feb 1999 11:31:45 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Modules posixmodule.c Message-ID: <199902031631.LAA10001@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: Portability fix for [f]statvfs() return tuple: no longer return the f_fsid field, since it's not a scalar on all systems supporting this call (in particular, it's a tuple of two longs on AIX). Since it's not particularly useful, just nuke it. Adapted the doc strings too. From guido@cnri.reston.va.us Wed Feb 3 16:32:38 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Wed, 3 Feb 1999 11:32:38 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libos.tex Message-ID: <199902031632.LAA10023@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/lib In directory eric:/projects/python/develop/guido/Doc/lib Modified Files: libos.tex Log Message: Portability fix for [f]statvfs() return tuple: no longer return the f_fsid field, since it's not a scalar on all systems supporting this call (in particular, it's a tuple of two longs on AIX). Since it's not particularly useful, just nuke it. Adapted the doc strings too. From guido@cnri.reston.va.us Wed Feb 3 17:20:52 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Wed, 3 Feb 1999 12:20:52 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Lib ntpath.py Message-ID: <199902031720.MAA10184@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory eric:/projects/python/develop/guido/src/Lib Modified Files: ntpath.py Log Message: New splitdrive() that knows about UNC paths (e.g., network paths like \\host\mountpoint\dir\file). By Larry Hastings. Also cleaned up some docstrings. From guido@cnri.reston.va.us Wed Feb 3 17:21:21 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Wed, 3 Feb 1999 12:21:21 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Lib/test test_ntpath.py Message-ID: <199902031721.MAA10204@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib/test In directory eric:/projects/python/develop/guido/src/Lib/test Added Files: test_ntpath.py Log Message: New test for ntpath module From guido@cnri.reston.va.us Wed Feb 3 17:21:23 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Wed, 3 Feb 1999 12:21:23 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Lib/test/output test_ntpath Message-ID: <199902031721.MAA10217@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_ntpath Log Message: New test for ntpath module From fdrake@weyr.cnri.reston.va.us Wed Feb 3 19:24:47 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 3 Feb 1999 14:24:47 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libposixpath.tex Message-ID: <199902031924.OAA06236@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: Document splitdrive(). For all split*(), these split path *into* pairs, not split path *in* pairs. "Into" can be used for transformations, "in" is for containment. From fdrake@weyr.cnri.reston.va.us Wed Feb 3 22:31:32 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 3 Feb 1999 17:31:32 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libposixpath.tex Message-ID: <199902032231.RAA06806@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: Document sameopenfile(), samestat(). From guido@cnri.reston.va.us Thu Feb 4 14:54:08 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Thu, 4 Feb 1999 09:54:08 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Modules cPickle.c Message-ID: <199902041454.JAA11405@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Modules In directory eric:/projects/python/develop/guido/src/Modules Modified Files: cPickle.c Log Message: Jim Fulton: this fixes seg faults with bad pickles like "c". From guido@cnri.reston.va.us Thu Feb 4 22:40:44 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Thu, 4 Feb 1999 17:40:44 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/PC winsound.c config.c Message-ID: <199902042240.RAA12253@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/PC In directory eric:/projects/python/develop/guido/src/PC Modified Files: config.c Added Files: winsound.c Log Message: Add winsound -- by Toby Dickenson with permission. From fdrake@weyr.cnri.reston.va.us Fri Feb 5 18:30:52 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 5 Feb 1999 13:30:52 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/ext ext.tex Message-ID: <199902051830.NAA11201@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/ext In directory weyr:/home/fdrake/projects/python/Doc/ext Modified Files: ext.tex Log Message: Minor nit to prevent dropping a space in the HTML generation. From fdrake@weyr.cnri.reston.va.us Fri Feb 5 18:31:30 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 5 Feb 1999 13:31:30 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/perl python.perl Message-ID: <199902051831.NAA11225@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/perl In directory weyr:/home/fdrake/projects/python/Doc/perl Modified Files: python.perl Log Message: More magic to tighten up a little of the formatting. From guido@cnri.reston.va.us Fri Feb 5 19:59:31 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Fri, 5 Feb 1999 14:59:31 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Lib sunau.py Message-ID: <199902051959.OAA18085@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory eric:/projects/python/develop/guido/src/Lib Modified Files: sunau.py Log Message: Shouldn't be treating linear-8 as u-law! From fdrake@weyr.cnri.reston.va.us Fri Feb 5 20:51:02 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 5 Feb 1999 15:51:02 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/tools getpagecounts Message-ID: <199902052051.PAA22472@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: getpagecounts Log Message: Respond to suggestion from "Albert" to add document titles to the list of files. Also added total page count and a note that comments should be directed to python-docs@python.org. From guido@cnri.reston.va.us Fri Feb 5 20:55:17 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Fri, 5 Feb 1999 15:55:17 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Lib sunau.py Message-ID: <199902052055.PAA18312@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory eric:/projects/python/develop/guido/src/Lib Modified Files: sunau.py Log Message: Should open files in binary mode! Also finally get rid of some obsolete commented-out access statements. A note about the previous checkin: I believe it's correct, but I found something strange: the file Lib/test/audiotest.au in the Python distribution was evidently encoded in u-LAW format but had its encoding set to 2, i.e. linear-8. I hope that this is a mistake caused by some conversion program that produced this .au file; I just found it on a website. From guido@cnri.reston.va.us Fri Feb 5 20:57:46 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Fri, 5 Feb 1999 15:57:46 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Lib/test audiotest.au Message-ID: <199902052057.PAA18352@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: audiotest.au Log Message: The encoding type was wrong, I think. From guido@cnri.reston.va.us Fri Feb 5 22:28:18 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Fri, 5 Feb 1999 17:28:18 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Lib wave.py Message-ID: <199902052228.RAA18598@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory eric:/projects/python/develop/guido/src/Lib Modified Files: wave.py Log Message: Two important fixes: (1) on a little-endian platform, don't byteswap; (2) in _patchheader(), there was a missing self._file argument to a _write_long() call. From guido@cnri.reston.va.us Fri Feb 5 22:32:12 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Fri, 5 Feb 1999 17:32:12 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Lib wave.py Message-ID: <199902052232.RAA18637@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory eric:/projects/python/develop/guido/src/Lib Modified Files: wave.py Log Message: Ehm, when we don't need to byteswap the data, don't go through an array object at all. From guido@cnri.reston.va.us Fri Feb 5 22:34:58 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Fri, 5 Feb 1999 17:34:58 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/PC config.c Message-ID: <199902052234.RAA18660@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/PC In directory eric:/projects/python/develop/guido/src/PC Modified Files: config.c Log Message: Some weird symbol (M_I386) was used to decide whether to include the audioop module; this was no longer defined. Use MS_WINDOWS instead. (I have a feeling that this was for the WATCOM port; too bad.) From guido@cnri.reston.va.us Mon Feb 8 15:26:54 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 8 Feb 1999 10:26:54 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Lib/lib-tk Tkinter.py Message-ID: <199902081526.KAA20580@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: Put a try-except around the "image delete" call in Image.__del__ to avoid tracebacks when the root is destroyed before the image object. From guido@cnri.reston.va.us Mon Feb 8 17:03:29 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 8 Feb 1999 12:03:29 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Modules cStringIO.c Message-ID: <199902081703.MAA21488@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Modules In directory eric:/projects/python/develop/guido/src/Modules Modified Files: cStringIO.c Log Message: The writelines() function was never tested and contained numerous bugs (including a docstring saying "blah"). Fixed all this. (Please review for potential memory leaks!) From guido@cnri.reston.va.us Mon Feb 8 18:34:03 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 8 Feb 1999 13:34:03 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Lib Queue.py Message-ID: <199902081834.NAA21596@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory eric:/projects/python/develop/guido/src/Lib Modified Files: Queue.py Log Message: Tim Peters: + Implements a put_nowait method. + Adds a corresponding Queue.Full exception. + Simplifies the implementation by adding optional "block" args to get() and put(), and makes the old get_nowait() and new put_nowait() one-line redirections to get() and put(). + Uses (much) simpler logic for the nowait cases. + Regularizes the doc strings to something closer to "Guido style" . + Converts two stray tabs into spaces. + Removes confusing verbiage about the queue "not being available" from the docstrings -- never knew what that meant as a user, and after digging into the implementation still didn't know what it was trying to say. From guido@cnri.reston.va.us Mon Feb 8 18:43:15 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 8 Feb 1999 13:43:15 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libqueue.tex Message-ID: <199902081843.NAA21623@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/lib In directory eric:/projects/python/develop/guido/Doc/lib Modified Files: libqueue.tex Log Message: Update documentation to reflect changes to Queue.py by Tim Peters. From guido@cnri.reston.va.us Mon Feb 8 21:49:25 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 8 Feb 1999 16:49:25 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Modules Setup.in Message-ID: <199902082149.QAA21787@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Modules In directory eric:/projects/python/develop/guido/src/Modules Modified Files: Setup.in Log Message: The variable TESTPATH should be initialized to empty. The test code is now accessed as a package. From guido@cnri.reston.va.us Mon Feb 8 22:27:19 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 8 Feb 1999 17:27:19 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Tools/idle TODO.txt Message-ID: <199902082227.RAA21862@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Tools/idle In directory eric:/projects/python/develop/guido/src/Tools/idle Modified Files: TODO.txt Log Message: Restructured a bit. From guido@cnri.reston.va.us Mon Feb 8 22:27:50 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 8 Feb 1999 17:27:50 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Tools/idle WindowList.py Message-ID: <199902082227.RAA21881@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Tools/idle In directory eric:/projects/python/develop/guido/src/Tools/idle Modified Files: WindowList.py Log Message: Don't crash if a window no longer exists. From guido@cnri.reston.va.us Mon Feb 8 22:29:41 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 8 Feb 1999 17:29:41 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Misc ACKS Message-ID: <199902082229.RAA21907@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Misc In directory eric:/projects/python/develop/guido/src/Misc Modified Files: ACKS Log Message: Uwe Zessin. From guido@cnri.reston.va.us Mon Feb 8 22:38:28 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 8 Feb 1999 17:38:28 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Modules cPickle.c Message-ID: <199902082238.RAA21963@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Modules In directory eric:/projects/python/develop/guido/src/Modules Modified Files: cPickle.c Log Message: Fix buglet in load_put -- the test for bad readline result tested the wrong variable. From fdrake@weyr.cnri.reston.va.us Tue Feb 9 15:31:55 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 9 Feb 1999 10:31:55 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/perl python.perl Message-ID: <199902091531.KAA08778@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/perl In directory weyr:/home/fdrake/projects/python/Doc/perl Modified Files: python.perl Log Message: Back out some of the fine tuning; something in all that interacted badly in practice and botched the whole thing. Wasn't obvious when looking at the local effects (which worked), but completely broke entire pages. ;-( From fdrake@weyr.cnri.reston.va.us Tue Feb 9 16:03:33 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 9 Feb 1999 11:03:33 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/perl python.perl Message-ID: <199902091603.LAA09409@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/perl In directory weyr:/home/fdrake/projects/python/Doc/perl Modified Files: python.perl Log Message: do_cmd_maketitle(): Small nit in creating the "title page". From fdrake@weyr.cnri.reston.va.us Tue Feb 9 18:27:24 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 9 Feb 1999 13:27:24 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/icons blank.gif Message-ID: <199902091827.NAA25498@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/icons In directory weyr:/home/fdrake/projects/python/Doc/icons Added Files: blank.gif Log Message: New blank icon to match the others in size & color, with without any symbol on it. From guido@cnri.reston.va.us Tue Feb 9 18:36:54 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Tue, 9 Feb 1999 13:36:54 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Modules main.c Message-ID: <199902091836.NAA29319@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Modules In directory eric:/projects/python/develop/guido/src/Modules Modified Files: main.c Log Message: On Windows, -i shouldn't call set[v]buf(stdin, ...) because it screws up the _tkinter main loop. Not clear why; the _kbhit() call _tkinter makes probably confuses the stdio library when buffering isn't set to whatever it is by default. From guido@cnri.reston.va.us Tue Feb 9 18:40:15 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Tue, 9 Feb 1999 13:40:15 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Lib/dos-8x3 test_ntp.py configpa.py posixpat.py queue.py Message-ID: <199902091840.NAA29351@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib/dos-8x3 In directory eric:/projects/python/develop/guido/src/Lib/dos-8x3 Modified Files: configpa.py posixpat.py queue.py Added Files: test_ntp.py Log Message: The usual. From fdrake@weyr.cnri.reston.va.us Tue Feb 9 18:45:52 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 9 Feb 1999 13:45:52 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/perl l2hinit.perl Message-ID: <199902091845.NAA25977@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/perl In directory weyr:/home/fdrake/projects/python/Doc/perl Modified Files: l2hinit.perl Log Message: Change the navigation bar to be a little prettier and more consistent with the python.org style. From bwarsaw@cnri.reston.va.us Tue Feb 9 19:31:52 1999 From: bwarsaw@cnri.reston.va.us (Barry A. Warsaw) Date: Tue, 9 Feb 1999 14:31:52 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Modules posixmodule.c Message-ID: <199902091931.OAA18750@anthem.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Modules In directory anthem:/projects/python/develop/bwarsaw/python/dist/src/Modules Modified Files: posixmodule.c Log Message: Got rid of the file-global PosixError. This was redundant since it was just an alias for PyExc_OSError and the way we were doing it was causing a (small) memory leak anyway. Just use PyExc_OSError everywhere. From guido@cnri.reston.va.us Wed Feb 10 13:12:10 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Wed, 10 Feb 1999 08:12:10 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Lib statvfs.py Message-ID: <199902101312.IAA00697@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory eric:/projects/python/develop/guido/src/Lib Modified Files: statvfs.py Log Message: Patch by Steve Clift -- fix the indices now that f_fsid is no longer returned! From fdrake@weyr.cnri.reston.va.us Wed Feb 10 17:08:03 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 10 Feb 1999 12:08:03 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/tools node2label.pl Message-ID: <199902101708.MAA06152@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: node2label.pl Log Message: Revert previous change; there's a better way to do it. From fdrake@weyr.cnri.reston.va.us Wed Feb 10 17:35:43 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 10 Feb 1999 12:35:43 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/perl l2hinit.perl Message-ID: <199902101735.MAA07201@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/perl In directory weyr:/home/fdrake/projects/python/Doc/perl Modified Files: l2hinit.perl Log Message: Remove unnecessary

from top navigation bar. From fdrake@weyr.cnri.reston.va.us Wed Feb 10 21:17:06 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 10 Feb 1999 16:17:06 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/perl python.perl Message-ID: <199902102117.QAA08701@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/perl In directory weyr:/home/fdrake/projects/python/Doc/perl Modified Files: python.perl Log Message: Fix up some routines to coordinate the "indexsubitem" stuff so that the subitem text is updated correctly when each module section is processed. Print [] when we start on \declaremodule so we can more easily track progress during the library reference. From guido@cnri.reston.va.us Thu Feb 11 14:41:49 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Thu, 11 Feb 1999 09:41:49 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Lib getpass.py Message-ID: <199902111441.JAA01126@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory eric:/projects/python/develop/guido/src/Lib Modified Files: getpass.py Log Message: Mod by Jack Jansen: on Macintosh, use EasyDialogs.GetPassword if it exists. From guido@cnri.reston.va.us Fri Feb 12 14:13:13 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Fri, 12 Feb 1999 09:13:13 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Lib ConfigParser.py Message-ID: <199902121413.JAA02602@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: Fix by Chris Petrilli (to his own code) to limit the number of iterations looking for expansions to 10. From fdrake@weyr.cnri.reston.va.us Fri Feb 12 18:15:00 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 12 Feb 1999 13:15:00 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/ref ref3.tex Message-ID: <199902121815.NAA20741@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/ref In directory weyr:/home/fdrake/projects/python/Doc/ref Modified Files: ref3.tex Log Message: Documented __complex__(), made sure all the discipline names hit the index. From fdrake@weyr.cnri.reston.va.us Fri Feb 12 18:27:32 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 12 Feb 1999 13:27:32 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libstdtypes.tex Message-ID: <199902121827.NAA20833@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: libstdtypes.tex Log Message: Document .conjugate(). From fdrake@weyr.cnri.reston.va.us Fri Feb 12 19:00:39 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 12 Feb 1999 14:00:39 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/perl l2hinit.perl Message-ID: <199902121900.OAA21530@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/perl In directory weyr:/home/fdrake/projects/python/Doc/perl Modified Files: l2hinit.perl Log Message: Moved the navigation-bar background color to a variable. From fdrake@weyr.cnri.reston.va.us Fri Feb 12 19:23:18 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 12 Feb 1999 14:23:18 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/perl python.perl Message-ID: <199902121923.OAA21941@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/perl In directory weyr:/home/fdrake/projects/python/Doc/perl Modified Files: python.perl Log Message: Make table headers the same color as the navigation bars so they stand out a little better. Make sure the boxes for the last column of tables always get drawn; these are often left empty of content when used as a "Notes" column. They look a little better this way. From fdrake@weyr.cnri.reston.va.us Fri Feb 12 19:24:04 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 12 Feb 1999 14:24:04 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc Makefile.deps Message-ID: <199902121924.OAA21965@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 entry for MimeWriter module. From fdrake@weyr.cnri.reston.va.us Fri Feb 12 19:26:10 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 12 Feb 1999 14:26:10 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libmimewriter.tex lib.tex libundoc.tex Message-ID: <199902121926.OAA21993@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 libundoc.tex Added Files: libmimewriter.tex Log Message: Added section for MimeWriter, contributed by Christopher Petrilli . This spells the end of another whole section in the undoc chapter! From fdrake@weyr.cnri.reston.va.us Fri Feb 12 20:10:00 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 12 Feb 1999 15:10:00 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/html about.dat Message-ID: <199902122010.PAA22422@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: about.dat Log Message: Use the shorter form of Christopher Petrilli's email address. From fdrake@weyr.cnri.reston.va.us Fri Feb 12 20:40:10 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 12 Feb 1999 15:40:10 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/ref ref5.tex ref7.tex Message-ID: <199902122040.PAA23020@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/ref In directory weyr:/home/fdrake/projects/python/Doc/ref Modified Files: ref5.tex ref7.tex Log Message: Minor markup nits. From fdrake@weyr.cnri.reston.va.us Fri Feb 12 20:40:50 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 12 Feb 1999 15:40:50 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libcopy.tex Message-ID: <199902122040.PAA23047@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: libcopy.tex Log Message: Markup nits. From fdrake@weyr.cnri.reston.va.us Fri Feb 12 21:42:24 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 12 Feb 1999 16:42:24 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/html Makefile Message-ID: <199902122142.QAA23503@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: L2HARGS: Specify the HTML version we're producing, since this is what we generate anyway. From fdrake@weyr.cnri.reston.va.us Fri Feb 12 22:05:35 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 12 Feb 1999 17:05:35 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libstdtypes.tex Message-ID: <199902122205.RAA24067@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: libstdtypes.tex Log Message: Make sure all HTML pages generated from this section have reasonable names. Markup nits. From fdrake@weyr.cnri.reston.va.us Fri Feb 12 22:06:33 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 12 Feb 1999 17:06:33 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/perl python.perl Message-ID: <199902122206.RAA24089@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/perl In directory weyr:/home/fdrake/projects/python/Doc/perl Modified Files: python.perl Log Message: Minor fix that helps out with the index. From guido@cnri.reston.va.us Mon Feb 15 14:43:14 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 15 Feb 1999 09:43:14 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Include moduleobject.h Message-ID: <199902151443.JAA05774@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Include In directory eric:/projects/python/develop/guido/src/Include Modified Files: moduleobject.h Log Message: Add PyModule_GetFilename(). From guido@cnri.reston.va.us Mon Feb 15 14:47:19 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 15 Feb 1999 09:47:19 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Objects moduleobject.c Message-ID: <199902151447.JAA05984@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Objects In directory eric:/projects/python/develop/guido/src/Objects Modified Files: moduleobject.c Log Message: Patch by Chris Petrilli to display the origin of a module in its repr() -- either "(builtin)" or "from ''". From fdrake@weyr.cnri.reston.va.us Mon Feb 15 15:02:24 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 15 Feb 1999 10:02:24 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/texinputs boilerplate.tex Message-ID: <199902151502.KAA26877@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/texinputs In directory weyr:/home/fdrake/projects/python/Doc/texinputs Modified Files: boilerplate.tex Log Message: Set target. From fdrake@weyr.cnri.reston.va.us Mon Feb 15 15:30:47 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 15 Feb 1999 10:30:47 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/api api.tex Message-ID: <199902151530.KAA27032@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: api.tex Log Message: Markup nits. Added section on module objects; described functions in moduleobject.c. From fdrake@weyr.cnri.reston.va.us Mon Feb 15 16:20:27 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 15 Feb 1999 11:20:27 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/ext ext.tex Message-ID: <199902151620.LAA27354@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/ext In directory weyr:/home/fdrake/projects/python/Doc/ext Modified Files: ext.tex Log Message: Added section "Providing a C API for an Extension Module" by Konrad Hinsen. "\C{}" --> "C" From fdrake@weyr.cnri.reston.va.us Mon Feb 15 16:27:43 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 15 Feb 1999 11:27:43 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/tools mkhowto.sh Message-ID: <199902151627.LAA27445@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: mkhowto.sh Log Message: Added --l2h-config option to add additional initialization files for latex2html. Can be useful in setting up things like the upward external link for the top of the documents. From fdrake@weyr.cnri.reston.va.us Mon Feb 15 16:34:01 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 15 Feb 1999 11:34:01 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libposixpath.tex Message-ID: <199902151634.LAA27481@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: Added availability notes for samefile(), sameopenfile(), samestat() since these are not available on Windows. From fdrake@weyr.cnri.reston.va.us Mon Feb 15 16:50:29 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 15 Feb 1999 11:50:29 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/tools/sgmlconv Makefile Message-ID: <199902151650.LAA27529@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/tools/sgmlconv In directory weyr:/home/fdrake/projects/python/Doc/tools/sgmlconv Modified Files: Makefile Log Message: Use a common definition for $(SUBMAKE) instead of repeating everything all over the place. From fdrake@weyr.cnri.reston.va.us Mon Feb 15 19:27:09 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 15 Feb 1999 14:27:09 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/tools mkdvi.sh Message-ID: <199902151927.OAA00489@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: mkdvi.sh Log Message: Add an optional parameter to make the script run latex only once to generate an .aux file. This can make HTML generation a bit faster when print formats aren't needed. Explained parameters in a comment. From fdrake@weyr.cnri.reston.va.us Mon Feb 15 19:29:09 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 15 Feb 1999 14:29:09 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/html Makefile Message-ID: <199902151929.OAA00512@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: HTMLBASE: New variable. Make it easier to check an "installed" copy of the HTML documents using the webcheck target. When there's not a usable .aux file, use mkdvi.sh --aux instead of building the .dvi completely. This makes the most difference for the library reference. From fdrake@weyr.cnri.reston.va.us Mon Feb 15 20:15:41 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 15 Feb 1999 15:15:41 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/api api.tex Message-ID: <199902152015.PAA00967@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: api.tex Log Message: Be explicit about the reference count of the original value of the first parameter to PyString_Concat(). From fdrake@weyr.cnri.reston.va.us Mon Feb 15 21:27:26 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 15 Feb 1999 16:27:26 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/html/icons - New directory Message-ID: <199902152127.QAA01539@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/html/icons In directory weyr:/home/fdrake/projects/python/Doc/html/icons Log Message: Directory /projects/cvsroot/python/dist/src/Doc/html/icons added to the repository From fdrake@weyr.cnri.reston.va.us Mon Feb 15 21:42:48 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 15 Feb 1999 16:42:48 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/icons blank.gif contents.gif index.gif modules.gif next.gif previous.gif up.gif Message-ID: <199902152142.QAA01703@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/icons In directory weyr:/home/fdrake/projects/python/Doc/icons Removed Files: blank.gif contents.gif index.gif modules.gif next.gif previous.gif up.gif Log Message: Moved icons into the html directory to avoid pollution of the top level. From fdrake@weyr.cnri.reston.va.us Mon Feb 15 21:43:56 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 15 Feb 1999 16:43:56 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/html Makefile Message-ID: <199902152143.QAA01727@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: Remove stuff related to copying the icons directory around -- just isn't needed. From fdrake@weyr.cnri.reston.va.us Tue Feb 16 14:21:57 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 16 Feb 1999 09:21:57 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/perl l2hinit.perl Message-ID: <199902161421.JAA03286@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/perl In directory weyr:/home/fdrake/projects/python/Doc/perl Modified Files: l2hinit.perl Log Message: Adjust cellspacing attribute of the navigation bar tables to get some space between cells on all (major) browsers. From guido@cnri.reston.va.us Tue Feb 16 14:37:31 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Tue, 16 Feb 1999 09:37:31 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Modules posixmodule.c Message-ID: <199902161437.JAA08486@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: Fixed totally bogus conversion factors used in the Win32 version of os.times(). From guido@cnri.reston.va.us Tue Feb 16 15:10:13 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Tue, 16 Feb 1999 10:10:13 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Lib urllib.py Message-ID: <199902161510.KAA08851@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory eric:/projects/python/develop/guido/src/Lib Modified Files: urllib.py Log Message: In open_ftp(), check that retrlen is not None before using it in a %d format! From fdrake@weyr.cnri.reston.va.us Tue Feb 16 16:16:39 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 16 Feb 1999 11:16:39 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/html about.dat Message-ID: <199902161616.LAA07979@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: about.dat Log Message: Use the same markup for email addresses as is produced by using \email in the LaTeX sources. From fdrake@weyr.cnri.reston.va.us Tue Feb 16 17:22:34 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 16 Feb 1999 12:22:34 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/perl l2hinit.perl Message-ID: <199902161722.MAA08923@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/perl In directory weyr:/home/fdrake/projects/python/Doc/perl Modified Files: l2hinit.perl Log Message: Make navigation panels more CSS-friendly. Make sure the contents page always has the "table of child links" turned off; this wasn't being handled properly by latex2html for "howto" ("article") documents, so just do it ourselves for all document types. From fdrake@weyr.cnri.reston.va.us Tue Feb 16 17:29:44 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 16 Feb 1999 12:29:44 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/ext ext.tex Message-ID: <199902161729.MAA09223@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/ext In directory weyr:/home/fdrake/projects/python/Doc/ext Modified Files: ext.tex Log Message: Make it clear that Demo/embed/ is from the source distribution. From fdrake@weyr.cnri.reston.va.us Tue Feb 16 17:34:53 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 16 Feb 1999 12:34:53 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/ext ext.tex Message-ID: <199902161734.MAA09491@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/ext In directory weyr:/home/fdrake/projects/python/Doc/ext Modified Files: ext.tex Log Message: Small grammatical fix; missing comma. From guido@cnri.reston.va.us Tue Feb 16 17:19:40 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Tue, 16 Feb 1999 12:19:40 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Tools/modulator README Message-ID: <199902161719.MAA09314@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Tools/modulator In directory eric:/projects/python/develop/guido/src/Tools/modulator Modified Files: README Log Message: Clarify how EXAMPLE.py is to be used ("python EXAMPLE.py", not "python modulator.py EXAMPLE.py") and that it's only there in case you don't have Tkinter. From fdrake@weyr.cnri.reston.va.us Tue Feb 16 19:08:18 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 16 Feb 1999 14:08:18 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc Makefile.deps Message-ID: <199902161908.OAA10302@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 some files to the library reference. From fdrake@weyr.cnri.reston.va.us Tue Feb 16 19:18:40 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 16 Feb 1999 14:18:40 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libmsvcrt.tex libwinsound.tex windows.tex lib.tex libundoc.tex Message-ID: <199902161918.OAA10599@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 libundoc.tex Added Files: libmsvcrt.tex libwinsound.tex windows.tex Log Message: Added chapter on Windows modules, including msvcrt and winsound. From guido@cnri.reston.va.us Tue Feb 16 19:38:06 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Tue, 16 Feb 1999 14:38:06 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Modules posixmodule.c Message-ID: <199902161938.OAA09503@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: The symbols P_* (for spawn*(), MS specific) should not have a leading underscore after all, for consistency with the O_* symnbols. From guido@cnri.reston.va.us Tue Feb 16 19:40:04 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Tue, 16 Feb 1999 14:40:04 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/PC msvcrtmodule.c Message-ID: <199902161940.OAA09536@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/PC In directory eric:/projects/python/develop/guido/src/PC Modified Files: msvcrtmodule.c Log Message: Check for potential error returned by _ungetch(). From fdrake@weyr.cnri.reston.va.us Tue Feb 16 19:40:21 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 16 Feb 1999 14:40:21 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libos.tex Message-ID: <199902161940.OAA10964@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: libos.tex Log Message: Remove "_" from the P_* symbols used with the spawn*() functions. From fdrake@weyr.cnri.reston.va.us Tue Feb 16 19:41:02 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 16 Feb 1999 14:41:02 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libmsvcrt.tex Message-ID: <199902161941.OAA10996@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: libmsvcrt.tex Log Message: The _O_* constants are defined as O_* in the os module. From guido@cnri.reston.va.us Tue Feb 16 19:56:29 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Tue, 16 Feb 1999 14:56:29 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/PCbuild python15.dsp Message-ID: <199902161956.OAA09640@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/PCbuild In directory eric:/projects/python/develop/guido/src/PCbuild Modified Files: python15.dsp Log Message: Add source file winsound.c and library winmm.lib From guido@cnri.reston.va.us Tue Feb 16 20:05:37 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Tue, 16 Feb 1999 15:05:37 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Lib/dos-8x3 testntpa.py configpa.py Message-ID: <199902162005.PAA09674@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib/dos-8x3 In directory eric:/projects/python/develop/guido/src/Lib/dos-8x3 Modified Files: configpa.py Added Files: testntpa.py Log Message: The usual From fdrake@weyr.cnri.reston.va.us Tue Feb 16 20:05:44 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 16 Feb 1999 15:05:44 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/tools mkhtml.sh Message-ID: <199902162005.PAA11476@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: Make sure errors get propogated. From fdrake@weyr.cnri.reston.va.us Tue Feb 16 20:23:57 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 16 Feb 1999 15:23:57 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc Makefile Message-ID: <199902162023.PAA12005@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc In directory weyr:/home/fdrake/projects/python/Doc Modified Files: Makefile Log Message: Bump release to 1.5.2b2. From fdrake@weyr.cnri.reston.va.us Tue Feb 16 20:27:09 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 16 Feb 1999 15:27:09 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/html style.css Message-ID: <199902162027.PAA12070@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/html In directory weyr:/home/fdrake/projects/python/Doc/html Added Files: style.css Log Message: CSS style sheet for the documentation. From fdrake@weyr.cnri.reston.va.us Tue Feb 16 20:27:43 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 16 Feb 1999 15:27:43 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/perl python.perl Message-ID: <199902162027.PAA12092@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/perl In directory weyr:/home/fdrake/projects/python/Doc/perl Modified Files: python.perl Log Message: Become more stylesheet-friendly. From fdrake@weyr.cnri.reston.va.us Tue Feb 16 20:28:26 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 16 Feb 1999 15:28:26 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/tools mkhtml.sh Message-ID: <199902162028.PAA12114@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: Copy in the stylesheet after latex2html is done. From fdrake@weyr.cnri.reston.va.us Tue Feb 16 20:43:55 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 16 Feb 1999 15:43:55 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/tools mkhowto.sh Message-ID: <199902162043.PAA12702@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: mkhowto.sh Log Message: Copy in the stylesheet after latex2html is done. From fdrake@weyr.cnri.reston.va.us Tue Feb 16 21:14:18 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 16 Feb 1999 16:14:18 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/ext ext.tex Message-ID: <199902162114.QAA12869@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/ext In directory weyr:/home/fdrake/projects/python/Doc/ext Modified Files: ext.tex Log Message: Integrated notes on building extension modules on Windows, by Neil Schemenauer . Thanks, Neil! From guido@cnri.reston.va.us Tue Feb 16 21:30:19 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Tue, 16 Feb 1999 16:30:19 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Misc ACKS Message-ID: <199902162130.QAA10966@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Misc In directory eric:/projects/python/develop/guido/src/Misc Modified Files: ACKS Log Message: Finn Bock. From fdrake@weyr.cnri.reston.va.us Tue Feb 16 22:15:43 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 16 Feb 1999 17:15:43 -0500 Subject: [Python-checkins] CVS: python/dist/src/Modules xxmodule.c Message-ID: <199902162215.RAA13078@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Modules In directory weyr:/home/fdrake/projects/python/Modules Modified Files: xxmodule.c Log Message: Use the portable form of initializing the ob_type field for new types. From guido@cnri.reston.va.us Tue Feb 16 22:34:18 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Tue, 16 Feb 1999 17:34:18 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Tools/idle ScriptBinding.py Message-ID: <199902162234.RAA11144@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Tools/idle In directory eric:/projects/python/develop/guido/src/Tools/idle Modified Files: ScriptBinding.py Log Message: Only pop up the stack viewer when requested in the Debug menu. From fdrake@weyr.cnri.reston.va.us Tue Feb 16 22:51:10 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 16 Feb 1999 17:51:10 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/html about.dat Message-ID: <199902162251.RAA13414@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: about.dat Log Message: Remove all email addresses. From guido@cnri.reston.va.us Tue Feb 16 23:05:47 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Tue, 16 Feb 1999 18:05:47 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Tools/freeze hello.py Message-ID: <199902162305.SAA11272@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Tools/freeze In directory eric:/projects/python/develop/guido/src/Tools/freeze Modified Files: hello.py Log Message: # Accidentally checked in a test version of this file with a bogus # "import fooblurg" :-) From fdrake@weyr.cnri.reston.va.us Tue Feb 16 23:06:34 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 16 Feb 1999 18:06:34 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/ext ext.tex Message-ID: <199902162306.SAA13652@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/ext In directory weyr:/home/fdrake/projects/python/Doc/ext Modified Files: ext.tex Log Message: Removed old dynamic linking chapter. Integrated information on Windows DLLs from Chris Phoenix (Thanks!). Added "Acknowledgements" area to thank contributing authors. From bwarsaw@cnri.reston.va.us Tue Feb 16 23:36:23 1999 From: bwarsaw@cnri.reston.va.us (Barry A. Warsaw) Date: Tue, 16 Feb 1999 18:36:23 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Misc python-mode.el Message-ID: <199902162336.SAA29001@anthem.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Misc In directory anthem:/projects/python/develop/bwarsaw/src/Misc Modified Files: python-mode.el Log Message: (py-default-interpreter): New variable which selects whether CPython or JPython is the default interpreter to use when `C-c !' is entered for the first time. From bwarsaw@cnri.reston.va.us Tue Feb 16 23:52:50 1999 From: bwarsaw@cnri.reston.va.us (Barry A. Warsaw) Date: Tue, 16 Feb 1999 18:52:50 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Misc python-mode.el Message-ID: <199902162352.SAA29056@anthem.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Misc In directory anthem:/projects/python/develop/bwarsaw/src/Misc Modified Files: python-mode.el Log Message: (py-shell): Added optional argprompt, which will prompt for additional switches to pass into the shell process (only on initial startup). From guido@cnri.reston.va.us Wed Feb 17 16:20:11 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Wed, 17 Feb 1999 11:20:11 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Tools/idle ChangeLog Message-ID: <199902171620.LAA12020@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Tools/idle In directory eric:/projects/python/develop/guido/src/Tools/idle Added Files: ChangeLog Log Message: Oh, why not. Checking in the Emacs-generated change log. From guido@cnri.reston.va.us Wed Feb 17 17:19:38 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Wed, 17 Feb 1999 12:19:38 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Tools/idle WindowList.py Message-ID: <199902171719.MAA12371@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Tools/idle In directory eric:/projects/python/develop/guido/src/Tools/idle Modified Files: WindowList.py Log Message: Support callbacks to patch up Windows menus everywhere. From guido@cnri.reston.va.us Wed Feb 17 17:20:51 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Wed, 17 Feb 1999 12:20:51 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Tools/idle EditorWindow.py Message-ID: <199902171720.MAA12390@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Tools/idle In directory eric:/projects/python/develop/guido/src/Tools/idle Modified Files: EditorWindow.py Log Message: Fix up the Windows menu via the new callback mechanism instead of depending on menu post commands (which don't work when the menu is torn off). From fdrake@weyr.cnri.reston.va.us Wed Feb 17 17:30:55 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 17 Feb 1999 12:30:55 -0500 Subject: [Python-checkins] CVS: python/dist/src/Lib pprint.py Message-ID: <199902171730.MAA15512@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory weyr:/home/fdrake/projects/python/Lib Modified Files: pprint.py Log Message: _safe_repr(): Simplify the condition tests in the first possible return path. From guido@cnri.reston.va.us Wed Feb 17 17:34:26 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Wed, 17 Feb 1999 12:34:26 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Tools/idle WindowList.py Message-ID: <199902171734.MAA12441@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Tools/idle In directory eric:/projects/python/develop/guido/src/Tools/idle Modified Files: WindowList.py Log Message: When deleting, call the callbacks *after* deleting the window from our list! From guido@cnri.reston.va.us Wed Feb 17 17:35:00 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Wed, 17 Feb 1999 12:35:00 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Tools/idle EditorWindow.py Message-ID: <199902171735.MAA12460@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Tools/idle In directory eric:/projects/python/develop/guido/src/Tools/idle Modified Files: EditorWindow.py Log Message: After all, we don't need to call the callbacks ourselves! From fdrake@weyr.cnri.reston.va.us Wed Feb 17 17:35:56 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 17 Feb 1999 12:35:56 -0500 Subject: [Python-checkins] CVS: python/dist/src/Modules parsermodule.c Message-ID: <199902171735.MAA15573@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Modules In directory weyr:/home/fdrake/projects/python/Modules Modified Files: parsermodule.c Log Message: When the parameter to PyInt_AsLong() has already been checked with PyInt_Check(), use PyInt_AS_LONG() instead (two places). From guido@cnri.reston.va.us Wed Feb 17 17:37:12 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Wed, 17 Feb 1999 12:37:12 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Tools/idle idlever.py Message-ID: <199902171737.MAA12518@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Tools/idle In directory eric:/projects/python/develop/guido/src/Tools/idle Modified Files: idlever.py Log Message: Bump version to 0.3. From guido@cnri.reston.va.us Wed Feb 17 17:37:25 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Wed, 17 Feb 1999 12:37:25 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Tools/idle README.txt Message-ID: <199902171737.MAA12537@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Tools/idle In directory eric:/projects/python/develop/guido/src/Tools/idle Modified Files: README.txt Log Message: Bump version to 0.3. From fdrake@weyr.cnri.reston.va.us Wed Feb 17 18:12:17 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 17 Feb 1999 13:12:17 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/ext ext.tex Message-ID: <199902171812.NAA16889@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/ext In directory weyr:/home/fdrake/projects/python/Doc/ext Modified Files: ext.tex Log Message: Small updates and grammatical adjustments. Remove comment about this manual being out of date from the abstract. From guido@cnri.reston.va.us Wed Feb 17 22:47:43 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Wed, 17 Feb 1999 17:47:43 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Tools/idle NEWS.txt Message-ID: <199902172247.RAA14092@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Tools/idle In directory eric:/projects/python/develop/guido/src/Tools/idle Modified Files: NEWS.txt Log Message: News in 0.3. From fdrake@weyr.cnri.reston.va.us Wed Feb 17 23:09:08 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 17 Feb 1999 18:09:08 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/api api.tex Message-ID: <199902172309.SAA18929@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: api.tex Log Message: Updated list of standard exceptions in section 4.1. From guido@cnri.reston.va.us Wed Feb 17 23:16:47 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Wed, 17 Feb 1999 18:16:47 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Python getargs.c Message-ID: <199902172316.SAA14507@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Python In directory eric:/projects/python/develop/guido/src/Python Modified Files: getargs.c Log Message: Patch by Tommy Burnette to accept an arbitrary sequence when "(...)" is used in the format string, instead of requiring a tuple. This is in line with the general trend towards accepting arbitrary sequences. From guido@cnri.reston.va.us Wed Feb 17 23:53:37 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Wed, 17 Feb 1999 18:53:37 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/PCbuild python15.wse Message-ID: <199902172353.SAA14648@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/PCbuild In directory eric:/projects/python/develop/guido/src/PCbuild Modified Files: python15.wse Log Message: Some new stuff. Get the HTML docs via a new variable. Comment out freeze script (doesn't work at all). Add dialog to get program manager group. From fdrake@weyr.cnri.reston.va.us Thu Feb 18 03:46:12 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 17 Feb 1999 22:46:12 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libstring.tex Message-ID: <199902180346.WAA20343@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: libstring.tex Log Message: atof() description: Add information about accepting 'NaN' to produce the NaN value. From fdrake@weyr.cnri.reston.va.us Thu Feb 18 03:49:21 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 17 Feb 1999 22:49:21 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libfuncs.tex Message-ID: <199902180349.WAA20385@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: libfuncs.tex Log Message: atof() description: Add information about accepting 'NaN' to produce the NaN value. From fdrake@weyr.cnri.reston.va.us Thu Feb 18 03:50:03 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 17 Feb 1999 22:50:03 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/ext ext.tex Message-ID: <199902180350.WAA20416@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/ext In directory weyr:/home/fdrake/projects/python/Doc/ext Modified Files: ext.tex Log Message: Update note about the (...) format specifier for PyArg_ParseTuple(). From guido@cnri.reston.va.us Thu Feb 18 14:22:07 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Thu, 18 Feb 1999 09:22:07 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Tools/modulator modulator.py Message-ID: <199902181422.JAA15417@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Tools/modulator In directory eric:/projects/python/develop/guido/src/Tools/modulator Modified Files: modulator.py Log Message: Comment out confusing write call. From guido@cnri.reston.va.us Thu Feb 18 16:01:44 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Thu, 18 Feb 1999 11:01:44 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Misc ACKS Message-ID: <199902181601.LAA15572@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Misc In directory eric:/projects/python/develop/guido/src/Misc Modified Files: ACKS Log Message: Couple of new names. From guido@cnri.reston.va.us Thu Feb 18 16:02:22 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Thu, 18 Feb 1999 11:02:22 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Misc NEWS Message-ID: <199902181602.LAA15590@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Misc In directory eric:/projects/python/develop/guido/src/Misc Modified Files: NEWS Log Message: New in 1.5.2b2. From guido@cnri.reston.va.us Thu Feb 18 16:04:37 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Thu, 18 Feb 1999 11:04:37 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src README Message-ID: <199902181604.LAA15639@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src In directory eric:/projects/python/develop/guido/src Modified Files: README Log Message: Updated for 1.5.2b2 release. From fdrake@weyr.cnri.reston.va.us Thu Feb 18 16:08:38 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 18 Feb 1999 11:08:38 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libfuncs.tex libstring.tex Message-ID: <199902181608.LAA23421@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: libfuncs.tex libstring.tex Log Message: Add notes to __builtin__.float() and string.atof() that the NaN and Inf results are possible but non-portable. From fdrake@weyr.cnri.reston.va.us Thu Feb 18 16:11:13 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 18 Feb 1999 11:11:13 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/tools buildindex.py Message-ID: <199902181611.LAA23458@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: buildindex.py Log Message: Make the _rmtt regular expression deal with the new CSS-friendly changes to the HTML documentation. From fdrake@weyr.cnri.reston.va.us Thu Feb 18 16:30:18 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 18 Feb 1999 11:30:18 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/tools/sgmlconv esis2sgml.py Message-ID: <199902181630.LAA23549@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/tools/sgmlconv In directory weyr:/home/fdrake/projects/python/Doc/tools/sgmlconv Modified Files: esis2sgml.py Log Message: Some adjustments, mostly to make it more general. From fdrake@weyr.cnri.reston.va.us Thu Feb 18 16:31:06 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 18 Feb 1999 11:31:06 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/tools/sgmlconv make.rules Message-ID: <199902181631.LAA23571@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/tools/sgmlconv In directory weyr:/home/fdrake/projects/python/Doc/tools/sgmlconv Modified Files: make.rules Log Message: Minor adjustments to reflect esis2sgml.py changes. Added "esis" target to only generate the ESIS data. From fdrake@weyr.cnri.reston.va.us Thu Feb 18 16:32:23 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 18 Feb 1999 11:32:23 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/tools/sgmlconv docfixer.py Message-ID: <199902181632.LAA23598@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/tools/sgmlconv In directory weyr:/home/fdrake/projects/python/Doc/tools/sgmlconv Modified Files: docfixer.py Log Message: Mark elements that represent interactive sessions; these become elements. From fdrake@weyr.cnri.reston.va.us Thu Feb 18 20:39:06 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 18 Feb 1999 15:39:06 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc Makefile.deps Message-ID: <199902182039.PAA24881@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: More files. From fdrake@weyr.cnri.reston.va.us Thu Feb 18 20:39:46 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 18 Feb 1999 15:39:46 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libundoc.tex Message-ID: <199902182039.PAA24919@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: Remove the "Parsing Python" section. Hurray! From fdrake@weyr.cnri.reston.va.us Thu Feb 18 20:40:30 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 18 Feb 1999 15:40:30 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/lib lib.tex Message-ID: <199902182040.PAA24945@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 sections for pyclbr and tokenize. From fdrake@weyr.cnri.reston.va.us Thu Feb 18 20:51:51 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 18 Feb 1999 15:51:51 -0500 Subject: [Python-checkins] CVS: python/dist/src/Lib pyclbr.py Message-ID: <199902182051.PAA25275@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory weyr:/home/fdrake/projects/python/Lib Modified Files: pyclbr.py Log Message: Bow to font-lock at the end of the docstring, since it throws stuff off. Make sure the path paramter to readmodule() is a list before adding it with sys.path, or the addition could fail. From fdrake@weyr.cnri.reston.va.us Thu Feb 18 21:06:52 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 18 Feb 1999 16:06:52 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libpyclbr.tex libtokenize.tex Message-ID: <199902182106.QAA25556@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: libpyclbr.tex libtokenize.tex Log Message: Documentation for pyclbr and tokenize modules. From fdrake@weyr.cnri.reston.va.us Thu Feb 18 21:10:33 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 18 Feb 1999 16:10:33 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libpprint.tex Message-ID: <199902182110.QAA25586@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: libpprint.tex Log Message: Record module & documentation author. From fdrake@weyr.cnri.reston.va.us Thu Feb 18 21:13:04 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 18 Feb 1999 16:13:04 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libstringio.tex Message-ID: <199902182113.QAA25613@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: libstringio.tex Log Message: Use current approach to record documentation author. From fdrake@weyr.cnri.reston.va.us Fri Feb 19 15:30:27 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 19 Feb 1999 10:30:27 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libstdtypes.tex Message-ID: <199902191530.KAA29192@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: libstdtypes.tex Log Message: Update description of what modules "look like" when printed. From fdrake@weyr.cnri.reston.va.us Fri Feb 19 15:46:40 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 19 Feb 1999 10:46:40 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libwinsound.tex Message-ID: <199902191546.KAA29504@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: Noted that the module was added in 1.5.2. From fdrake@weyr.cnri.reston.va.us Fri Feb 19 17:54:12 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 19 Feb 1999 12:54:12 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libbisect.tex liblocale.tex libposixpath.tex libsyslog.tex libtime.tex libuser.tex libxmllib.tex Message-ID: <199902191754.MAA00637@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: libbisect.tex liblocale.tex libposixpath.tex libsyslog.tex libtime.tex libuser.tex libxmllib.tex Log Message: Fix an amazing number of typos & malformed sentences reported by Detlef Lannert . From fdrake@weyr.cnri.reston.va.us Fri Feb 19 22:33:53 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 19 Feb 1999 17:33:53 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libmarshal.tex Message-ID: <199902192233.RAA03712@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: libmarshal.tex Log Message: Shortened the short synopsis -- way too long. From fdrake@weyr.cnri.reston.va.us Fri Feb 19 22:56:10 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 19 Feb 1999 17:56:10 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libparser.tex Message-ID: <199902192256.RAA04866@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: libparser.tex Log Message: Use more current approach to recording authors. From fdrake@weyr.cnri.reston.va.us Fri Feb 19 22:59:57 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 19 Feb 1999 17:59:57 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libmimetools.tex Message-ID: <199902192259.RAA04977@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: libmimetools.tex Log Message: Shortened the short synopsis -- too long. From fdrake@weyr.cnri.reston.va.us Fri Feb 19 23:03:05 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 19 Feb 1999 18:03:05 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/html style.css Message-ID: <199902192303.SAA05011@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: style.css Log Message: Specify the sizes of H? relative to the normal font size as percentages; using "large", "x-large" makes them too big for some troublemakers. ;-) (Not specifying them at all causes some browsers to make them the same size as normal text. ;-( ) From fdrake@weyr.cnri.reston.va.us Fri Feb 19 23:05:00 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 19 Feb 1999 18:05:00 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/perl l2hinit.perl Message-ID: <199902192305.SAA05039@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/perl In directory weyr:/home/fdrake/projects/python/Doc/perl Modified Files: l2hinit.perl Log Message: do_cmd_arabic(): Override the l2h-provided version to remove that obnoxious ... markup. From fdrake@weyr.cnri.reston.va.us Fri Feb 19 23:45:07 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 19 Feb 1999 18:45:07 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libxmllib.tex Message-ID: <199902192345.SAA05369@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: libxmllib.tex Log Message: Added an index entry. From fdrake@weyr.cnri.reston.va.us Fri Feb 19 23:48:06 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 19 Feb 1999 18:48:06 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libformatter.tex Message-ID: <199902192348.SAA05396@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: libformatter.tex Log Message: Give subsections reasonable file names in the HTML. From fdrake@weyr.cnri.reston.va.us Sat Feb 20 00:14:18 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 19 Feb 1999 19:14:18 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libanydbm.tex libbinhex.tex libbisect.tex libdbm.tex libgdbm.tex libgzip.tex libkeyword.tex libselect.tex libsite.tex libsymbol.tex libtermios.tex libtoken.tex libuser.tex libwhichdb.tex libzlib.tex Message-ID: <199902200014.TAA05676@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: libanydbm.tex libbinhex.tex libbisect.tex libdbm.tex libgdbm.tex libgzip.tex libkeyword.tex libselect.tex libsite.tex libsymbol.tex libtermios.tex libtoken.tex libuser.tex libwhichdb.tex libzlib.tex Log Message: Shorten a few section titles. From fdrake@weyr.cnri.reston.va.us Sat Feb 20 04:45:48 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 19 Feb 1999 23:45:48 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libaifc.tex Message-ID: <199902200445.XAA06387@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: libaifc.tex Log Message: Shorten section title. From fdrake@weyr.cnri.reston.va.us Sat Feb 20 04:46:39 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 19 Feb 1999 23:46:39 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/lib librgbimg.tex Message-ID: <199902200446.XAA06411@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: librgbimg.tex Log Message: Shorten section title. From fdrake@weyr.cnri.reston.va.us Sat Feb 20 04:48:37 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 19 Feb 1999 23:48:37 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libcd.tex Message-ID: <199902200448.XAA06438@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: libcd.tex Log Message: Shorten section title. From fdrake@weyr.cnri.reston.va.us Sat Feb 20 04:49:45 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 19 Feb 1999 23:49:45 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libfm.tex Message-ID: <199902200449.XAA06459@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: libfm.tex Log Message: Shorten section title. From fdrake@weyr.cnri.reston.va.us Sat Feb 20 04:50:30 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 19 Feb 1999 23:50:30 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libgl.tex Message-ID: <199902200450.XAA06482@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: libgl.tex Log Message: Shorten section title. From fdrake@weyr.cnri.reston.va.us Sat Feb 20 04:51:17 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 19 Feb 1999 23:51:17 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libjpeg.tex Message-ID: <199902200451.XAA06504@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: libjpeg.tex Log Message: Shorten section title. From fdrake@weyr.cnri.reston.va.us Sat Feb 20 05:05:01 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Sat, 20 Feb 1999 00:05:01 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libmailbox.tex Message-ID: <199902200505.AAA06540@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: libmailbox.tex Log Message: Added descriptions for BabylMailbox and Maildir (Qmail) mailbox objects. From fdrake@weyr.cnri.reston.va.us Sat Feb 20 05:20:51 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Sat, 20 Feb 1999 00:20:51 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libmpz.tex Message-ID: <199902200520.AAA07016@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: libmpz.tex Log Message: Shorten section title. From fdrake@weyr.cnri.reston.va.us Mon Feb 22 13:45:12 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 22 Feb 1999 08:45:12 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libbase64.tex libmailbox.tex libmimetypes.tex libquopri.tex libuu.tex Message-ID: <199902221345.IAA09500@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: libbase64.tex libmailbox.tex libmimetypes.tex libquopri.tex libuu.tex Log Message: More reasonable section titles. From fdrake@weyr.cnri.reston.va.us Mon Feb 22 14:14:49 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 22 Feb 1999 09:14:49 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libformatter.tex Message-ID: <199902221414.JAA09648@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: libformatter.tex Log Message: Oops, used a \label twice - fix one of them. From fdrake@weyr.cnri.reston.va.us Mon Feb 22 14:26:17 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 22 Feb 1999 09:26:17 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libmailbox.tex Message-ID: <199902221426.JAA09708@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: libmailbox.tex Log Message: BabylMailbox description: Properly escape the backslashes in the string representations. From fdrake@weyr.cnri.reston.va.us Mon Feb 22 14:32:20 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 22 Feb 1999 09:32:20 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/ref ref2.tex Message-ID: <199902221432.JAA09792@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/ref In directory weyr:/home/fdrake/projects/python/Doc/ref Modified Files: ref2.tex Log Message: Revised description of blank line handling for the interpreter, based on a comment from /F. From fdrake@weyr.cnri.reston.va.us Mon Feb 22 14:37:19 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 22 Feb 1999 09:37:19 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc TODO Message-ID: <199902221437.JAA09828@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc In directory weyr:/home/fdrake/projects/python/Doc Modified Files: TODO Log Message: Noted report of missing material in the extending & embedding manual, as reported by Clay Spence . From fdrake@weyr.cnri.reston.va.us Mon Feb 22 14:48:01 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 22 Feb 1999 09:48:01 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/lib windows.tex Message-ID: <199902221448.JAA09864@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: windows.tex Log Message: Other chapter titles refer to collections of modules as "Services"; do the same here. From fdrake@weyr.cnri.reston.va.us Mon Feb 22 14:55:48 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 22 Feb 1999 09:55:48 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/ext ext.tex Message-ID: <199902221455.JAA09895@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/ext In directory weyr:/home/fdrake/projects/python/Doc/ext Modified Files: ext.tex Log Message: Removed "This will be discussed later." where it's not. Reported by Clay Spence ; see entry in ../TODO. From guido@cnri.reston.va.us Mon Feb 22 15:19:50 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 22 Feb 1999 10:19:50 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Lib/lib-old poly.py Message-ID: <199902221519.KAA24084@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib/lib-old In directory eric:/projects/python/develop/guido/src/Lib/lib-old Modified Files: poly.py Log Message: Dang. Even though this is obsolete code, somebody found a bug, and I fix it. Oh well. From guido@cnri.reston.va.us Mon Feb 22 15:29:17 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 22 Feb 1999 10:29:17 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Modules posixmodule.c Message-ID: <199902221529.KAA24164@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: The docstring for ttyname(..) claims a second "mode" argument. The actual code does not allow such an argument. (Finn Bock.) From guido@cnri.reston.va.us Mon Feb 22 15:38:48 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 22 Feb 1999 10:38:48 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Lib urlparse.py Message-ID: <199902221538.KAA24213@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory eric:/projects/python/develop/guido/src/Lib Modified Files: urlparse.py Log Message: Steve Clift pointed out that 'file' allows a netloc. From fdrake@weyr.cnri.reston.va.us Mon Feb 22 15:39:00 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 22 Feb 1999 10:39:00 -0500 Subject: [Python-checkins] CVS: python/dist/src/Misc NEWS Message-ID: <199902221539.KAA10221@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Misc In directory weyr:/home/fdrake/projects/python/Misc Modified Files: NEWS Log Message: Typo: "apparentlt" --> "apparently" From guido@cnri.reston.va.us Mon Feb 22 15:40:36 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 22 Feb 1999 10:40:36 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Lib os.py Message-ID: <199902221540.KAA24246@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory eric:/projects/python/develop/guido/src/Lib Modified Files: os.py Log Message: As Finn Bock points out, _P_WAIT etc. don't have a leading underscore so they don't need to be treated specially here. From fdrake@weyr.cnri.reston.va.us Mon Feb 22 15:58:11 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 22 Feb 1999 10:58:11 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/info README python.dir Message-ID: <199902221558.KAA10391@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/info In directory weyr:/home/fdrake/projects/python/Doc/info Modified Files: README python.dir Log Message: Reflect the released version. From guido@cnri.reston.va.us Mon Feb 22 16:18:46 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 22 Feb 1999 11:18:46 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Modules stropmodule.c Message-ID: <199902221618.LAA26139@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Modules In directory eric:/projects/python/develop/guido/src/Modules Modified Files: stropmodule.c Log Message: In atoi(), don't use isxdigit() to test whether the last character converted was a "digit" -- use isalnum(). This test is there only to guard against "+" or "-" being interpreted as a valid int literal. Reported by Takahiro Nakayama. From guido@cnri.reston.va.us Mon Feb 22 16:19:53 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 22 Feb 1999 11:19:53 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Modules timemodule.c Message-ID: <199902221619.LAA26157@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Modules In directory eric:/projects/python/develop/guido/src/Modules Modified Files: timemodule.c Log Message: We don't support leap seconds, so the seconds field of a time 9-tuple should be in the range [0-59]. Noted by Tadayoshi Funaba. From fdrake@weyr.cnri.reston.va.us Mon Feb 22 17:12:43 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 22 Feb 1999 12:12:43 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libcfgparser.tex Message-ID: <199902221712.MAA10859@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: libcfgparser.tex Log Message: Refer to the right RFC in the intro. From guido@cnri.reston.va.us Mon Feb 22 18:11:20 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 22 Feb 1999 13:11:20 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Modules Setup.in Message-ID: <199902221811.NAA26996@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Modules In directory eric:/projects/python/develop/guido/src/Modules Modified Files: Setup.in Log Message: Document *static* -- in two places! From fdrake@weyr.cnri.reston.va.us Mon Feb 22 18:21:19 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 22 Feb 1999 13:21:19 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/ext ext.tex Message-ID: <199902221821.NAA11530@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/ext In directory weyr:/home/fdrake/projects/python/Doc/ext Modified Files: ext.tex Log Message: Added note about *static* after description of *shared*. From guido@cnri.reston.va.us Mon Feb 22 19:01:45 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 22 Feb 1999 14:01:45 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Lib urllib.py Message-ID: <199902221901.OAA27149@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory eric:/projects/python/develop/guido/src/Lib Modified Files: urllib.py Log Message: As Des Barry points out, we need to call pathname2url(file) in two calls to addinfourl() in open_file(). From fdrake@weyr.cnri.reston.va.us Mon Feb 22 22:42:16 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 22 Feb 1999 17:42:16 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/lib liburllib.tex Message-ID: <199902222242.RAA12872@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: liburllib.tex Log Message: Incorporated updates to describe geturl() by Sjoerd Mullender . From guido@cnri.reston.va.us Tue Feb 23 00:00:11 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 22 Feb 1999 19:00:11 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Modules timemodule.c Message-ID: <199902230000.TAA27917@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Modules In directory eric:/projects/python/develop/guido/src/Modules Modified Files: timemodule.c Log Message: Patch by Tadayoshi Funaba (with some changes) to be smarter about guessing what happened when strftime() returns 0. Is it buffer overflow or was the result simply 0 bytes long? (This happens for an empty format string, or when the format string is a single %Z and the timezone is unknown.) if the buffer is at least 256 times as long as the format, assume the latter. From guido@cnri.reston.va.us Tue Feb 23 04:13:39 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 22 Feb 1999 23:13:39 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Lib/test test_fcntl.py Message-ID: <199902230413.XAA28473@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_fcntl.py Log Message: According to Jeffrey Honig, bsd/os 4.0 should be added to the list. From guido@cnri.reston.va.us Tue Feb 23 04:14:33 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 22 Feb 1999 23:14:33 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Lib posixfile.py Message-ID: <199902230414.XAA28493@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory eric:/projects/python/develop/guido/src/Lib Modified Files: posixfile.py Log Message: According to Jeffrey Honig, bsd/os 2.0 - 4.0 should be added to the list (of bsd variants that have a different lock structure). From guido@cnri.reston.va.us Tue Feb 23 15:43:18 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Tue, 23 Feb 1999 10:43:18 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src Makefile.in Message-ID: <199902231543.KAA29437@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src In directory eric:/projects/python/develop/guido/src Modified Files: Makefile.in Log Message: 1. Augment the DG/UX rule so it doesn't break the BeOS build. 2. Add $(EXE) to various occurrences of python so it will work on Cygwin with egcs (after setting EXE=.exe). These patches by Norman Vine. From guido@cnri.reston.va.us Tue Feb 23 16:11:03 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Tue, 23 Feb 1999 11:11:03 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Python bltinmodule.c Message-ID: <199902231611.LAA29569@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Python In directory eric:/projects/python/develop/guido/src/Python Modified Files: bltinmodule.c Log Message: Patch by Tim Peters to improve the range checks for range() and xrange(), especially for platforms where int and long are different sizes (so sys.maxint isn't actually the theoretical limit for the length of a list, but the largest C int is -- sys.maxint is the largest Python int, which is actually a C long). From guido@cnri.reston.va.us Tue Feb 23 16:40:56 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Tue, 23 Feb 1999 11:40:56 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Doc/ref ref3.tex Message-ID: <199902231640.LAA29692@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/ref In directory eric:/projects/python/develop/guido/Doc/ref Modified Files: ref3.tex Log Message: 1. Clarify that immutability isn't entirely the same as unchangeable value (because of immutable containers containing mutable objects). 2. Document that func_code, func_defaults and func_doc / __doc__ are now writable. From guido@cnri.reston.va.us Tue Feb 23 17:58:50 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Tue, 23 Feb 1999 12:58:50 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Lib/test test_dl.py Message-ID: <199902231758.MAA02917@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_dl.py Log Message: 1. Print the error message (carefully) when a dl.open() fails in verbose mode. 2. When no test case worked, raise ImportError instead of failing. From guido@cnri.reston.va.us Tue Feb 23 18:00:59 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Tue, 23 Feb 1999 13:00:59 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src configure.in Message-ID: <199902231800.NAA02950@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src In directory eric:/projects/python/develop/guido/src Modified Files: configure.in Log Message: Get rid of AC_CHECK_LIB(m, pow) since this is taken care of later with LIBM (from --with-libm=...); this actually broke the customizability offered by the latter option. Thanks go to Clay Spence for reporting this. From guido@cnri.reston.va.us Tue Feb 23 18:05:24 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Tue, 23 Feb 1999 13:05:24 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Modules arraymodule.c Message-ID: <199902231805.NAA02971@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Modules In directory eric:/projects/python/develop/guido/src/Modules Modified Files: arraymodule.c Log Message: Carefully check for overflow when allocating the memory for fromfile -- someone tried to pass in sys.maxint and got bitten by the bogus calculations. From guido@cnri.reston.va.us Tue Feb 23 18:07:33 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Tue, 23 Feb 1999 13:07:33 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src config.h.in Message-ID: <199902231807.NAA03371@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src In directory eric:/projects/python/develop/guido/src Modified Files: config.h.in Log Message: Now that we don't have AC_CHECK_LIB(m, pow), the HAVE_LIBM symbol disappears. It wasn't used anywhere anyway... From guido@cnri.reston.va.us Tue Feb 23 18:07:57 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Tue, 23 Feb 1999 13:07:57 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src configure Message-ID: <199902231807.NAA03392@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src In directory eric:/projects/python/develop/guido/src Modified Files: configure Log Message: # the usual From guido@cnri.reston.va.us Tue Feb 23 18:34:46 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Tue, 23 Feb 1999 13:34:46 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Modules posixmodule.c Message-ID: <199902231834.NAA03547@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: # Typo in docstring (Retrun -> Return). From fdrake@weyr.cnri.reston.va.us Tue Feb 23 23:07:51 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 23 Feb 1999 18:07:51 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/tools listmodules Message-ID: <199902232307.SAA16234@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: listmodules Log Message: Script to help identify undocumented modules. Use -h or --help for usage information. From guido@cnri.reston.va.us Tue Feb 23 23:07:54 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Tue, 23 Feb 1999 18:07:54 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Lib shutil.py Message-ID: <199902232307.SAA04703@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory eric:/projects/python/develop/guido/src/Lib Modified Files: shutil.py Log Message: Add import sys, needed by reference to sys.exc_info() in rmtree(). Discovered by Mitch Chapman. From bwarsaw@cnri.reston.va.us Wed Feb 24 00:27:15 1999 From: bwarsaw@cnri.reston.va.us (Barry A. Warsaw) Date: Tue, 23 Feb 1999 19:27:15 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libexcs.tex Message-ID: <199902240027.TAA18075@anthem.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/lib In directory anthem:/projects/python/develop/bwarsaw/python/dist/src/Doc/lib Modified Files: libexcs.tex Log Message: Document the correct class hierarchy for SystemExit. It is not an error and so it derives from Exception and not SystemError. From bwarsaw@cnri.reston.va.us Wed Feb 24 00:27:40 1999 From: bwarsaw@cnri.reston.va.us (Barry A. Warsaw) Date: Tue, 23 Feb 1999 19:27:40 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Lib exceptions.py Message-ID: <199902240027.TAA18090@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: exceptions.py Log Message: Document the correct class hierarchy for SystemExit. It is not an error and so it derives from Exception and not SystemError. The docstring was incorrect but the implementation was fine. From bwarsaw@cnri.reston.va.us Wed Feb 24 00:35:45 1999 From: bwarsaw@cnri.reston.va.us (Barry A. Warsaw) Date: Tue, 23 Feb 1999 19:35:45 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Python bltinmodule.c Message-ID: <199902240035.TAA18122@anthem.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Python In directory anthem:/projects/python/develop/bwarsaw/python/dist/src/Python Modified Files: bltinmodule.c Log Message: (initerrors): Make sure that the exception tuples ("base-classes" when string-based exceptions are used) reflect the real class hierarchy, i.e. that SystemExit derives from Exception not StandardError. From guido@cnri.reston.va.us Wed Feb 24 16:25:20 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Wed, 24 Feb 1999 11:25:20 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Lib mhlib.py Message-ID: <199902241625.LAA05562@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory eric:/projects/python/develop/guido/src/Lib Modified Files: mhlib.py Log Message: Patch by Lars Wirzenius: o the initial comment is wrong: creating messages is already implemented o Message.getbodytext: if the mail or it's part contains an empty content-transfer-encoding header, the code used to break; the change below treats an empty encoding value the same as the other types that do not need decoding o SubMessage.getbodytext was missing the decode argument; the change below adds it; I also made it unconditionally return the raw text if decoding was not desired, because my own routines needed that (and it was easier than rewriting my own routines ;-) From fdrake@weyr.cnri.reston.va.us Wed Feb 24 16:36:51 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 24 Feb 1999 11:36:51 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/tools buildindex.py Message-ID: <199902241636.LAA18787@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: buildindex.py Log Message: process_nodes(): New function. main(): Moved the node processing between input and ouptut to process_nodes(). From fdrake@weyr.cnri.reston.va.us Wed Feb 24 17:13:55 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 24 Feb 1999 12:13:55 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/html .cvsignore Message-ID: <199902241713.MAA19017@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: .cvsignore Log Message: Ignore a file called modindex.html. From fdrake@weyr.cnri.reston.va.us Wed Feb 24 17:33:09 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 24 Feb 1999 12:33:09 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/tools mkmodindex Message-ID: <199902241733.MAA19183@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: mkmodindex Log Message: Script to combine module index files. Given a list of files that look like modindex.html, create a combined modindex.html file that lists all the modules. Takes the same parameters as buildindex.py. From fdrake@weyr.cnri.reston.va.us Wed Feb 24 17:34:14 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 24 Feb 1999 12:34:14 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/html Makefile Message-ID: <199902241734.MAA19210@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: Add target for modindex.html; a combined lib+mac module index. Also built with target "all". From fdrake@weyr.cnri.reston.va.us Wed Feb 24 18:39:50 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 24 Feb 1999 13:39:50 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/tools listmodules Message-ID: <199902241839.NAA19486@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: listmodules Log Message: ignore_from_idx(): Fixed bug in regular expression. From jhylton@cnri.reston.va.us Wed Feb 24 18:42:42 1999 From: jhylton@cnri.reston.va.us (Jeremy Hylton) Date: Wed, 24 Feb 1999 13:42:42 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Lib urllib.py Message-ID: <199902241842.NAA24268@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: urllib.py Log Message: When performing a POST request, i.e. when the second argument to urlopen is used to specify form data, make sure the second argument is threaded through all of the http_error_NNN calls. This allows error handlers like the redirect and authorization handlers to properly re-start the connection. From fdrake@weyr.cnri.reston.va.us Wed Feb 24 18:49:16 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 24 Feb 1999 13:49:16 -0500 Subject: [Python-checkins] CVS: python/dist/src/Lib toaiff.py Message-ID: <199902241849.NAA19554@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory weyr:/home/fdrake/projects/python/Lib Modified Files: toaiff.py Log Message: Use sndhdr instead of the obsolete whatsound module. From bwarsaw@cnri.reston.va.us Wed Feb 24 18:54:37 1999 From: bwarsaw@cnri.reston.va.us (Barry A. Warsaw) Date: Wed, 24 Feb 1999 13:54:37 -0500 (EST) Subject: [Python-checkins] CVS: jpython/dist - New directory Message-ID: <199902241854.NAA19231@anthem.cnri.reston.va.us> Update of /projects/cvsroot/jpython/dist In directory anthem:/home/bwarsaw/projects/jpythoncvs/dist Log Message: Directory /projects/cvsroot/jpython/dist added to the repository From fdrake@weyr.cnri.reston.va.us Wed Feb 24 18:59:26 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 24 Feb 1999 13:59:26 -0500 Subject: [Python-checkins] CVS: python/dist/src/Lib whatsound.py Message-ID: <199902241859.NAA19751@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory weyr:/home/fdrake/projects/python/Lib Removed Files: whatsound.py Log Message: Moved whatsound to lib-old/, since it was declared obsolete and is documented as such. From fdrake@weyr.cnri.reston.va.us Wed Feb 24 19:57:15 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 24 Feb 1999 14:57:15 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libundoc.tex Message-ID: <199902241957.OAA19930@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: Update some of the top comments and shorten title of the first section. From fdrake@weyr.cnri.reston.va.us Wed Feb 24 22:36:46 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 24 Feb 1999 17:36:46 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libcfgparser.tex Message-ID: <199902242236.RAA20231@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: libcfgparser.tex Log Message: Added note about comments, from Christopher Petrilli. From fdrake@weyr.cnri.reston.va.us Thu Feb 25 14:24:24 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 25 Feb 1999 09:24:24 -0500 Subject: [Python-checkins] CVS: python/dist/src/Lib colorsys.py Message-ID: <199902251424.JAA21468@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory weyr:/home/fdrake/projects/python/Lib Modified Files: colorsys.py Log Message: Adjusted comment at the top to be less confusing, following Fredrik Lundh's example. Converted comment to docstring. From fdrake@weyr.cnri.reston.va.us Thu Feb 25 14:26:03 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 25 Feb 1999 09:26:03 -0500 Subject: [Python-checkins] CVS: python/dist/src/Lib colorsys.py Message-ID: <199902251426.JAA21492@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory weyr:/home/fdrake/projects/python/Lib Modified Files: colorsys.py Log Message: Oops, one more "x, y, z" to convert... From jhylton@cnri.reston.va.us Thu Feb 25 15:59:57 1999 From: jhylton@cnri.reston.va.us (Jeremy Hylton) Date: Thu, 25 Feb 1999 10:59:57 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Lib urllib.py Message-ID: <199902251559.KAA26261@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: urllib.py Log Message: pleasing the tabnanny From jhylton@cnri.reston.va.us Thu Feb 25 16:12:15 1999 From: jhylton@cnri.reston.va.us (Jeremy Hylton) Date: Thu, 25 Feb 1999 11:12:15 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Lib urllib.py Message-ID: <199902251612.LAA26300@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: urllib.py Log Message: change indentation from 8 spaces to 4 spaces From jhylton@cnri.reston.va.us Thu Feb 25 16:15:00 1999 From: jhylton@cnri.reston.va.us (Jeremy Hylton) Date: Thu, 25 Feb 1999 11:15:00 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Lib urllib.py Message-ID: <199902251615.LAA26326@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: urllib.py Log Message: http_error had the 'data is None' test backwards. don't call with the extra argument if data is None. From fdrake@weyr.cnri.reston.va.us Fri Feb 26 14:05:05 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 26 Feb 1999 09:05:05 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libos.tex Message-ID: <199902261405.JAA24228@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: libos.tex Log Message: Typo: "Availabilty" --> "Availability" Thanks to /F! From fdrake@weyr.cnri.reston.va.us Fri Feb 26 18:51:23 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 26 Feb 1999 13:51:23 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libtraceback.tex Message-ID: <199902261851.NAA28644@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: libtraceback.tex Log Message: extract_tb(): Only describe this function once. Problem reported by Jonathan Giddy . From guido@cnri.reston.va.us Mon Feb 1 15:35:16 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 1 Feb 1999 10:35:16 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Lib xmllib.py Message-ID: <199902011535.KAA05146@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory eric:/projects/python/develop/guido/src/Lib Modified Files: xmllib.py Log Message: Patch by Sjoerd Mullender for better compatibility with the version from Python 1.5.1: If after __init__ finishes no new elements variable was created, this patch will search the instance's namespace for all attributes whose name start with start_ or end_ and put their value in a new elements instance variable. From guido@cnri.reston.va.us Mon Feb 1 16:15:32 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 1 Feb 1999 11:15:32 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Modules posixmodule.c Message-ID: <199902011615.LAA05337@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: Oops, the patch for NeXT always replaced waitpid() with wait4() -- this doesn't exist everywhere, so go back to using #ifdef NeXT. From fdrake@weyr.cnri.reston.va.us Mon Feb 1 16:17:42 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 1 Feb 1999 11:17:42 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libexcs.tex Message-ID: <199902011617.LAA20608@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: libexcs.tex Log Message: OSError description: "as the by the" --> "as the" From bwarsaw@cnri.reston.va.us Mon Feb 1 17:09:02 1999 From: bwarsaw@cnri.reston.va.us (Barry A. Warsaw) Date: Mon, 1 Feb 1999 12:09:02 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Modules pcremodule.c Message-ID: <199902011709.MAA07002@anthem.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Modules In directory anthem:/projects/python/develop/bwarsaw/pristine/Modules Modified Files: pcremodule.c Log Message: PyPcre_expand(): Fixed two memory leaks, where a PyString_FromString() was appended to a list. Lists are reference count neutral, so the string must be DECREF'd. Also added some checks for the return value of PyList_Append(). Note: there are still some memory problems reported by Purify (I get two Array Bounds Reads still and an Unitialized Memory Read). Also, in scanning the code, there appears to be some potential problems where return values aren't checked. To much to attack now though. From guido@cnri.reston.va.us Mon Feb 1 19:34:55 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 1 Feb 1999 14:34:55 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Tools/idle StackViewer.py Message-ID: <199902011934.OAA05913@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Tools/idle In directory eric:/projects/python/develop/guido/src/Tools/idle Modified Files: StackViewer.py Log Message: Protect against accessing an empty stack. From guido@cnri.reston.va.us Mon Feb 1 19:35:34 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 1 Feb 1999 14:35:34 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Tools/idle Debugger.py Message-ID: <199902011935.OAA05935@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Tools/idle In directory eric:/projects/python/develop/guido/src/Tools/idle Modified Files: Debugger.py Log Message: Add canonic() function -- for brand new bdb.py feature. From fdrake@weyr.cnri.reston.va.us Mon Feb 1 20:19:39 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 1 Feb 1999 15:19:39 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/mac libmac.tex Message-ID: <199902012019.PAA23823@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/mac In directory weyr:/home/fdrake/projects/python/Doc/mac Modified Files: libmac.tex Log Message: Remove all references to posixpath; only refer to os.path. Formalize the xstat() documentation. From fdrake@weyr.cnri.reston.va.us Mon Feb 1 20:20:40 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 1 Feb 1999 15:20:40 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libposixpath.tex Message-ID: <199902012020.PAA23847@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: Make the text generic, and call it os.path instead of posixpath. From fdrake@weyr.cnri.reston.va.us Mon Feb 1 20:23:03 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 1 Feb 1999 15:23:03 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libposix.tex Message-ID: <199902012023.PAA23874@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: libposix.tex Log Message: Take out just about everything and refer the reader to the os module. From fdrake@weyr.cnri.reston.va.us Mon Feb 1 21:28:00 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 1 Feb 1999 16:28:00 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libshutil.tex Message-ID: <199902012128.QAA25006@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: libshutil.tex Log Message: Added module synopsis. From fdrake@weyr.cnri.reston.va.us Mon Feb 1 22:24:42 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 1 Feb 1999 17:24:42 -0500 Subject: [Python-checkins] CVS: python/dist/src/Modules posixmodule.c Message-ID: <199902012224.RAA25975@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Modules In directory weyr:/home/fdrake/projects/python/Modules Modified Files: posixmodule.c Log Message: spawnv, spawnve docstrings: added mode parameter; this is required! From guido@cnri.reston.va.us Mon Feb 1 23:06:19 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 1 Feb 1999 18:06:19 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Tools/idle PyShell.py Message-ID: <199902012306.SAA06353@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Tools/idle In directory eric:/projects/python/develop/guido/src/Tools/idle Modified Files: PyShell.py Log Message: Add current dir or paths of file args to sys.path. From guido@cnri.reston.va.us Mon Feb 1 23:52:33 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 1 Feb 1999 18:52:33 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Lib os.py Message-ID: <199902012352.SAA06512@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory eric:/projects/python/develop/guido/src/Lib Modified Files: os.py Log Message: Special-case _P_WAIT etc. for NT. From guido@cnri.reston.va.us Mon Feb 1 23:54:34 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 1 Feb 1999 18:54:34 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Modules posixmodule.c Message-ID: <199902012354.SAA06539@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: Add _P_WAIT etc. for NT. From guido@cnri.reston.va.us Tue Feb 2 15:14:41 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Tue, 2 Feb 1999 10:14:41 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Modules winsound.c Message-ID: <199902021514.KAA07446@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Modules In directory eric:/projects/python/develop/guido/src/Modules Added Files: winsound.c Log Message: Windows sound playing module, by Fredrik Lundh. From fdrake@weyr.cnri.reston.va.us Tue Feb 2 16:37:15 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 2 Feb 1999 11:37:15 -0500 Subject: [Python-checkins] CVS: python/dist/src/Modules posixmodule.c Message-ID: <199902021637.LAA27528@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Modules In directory weyr:/home/fdrake/projects/python/Modules Modified Files: posixmodule.c Log Message: Added documentation to the docstrings for the W*() functions that take a process exit status as a parameter. From guido@cnri.reston.va.us Tue Feb 2 17:54:40 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Tue, 2 Feb 1999 12:54:40 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Lib xmllib.py Message-ID: <199902021754.MAA07936@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory eric:/projects/python/develop/guido/src/Lib Modified Files: xmllib.py Log Message: Patch by Sjoerd Mullender to placate /F: Fix leaking of instances by removing the elements variable that we created on closing the parser. The elements variable is now created in the reset() method, so that the sequence close(); reset(); ... works. Also, add the name of the entity reference that wasn't found to the error message. From guido@cnri.reston.va.us Tue Feb 2 17:55:13 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Tue, 2 Feb 1999 12:55:13 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libxmllib.tex Message-ID: <199902021755.MAA07956@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/lib In directory eric:/projects/python/develop/guido/Doc/lib Modified Files: libxmllib.tex Log Message: Patch by Sjoerd Mullender to placate /F: Clarified (hopefully :-) the documentation of elements and attributes variables. From fdrake@weyr.cnri.reston.va.us Tue Feb 2 18:00:43 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 2 Feb 1999 13:00:43 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libexcs.tex Message-ID: <199902021800.NAA28716@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: libexcs.tex Log Message: Move \versionadded macros to end of descriptions. From fdrake@weyr.cnri.reston.va.us Tue Feb 2 18:01:47 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 2 Feb 1999 13:01:47 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/perl python.perl Message-ID: <199902021801.NAA28858@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/perl In directory weyr:/home/fdrake/projects/python/Doc/perl Modified Files: python.perl Log Message: Make \versionadded and \versionchanged less prominant -- neither bold nor a separate paragraph. From fdrake@weyr.cnri.reston.va.us Tue Feb 2 18:02:49 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 2 Feb 1999 13:02:49 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/texinputs python.sty Message-ID: <199902021802.NAA28910@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/texinputs In directory weyr:/home/fdrake/projects/python/Doc/texinputs Modified Files: python.sty Log Message: Make \versionadded and \versionchanged less prominant -- neither bold nor a separate paragraph. From fdrake@weyr.cnri.reston.va.us Tue Feb 2 18:57:13 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 2 Feb 1999 13:57:13 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/tools node2label.pl Message-ID: <199902021857.NAA29827@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: node2label.pl Log Message: This seems to fix a problem with targeting from the indexes. From fdrake@weyr.cnri.reston.va.us Tue Feb 2 18:58:34 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 2 Feb 1999 13:58:34 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libposixpath.tex Message-ID: <199902021858.NAA29852@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: Change this to be os.path. Use consistent parameter naming with the os documentation (paths always named "path" or "path1", "path2"...). From fdrake@weyr.cnri.reston.va.us Tue Feb 2 19:00:00 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 2 Feb 1999 14:00:00 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libundoc.tex Message-ID: <199902021900.NAA29890@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 posixpath, winsound. From fdrake@weyr.cnri.reston.va.us Tue Feb 2 19:00:39 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 2 Feb 1999 14:00:39 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/lib lib.tex Message-ID: <199902021900.OAA29923@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: Moved posixpath to os.path. From fdrake@weyr.cnri.reston.va.us Tue Feb 2 19:01:38 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 2 Feb 1999 14:01:38 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libre.tex Message-ID: <199902021901.OAA29947@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: libre.tex Log Message: Moved \versionadded to end of description sections. From fdrake@weyr.cnri.reston.va.us Tue Feb 2 19:02:36 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 2 Feb 1999 14:02:36 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libos.tex libposix.tex Message-ID: <199902021902.OAA29972@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: libos.tex libposix.tex Log Message: Fix the os/posix documentation issue. From fdrake@weyr.cnri.reston.va.us Tue Feb 2 19:03:10 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 2 Feb 1999 14:03:10 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc TODO Message-ID: <199902021903.OAA29995@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc In directory weyr:/home/fdrake/projects/python/Doc Modified Files: TODO Log Message: Remove three items. From guido@cnri.reston.va.us Tue Feb 2 22:15:25 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Tue, 2 Feb 1999 17:15:25 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Lib xmllib.py Message-ID: <199902022215.RAA08353@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory eric:/projects/python/develop/guido/src/Lib Modified Files: xmllib.py Log Message: Fredrik Lundh fixes Sjoerd's patch... """Sjoerd's version stores unbound methods. that's not good enough ;-) Here's an alternative implementation of fixdict.""" From guido@cnri.reston.va.us Tue Feb 2 23:41:47 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Tue, 2 Feb 1999 18:41:47 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Modules winsound.c Message-ID: <199902022341.SAA08719@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Modules In directory eric:/projects/python/develop/guido/src/Modules Removed Files: winsound.c Log Message: Never mind, this belongs in the PC subdirectory, and besides Toby Dickenson sent me a more functional (if lower level) wrapper around PlaySound. From guido@cnri.reston.va.us Wed Feb 3 16:31:45 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Wed, 3 Feb 1999 11:31:45 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Modules posixmodule.c Message-ID: <199902031631.LAA10001@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: Portability fix for [f]statvfs() return tuple: no longer return the f_fsid field, since it's not a scalar on all systems supporting this call (in particular, it's a tuple of two longs on AIX). Since it's not particularly useful, just nuke it. Adapted the doc strings too. From guido@cnri.reston.va.us Wed Feb 3 16:32:38 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Wed, 3 Feb 1999 11:32:38 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libos.tex Message-ID: <199902031632.LAA10023@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/lib In directory eric:/projects/python/develop/guido/Doc/lib Modified Files: libos.tex Log Message: Portability fix for [f]statvfs() return tuple: no longer return the f_fsid field, since it's not a scalar on all systems supporting this call (in particular, it's a tuple of two longs on AIX). Since it's not particularly useful, just nuke it. Adapted the doc strings too. From guido@cnri.reston.va.us Wed Feb 3 17:20:52 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Wed, 3 Feb 1999 12:20:52 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Lib ntpath.py Message-ID: <199902031720.MAA10184@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory eric:/projects/python/develop/guido/src/Lib Modified Files: ntpath.py Log Message: New splitdrive() that knows about UNC paths (e.g., network paths like \\host\mountpoint\dir\file). By Larry Hastings. Also cleaned up some docstrings. From guido@cnri.reston.va.us Wed Feb 3 17:21:21 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Wed, 3 Feb 1999 12:21:21 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Lib/test test_ntpath.py Message-ID: <199902031721.MAA10204@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib/test In directory eric:/projects/python/develop/guido/src/Lib/test Added Files: test_ntpath.py Log Message: New test for ntpath module From guido@cnri.reston.va.us Wed Feb 3 17:21:23 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Wed, 3 Feb 1999 12:21:23 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Lib/test/output test_ntpath Message-ID: <199902031721.MAA10217@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_ntpath Log Message: New test for ntpath module From fdrake@weyr.cnri.reston.va.us Wed Feb 3 19:24:47 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 3 Feb 1999 14:24:47 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libposixpath.tex Message-ID: <199902031924.OAA06236@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: Document splitdrive(). For all split*(), these split path *into* pairs, not split path *in* pairs. "Into" can be used for transformations, "in" is for containment. From fdrake@weyr.cnri.reston.va.us Wed Feb 3 22:31:32 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 3 Feb 1999 17:31:32 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libposixpath.tex Message-ID: <199902032231.RAA06806@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: Document sameopenfile(), samestat(). From guido@cnri.reston.va.us Thu Feb 4 14:54:08 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Thu, 4 Feb 1999 09:54:08 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Modules cPickle.c Message-ID: <199902041454.JAA11405@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Modules In directory eric:/projects/python/develop/guido/src/Modules Modified Files: cPickle.c Log Message: Jim Fulton: this fixes seg faults with bad pickles like "c". From guido@cnri.reston.va.us Thu Feb 4 22:40:44 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Thu, 4 Feb 1999 17:40:44 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/PC winsound.c config.c Message-ID: <199902042240.RAA12253@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/PC In directory eric:/projects/python/develop/guido/src/PC Modified Files: config.c Added Files: winsound.c Log Message: Add winsound -- by Toby Dickenson with permission. From fdrake@weyr.cnri.reston.va.us Fri Feb 5 18:30:52 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 5 Feb 1999 13:30:52 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/ext ext.tex Message-ID: <199902051830.NAA11201@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/ext In directory weyr:/home/fdrake/projects/python/Doc/ext Modified Files: ext.tex Log Message: Minor nit to prevent dropping a space in the HTML generation. From fdrake@weyr.cnri.reston.va.us Fri Feb 5 18:31:30 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 5 Feb 1999 13:31:30 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/perl python.perl Message-ID: <199902051831.NAA11225@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/perl In directory weyr:/home/fdrake/projects/python/Doc/perl Modified Files: python.perl Log Message: More magic to tighten up a little of the formatting. From guido@cnri.reston.va.us Fri Feb 5 19:59:31 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Fri, 5 Feb 1999 14:59:31 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Lib sunau.py Message-ID: <199902051959.OAA18085@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory eric:/projects/python/develop/guido/src/Lib Modified Files: sunau.py Log Message: Shouldn't be treating linear-8 as u-law! From fdrake@weyr.cnri.reston.va.us Fri Feb 5 20:51:02 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 5 Feb 1999 15:51:02 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/tools getpagecounts Message-ID: <199902052051.PAA22472@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: getpagecounts Log Message: Respond to suggestion from "Albert" to add document titles to the list of files. Also added total page count and a note that comments should be directed to python-docs@python.org. From guido@cnri.reston.va.us Fri Feb 5 20:55:17 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Fri, 5 Feb 1999 15:55:17 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Lib sunau.py Message-ID: <199902052055.PAA18312@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory eric:/projects/python/develop/guido/src/Lib Modified Files: sunau.py Log Message: Should open files in binary mode! Also finally get rid of some obsolete commented-out access statements. A note about the previous checkin: I believe it's correct, but I found something strange: the file Lib/test/audiotest.au in the Python distribution was evidently encoded in u-LAW format but had its encoding set to 2, i.e. linear-8. I hope that this is a mistake caused by some conversion program that produced this .au file; I just found it on a website. From guido@cnri.reston.va.us Fri Feb 5 20:57:46 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Fri, 5 Feb 1999 15:57:46 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Lib/test audiotest.au Message-ID: <199902052057.PAA18352@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: audiotest.au Log Message: The encoding type was wrong, I think. From guido@cnri.reston.va.us Fri Feb 5 22:28:18 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Fri, 5 Feb 1999 17:28:18 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Lib wave.py Message-ID: <199902052228.RAA18598@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory eric:/projects/python/develop/guido/src/Lib Modified Files: wave.py Log Message: Two important fixes: (1) on a little-endian platform, don't byteswap; (2) in _patchheader(), there was a missing self._file argument to a _write_long() call. From guido@cnri.reston.va.us Fri Feb 5 22:32:12 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Fri, 5 Feb 1999 17:32:12 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Lib wave.py Message-ID: <199902052232.RAA18637@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory eric:/projects/python/develop/guido/src/Lib Modified Files: wave.py Log Message: Ehm, when we don't need to byteswap the data, don't go through an array object at all. From guido@cnri.reston.va.us Fri Feb 5 22:34:58 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Fri, 5 Feb 1999 17:34:58 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/PC config.c Message-ID: <199902052234.RAA18660@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/PC In directory eric:/projects/python/develop/guido/src/PC Modified Files: config.c Log Message: Some weird symbol (M_I386) was used to decide whether to include the audioop module; this was no longer defined. Use MS_WINDOWS instead. (I have a feeling that this was for the WATCOM port; too bad.) From guido@cnri.reston.va.us Mon Feb 8 15:26:54 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 8 Feb 1999 10:26:54 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Lib/lib-tk Tkinter.py Message-ID: <199902081526.KAA20580@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: Put a try-except around the "image delete" call in Image.__del__ to avoid tracebacks when the root is destroyed before the image object. From guido@cnri.reston.va.us Mon Feb 8 17:03:29 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 8 Feb 1999 12:03:29 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Modules cStringIO.c Message-ID: <199902081703.MAA21488@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Modules In directory eric:/projects/python/develop/guido/src/Modules Modified Files: cStringIO.c Log Message: The writelines() function was never tested and contained numerous bugs (including a docstring saying "blah"). Fixed all this. (Please review for potential memory leaks!) From guido@cnri.reston.va.us Mon Feb 8 18:34:03 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 8 Feb 1999 13:34:03 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Lib Queue.py Message-ID: <199902081834.NAA21596@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory eric:/projects/python/develop/guido/src/Lib Modified Files: Queue.py Log Message: Tim Peters: + Implements a put_nowait method. + Adds a corresponding Queue.Full exception. + Simplifies the implementation by adding optional "block" args to get() and put(), and makes the old get_nowait() and new put_nowait() one-line redirections to get() and put(). + Uses (much) simpler logic for the nowait cases. + Regularizes the doc strings to something closer to "Guido style" . + Converts two stray tabs into spaces. + Removes confusing verbiage about the queue "not being available" from the docstrings -- never knew what that meant as a user, and after digging into the implementation still didn't know what it was trying to say. From guido@cnri.reston.va.us Mon Feb 8 18:43:15 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 8 Feb 1999 13:43:15 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libqueue.tex Message-ID: <199902081843.NAA21623@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/lib In directory eric:/projects/python/develop/guido/Doc/lib Modified Files: libqueue.tex Log Message: Update documentation to reflect changes to Queue.py by Tim Peters. From guido@cnri.reston.va.us Mon Feb 8 21:49:25 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 8 Feb 1999 16:49:25 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Modules Setup.in Message-ID: <199902082149.QAA21787@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Modules In directory eric:/projects/python/develop/guido/src/Modules Modified Files: Setup.in Log Message: The variable TESTPATH should be initialized to empty. The test code is now accessed as a package. From guido@cnri.reston.va.us Mon Feb 8 22:27:19 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 8 Feb 1999 17:27:19 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Tools/idle TODO.txt Message-ID: <199902082227.RAA21862@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Tools/idle In directory eric:/projects/python/develop/guido/src/Tools/idle Modified Files: TODO.txt Log Message: Restructured a bit. From guido@cnri.reston.va.us Mon Feb 8 22:27:50 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 8 Feb 1999 17:27:50 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Tools/idle WindowList.py Message-ID: <199902082227.RAA21881@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Tools/idle In directory eric:/projects/python/develop/guido/src/Tools/idle Modified Files: WindowList.py Log Message: Don't crash if a window no longer exists. From guido@cnri.reston.va.us Mon Feb 8 22:29:41 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 8 Feb 1999 17:29:41 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Misc ACKS Message-ID: <199902082229.RAA21907@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Misc In directory eric:/projects/python/develop/guido/src/Misc Modified Files: ACKS Log Message: Uwe Zessin. From guido@cnri.reston.va.us Mon Feb 8 22:38:28 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 8 Feb 1999 17:38:28 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Modules cPickle.c Message-ID: <199902082238.RAA21963@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Modules In directory eric:/projects/python/develop/guido/src/Modules Modified Files: cPickle.c Log Message: Fix buglet in load_put -- the test for bad readline result tested the wrong variable. From fdrake@weyr.cnri.reston.va.us Tue Feb 9 15:31:55 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 9 Feb 1999 10:31:55 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/perl python.perl Message-ID: <199902091531.KAA08778@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/perl In directory weyr:/home/fdrake/projects/python/Doc/perl Modified Files: python.perl Log Message: Back out some of the fine tuning; something in all that interacted badly in practice and botched the whole thing. Wasn't obvious when looking at the local effects (which worked), but completely broke entire pages. ;-( From fdrake@weyr.cnri.reston.va.us Tue Feb 9 16:03:33 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 9 Feb 1999 11:03:33 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/perl python.perl Message-ID: <199902091603.LAA09409@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/perl In directory weyr:/home/fdrake/projects/python/Doc/perl Modified Files: python.perl Log Message: do_cmd_maketitle(): Small nit in creating the "title page". From fdrake@weyr.cnri.reston.va.us Tue Feb 9 18:27:24 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 9 Feb 1999 13:27:24 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/icons blank.gif Message-ID: <199902091827.NAA25498@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/icons In directory weyr:/home/fdrake/projects/python/Doc/icons Added Files: blank.gif Log Message: New blank icon to match the others in size & color, with without any symbol on it. From guido@cnri.reston.va.us Tue Feb 9 18:36:54 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Tue, 9 Feb 1999 13:36:54 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Modules main.c Message-ID: <199902091836.NAA29319@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Modules In directory eric:/projects/python/develop/guido/src/Modules Modified Files: main.c Log Message: On Windows, -i shouldn't call set[v]buf(stdin, ...) because it screws up the _tkinter main loop. Not clear why; the _kbhit() call _tkinter makes probably confuses the stdio library when buffering isn't set to whatever it is by default. From guido@cnri.reston.va.us Tue Feb 9 18:40:15 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Tue, 9 Feb 1999 13:40:15 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Lib/dos-8x3 test_ntp.py configpa.py posixpat.py queue.py Message-ID: <199902091840.NAA29351@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib/dos-8x3 In directory eric:/projects/python/develop/guido/src/Lib/dos-8x3 Modified Files: configpa.py posixpat.py queue.py Added Files: test_ntp.py Log Message: The usual. From fdrake@weyr.cnri.reston.va.us Tue Feb 9 18:45:52 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 9 Feb 1999 13:45:52 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/perl l2hinit.perl Message-ID: <199902091845.NAA25977@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/perl In directory weyr:/home/fdrake/projects/python/Doc/perl Modified Files: l2hinit.perl Log Message: Change the navigation bar to be a little prettier and more consistent with the python.org style. From bwarsaw@cnri.reston.va.us Tue Feb 9 19:31:52 1999 From: bwarsaw@cnri.reston.va.us (Barry A. Warsaw) Date: Tue, 9 Feb 1999 14:31:52 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Modules posixmodule.c Message-ID: <199902091931.OAA18750@anthem.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Modules In directory anthem:/projects/python/develop/bwarsaw/python/dist/src/Modules Modified Files: posixmodule.c Log Message: Got rid of the file-global PosixError. This was redundant since it was just an alias for PyExc_OSError and the way we were doing it was causing a (small) memory leak anyway. Just use PyExc_OSError everywhere. From guido@cnri.reston.va.us Wed Feb 10 13:12:10 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Wed, 10 Feb 1999 08:12:10 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Lib statvfs.py Message-ID: <199902101312.IAA00697@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory eric:/projects/python/develop/guido/src/Lib Modified Files: statvfs.py Log Message: Patch by Steve Clift -- fix the indices now that f_fsid is no longer returned! From fdrake@weyr.cnri.reston.va.us Wed Feb 10 17:08:03 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 10 Feb 1999 12:08:03 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/tools node2label.pl Message-ID: <199902101708.MAA06152@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: node2label.pl Log Message: Revert previous change; there's a better way to do it. From fdrake@weyr.cnri.reston.va.us Wed Feb 10 17:35:43 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 10 Feb 1999 12:35:43 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/perl l2hinit.perl Message-ID: <199902101735.MAA07201@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/perl In directory weyr:/home/fdrake/projects/python/Doc/perl Modified Files: l2hinit.perl Log Message: Remove unnecessary

from top navigation bar. From fdrake@weyr.cnri.reston.va.us Wed Feb 10 21:17:06 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 10 Feb 1999 16:17:06 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/perl python.perl Message-ID: <199902102117.QAA08701@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/perl In directory weyr:/home/fdrake/projects/python/Doc/perl Modified Files: python.perl Log Message: Fix up some routines to coordinate the "indexsubitem" stuff so that the subitem text is updated correctly when each module section is processed. Print [] when we start on \declaremodule so we can more easily track progress during the library reference. From guido@cnri.reston.va.us Thu Feb 11 14:41:49 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Thu, 11 Feb 1999 09:41:49 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Lib getpass.py Message-ID: <199902111441.JAA01126@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory eric:/projects/python/develop/guido/src/Lib Modified Files: getpass.py Log Message: Mod by Jack Jansen: on Macintosh, use EasyDialogs.GetPassword if it exists. From guido@cnri.reston.va.us Fri Feb 12 14:13:13 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Fri, 12 Feb 1999 09:13:13 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Lib ConfigParser.py Message-ID: <199902121413.JAA02602@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: Fix by Chris Petrilli (to his own code) to limit the number of iterations looking for expansions to 10. From fdrake@weyr.cnri.reston.va.us Fri Feb 12 18:15:00 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 12 Feb 1999 13:15:00 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/ref ref3.tex Message-ID: <199902121815.NAA20741@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/ref In directory weyr:/home/fdrake/projects/python/Doc/ref Modified Files: ref3.tex Log Message: Documented __complex__(), made sure all the discipline names hit the index. From fdrake@weyr.cnri.reston.va.us Fri Feb 12 18:27:32 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 12 Feb 1999 13:27:32 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libstdtypes.tex Message-ID: <199902121827.NAA20833@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: libstdtypes.tex Log Message: Document .conjugate(). From fdrake@weyr.cnri.reston.va.us Fri Feb 12 19:00:39 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 12 Feb 1999 14:00:39 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/perl l2hinit.perl Message-ID: <199902121900.OAA21530@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/perl In directory weyr:/home/fdrake/projects/python/Doc/perl Modified Files: l2hinit.perl Log Message: Moved the navigation-bar background color to a variable. From fdrake@weyr.cnri.reston.va.us Fri Feb 12 19:23:18 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 12 Feb 1999 14:23:18 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/perl python.perl Message-ID: <199902121923.OAA21941@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/perl In directory weyr:/home/fdrake/projects/python/Doc/perl Modified Files: python.perl Log Message: Make table headers the same color as the navigation bars so they stand out a little better. Make sure the boxes for the last column of tables always get drawn; these are often left empty of content when used as a "Notes" column. They look a little better this way. From fdrake@weyr.cnri.reston.va.us Fri Feb 12 19:24:04 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 12 Feb 1999 14:24:04 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc Makefile.deps Message-ID: <199902121924.OAA21965@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 entry for MimeWriter module. From fdrake@weyr.cnri.reston.va.us Fri Feb 12 19:26:10 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 12 Feb 1999 14:26:10 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libmimewriter.tex lib.tex libundoc.tex Message-ID: <199902121926.OAA21993@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 libundoc.tex Added Files: libmimewriter.tex Log Message: Added section for MimeWriter, contributed by Christopher Petrilli . This spells the end of another whole section in the undoc chapter! From fdrake@weyr.cnri.reston.va.us Fri Feb 12 20:10:00 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 12 Feb 1999 15:10:00 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/html about.dat Message-ID: <199902122010.PAA22422@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: about.dat Log Message: Use the shorter form of Christopher Petrilli's email address. From fdrake@weyr.cnri.reston.va.us Fri Feb 12 20:40:10 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 12 Feb 1999 15:40:10 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/ref ref5.tex ref7.tex Message-ID: <199902122040.PAA23020@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/ref In directory weyr:/home/fdrake/projects/python/Doc/ref Modified Files: ref5.tex ref7.tex Log Message: Minor markup nits. From fdrake@weyr.cnri.reston.va.us Fri Feb 12 20:40:50 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 12 Feb 1999 15:40:50 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libcopy.tex Message-ID: <199902122040.PAA23047@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: libcopy.tex Log Message: Markup nits. From fdrake@weyr.cnri.reston.va.us Fri Feb 12 21:42:24 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 12 Feb 1999 16:42:24 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/html Makefile Message-ID: <199902122142.QAA23503@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: L2HARGS: Specify the HTML version we're producing, since this is what we generate anyway. From fdrake@weyr.cnri.reston.va.us Fri Feb 12 22:05:35 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 12 Feb 1999 17:05:35 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libstdtypes.tex Message-ID: <199902122205.RAA24067@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: libstdtypes.tex Log Message: Make sure all HTML pages generated from this section have reasonable names. Markup nits. From fdrake@weyr.cnri.reston.va.us Fri Feb 12 22:06:33 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 12 Feb 1999 17:06:33 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/perl python.perl Message-ID: <199902122206.RAA24089@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/perl In directory weyr:/home/fdrake/projects/python/Doc/perl Modified Files: python.perl Log Message: Minor fix that helps out with the index. From guido@cnri.reston.va.us Mon Feb 15 14:43:14 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 15 Feb 1999 09:43:14 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Include moduleobject.h Message-ID: <199902151443.JAA05774@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Include In directory eric:/projects/python/develop/guido/src/Include Modified Files: moduleobject.h Log Message: Add PyModule_GetFilename(). From guido@cnri.reston.va.us Mon Feb 15 14:47:19 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 15 Feb 1999 09:47:19 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Objects moduleobject.c Message-ID: <199902151447.JAA05984@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Objects In directory eric:/projects/python/develop/guido/src/Objects Modified Files: moduleobject.c Log Message: Patch by Chris Petrilli to display the origin of a module in its repr() -- either "(builtin)" or "from ''". From fdrake@weyr.cnri.reston.va.us Mon Feb 15 15:02:24 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 15 Feb 1999 10:02:24 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/texinputs boilerplate.tex Message-ID: <199902151502.KAA26877@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/texinputs In directory weyr:/home/fdrake/projects/python/Doc/texinputs Modified Files: boilerplate.tex Log Message: Set target. From fdrake@weyr.cnri.reston.va.us Mon Feb 15 15:30:47 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 15 Feb 1999 10:30:47 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/api api.tex Message-ID: <199902151530.KAA27032@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: api.tex Log Message: Markup nits. Added section on module objects; described functions in moduleobject.c. From fdrake@weyr.cnri.reston.va.us Mon Feb 15 16:20:27 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 15 Feb 1999 11:20:27 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/ext ext.tex Message-ID: <199902151620.LAA27354@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/ext In directory weyr:/home/fdrake/projects/python/Doc/ext Modified Files: ext.tex Log Message: Added section "Providing a C API for an Extension Module" by Konrad Hinsen. "\C{}" --> "C" From fdrake@weyr.cnri.reston.va.us Mon Feb 15 16:27:43 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 15 Feb 1999 11:27:43 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/tools mkhowto.sh Message-ID: <199902151627.LAA27445@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: mkhowto.sh Log Message: Added --l2h-config option to add additional initialization files for latex2html. Can be useful in setting up things like the upward external link for the top of the documents. From fdrake@weyr.cnri.reston.va.us Mon Feb 15 16:34:01 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 15 Feb 1999 11:34:01 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libposixpath.tex Message-ID: <199902151634.LAA27481@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: Added availability notes for samefile(), sameopenfile(), samestat() since these are not available on Windows. From fdrake@weyr.cnri.reston.va.us Mon Feb 15 16:50:29 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 15 Feb 1999 11:50:29 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/tools/sgmlconv Makefile Message-ID: <199902151650.LAA27529@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/tools/sgmlconv In directory weyr:/home/fdrake/projects/python/Doc/tools/sgmlconv Modified Files: Makefile Log Message: Use a common definition for $(SUBMAKE) instead of repeating everything all over the place. From fdrake@weyr.cnri.reston.va.us Mon Feb 15 19:27:09 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 15 Feb 1999 14:27:09 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/tools mkdvi.sh Message-ID: <199902151927.OAA00489@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: mkdvi.sh Log Message: Add an optional parameter to make the script run latex only once to generate an .aux file. This can make HTML generation a bit faster when print formats aren't needed. Explained parameters in a comment. From fdrake@weyr.cnri.reston.va.us Mon Feb 15 19:29:09 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 15 Feb 1999 14:29:09 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/html Makefile Message-ID: <199902151929.OAA00512@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: HTMLBASE: New variable. Make it easier to check an "installed" copy of the HTML documents using the webcheck target. When there's not a usable .aux file, use mkdvi.sh --aux instead of building the .dvi completely. This makes the most difference for the library reference. From fdrake@weyr.cnri.reston.va.us Mon Feb 15 20:15:41 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 15 Feb 1999 15:15:41 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/api api.tex Message-ID: <199902152015.PAA00967@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: api.tex Log Message: Be explicit about the reference count of the original value of the first parameter to PyString_Concat(). From fdrake@weyr.cnri.reston.va.us Mon Feb 15 21:27:26 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 15 Feb 1999 16:27:26 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/html/icons - New directory Message-ID: <199902152127.QAA01539@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/html/icons In directory weyr:/home/fdrake/projects/python/Doc/html/icons Log Message: Directory /projects/cvsroot/python/dist/src/Doc/html/icons added to the repository From fdrake@weyr.cnri.reston.va.us Mon Feb 15 21:42:48 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 15 Feb 1999 16:42:48 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/icons blank.gif contents.gif index.gif modules.gif next.gif previous.gif up.gif Message-ID: <199902152142.QAA01703@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/icons In directory weyr:/home/fdrake/projects/python/Doc/icons Removed Files: blank.gif contents.gif index.gif modules.gif next.gif previous.gif up.gif Log Message: Moved icons into the html directory to avoid pollution of the top level. From fdrake@weyr.cnri.reston.va.us Mon Feb 15 21:43:56 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 15 Feb 1999 16:43:56 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/html Makefile Message-ID: <199902152143.QAA01727@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: Remove stuff related to copying the icons directory around -- just isn't needed. From fdrake@weyr.cnri.reston.va.us Tue Feb 16 14:21:57 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 16 Feb 1999 09:21:57 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/perl l2hinit.perl Message-ID: <199902161421.JAA03286@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/perl In directory weyr:/home/fdrake/projects/python/Doc/perl Modified Files: l2hinit.perl Log Message: Adjust cellspacing attribute of the navigation bar tables to get some space between cells on all (major) browsers. From guido@cnri.reston.va.us Tue Feb 16 14:37:31 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Tue, 16 Feb 1999 09:37:31 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Modules posixmodule.c Message-ID: <199902161437.JAA08486@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: Fixed totally bogus conversion factors used in the Win32 version of os.times(). From guido@cnri.reston.va.us Tue Feb 16 15:10:13 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Tue, 16 Feb 1999 10:10:13 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Lib urllib.py Message-ID: <199902161510.KAA08851@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory eric:/projects/python/develop/guido/src/Lib Modified Files: urllib.py Log Message: In open_ftp(), check that retrlen is not None before using it in a %d format! From fdrake@weyr.cnri.reston.va.us Tue Feb 16 16:16:39 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 16 Feb 1999 11:16:39 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/html about.dat Message-ID: <199902161616.LAA07979@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: about.dat Log Message: Use the same markup for email addresses as is produced by using \email in the LaTeX sources. From fdrake@weyr.cnri.reston.va.us Tue Feb 16 17:22:34 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 16 Feb 1999 12:22:34 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/perl l2hinit.perl Message-ID: <199902161722.MAA08923@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/perl In directory weyr:/home/fdrake/projects/python/Doc/perl Modified Files: l2hinit.perl Log Message: Make navigation panels more CSS-friendly. Make sure the contents page always has the "table of child links" turned off; this wasn't being handled properly by latex2html for "howto" ("article") documents, so just do it ourselves for all document types. From fdrake@weyr.cnri.reston.va.us Tue Feb 16 17:29:44 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 16 Feb 1999 12:29:44 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/ext ext.tex Message-ID: <199902161729.MAA09223@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/ext In directory weyr:/home/fdrake/projects/python/Doc/ext Modified Files: ext.tex Log Message: Make it clear that Demo/embed/ is from the source distribution. From fdrake@weyr.cnri.reston.va.us Tue Feb 16 17:34:53 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 16 Feb 1999 12:34:53 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/ext ext.tex Message-ID: <199902161734.MAA09491@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/ext In directory weyr:/home/fdrake/projects/python/Doc/ext Modified Files: ext.tex Log Message: Small grammatical fix; missing comma. From guido@cnri.reston.va.us Tue Feb 16 17:19:40 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Tue, 16 Feb 1999 12:19:40 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Tools/modulator README Message-ID: <199902161719.MAA09314@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Tools/modulator In directory eric:/projects/python/develop/guido/src/Tools/modulator Modified Files: README Log Message: Clarify how EXAMPLE.py is to be used ("python EXAMPLE.py", not "python modulator.py EXAMPLE.py") and that it's only there in case you don't have Tkinter. From fdrake@weyr.cnri.reston.va.us Tue Feb 16 19:08:18 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 16 Feb 1999 14:08:18 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc Makefile.deps Message-ID: <199902161908.OAA10302@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 some files to the library reference. From fdrake@weyr.cnri.reston.va.us Tue Feb 16 19:18:40 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 16 Feb 1999 14:18:40 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libmsvcrt.tex libwinsound.tex windows.tex lib.tex libundoc.tex Message-ID: <199902161918.OAA10599@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 libundoc.tex Added Files: libmsvcrt.tex libwinsound.tex windows.tex Log Message: Added chapter on Windows modules, including msvcrt and winsound. From guido@cnri.reston.va.us Tue Feb 16 19:38:06 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Tue, 16 Feb 1999 14:38:06 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Modules posixmodule.c Message-ID: <199902161938.OAA09503@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: The symbols P_* (for spawn*(), MS specific) should not have a leading underscore after all, for consistency with the O_* symnbols. From guido@cnri.reston.va.us Tue Feb 16 19:40:04 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Tue, 16 Feb 1999 14:40:04 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/PC msvcrtmodule.c Message-ID: <199902161940.OAA09536@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/PC In directory eric:/projects/python/develop/guido/src/PC Modified Files: msvcrtmodule.c Log Message: Check for potential error returned by _ungetch(). From fdrake@weyr.cnri.reston.va.us Tue Feb 16 19:40:21 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 16 Feb 1999 14:40:21 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libos.tex Message-ID: <199902161940.OAA10964@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: libos.tex Log Message: Remove "_" from the P_* symbols used with the spawn*() functions. From fdrake@weyr.cnri.reston.va.us Tue Feb 16 19:41:02 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 16 Feb 1999 14:41:02 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libmsvcrt.tex Message-ID: <199902161941.OAA10996@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: libmsvcrt.tex Log Message: The _O_* constants are defined as O_* in the os module. From guido@cnri.reston.va.us Tue Feb 16 19:56:29 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Tue, 16 Feb 1999 14:56:29 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/PCbuild python15.dsp Message-ID: <199902161956.OAA09640@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/PCbuild In directory eric:/projects/python/develop/guido/src/PCbuild Modified Files: python15.dsp Log Message: Add source file winsound.c and library winmm.lib From guido@cnri.reston.va.us Tue Feb 16 20:05:37 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Tue, 16 Feb 1999 15:05:37 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Lib/dos-8x3 testntpa.py configpa.py Message-ID: <199902162005.PAA09674@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib/dos-8x3 In directory eric:/projects/python/develop/guido/src/Lib/dos-8x3 Modified Files: configpa.py Added Files: testntpa.py Log Message: The usual From fdrake@weyr.cnri.reston.va.us Tue Feb 16 20:05:44 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 16 Feb 1999 15:05:44 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/tools mkhtml.sh Message-ID: <199902162005.PAA11476@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: Make sure errors get propogated. From fdrake@weyr.cnri.reston.va.us Tue Feb 16 20:23:57 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 16 Feb 1999 15:23:57 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc Makefile Message-ID: <199902162023.PAA12005@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc In directory weyr:/home/fdrake/projects/python/Doc Modified Files: Makefile Log Message: Bump release to 1.5.2b2. From fdrake@weyr.cnri.reston.va.us Tue Feb 16 20:27:09 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 16 Feb 1999 15:27:09 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/html style.css Message-ID: <199902162027.PAA12070@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/html In directory weyr:/home/fdrake/projects/python/Doc/html Added Files: style.css Log Message: CSS style sheet for the documentation. From fdrake@weyr.cnri.reston.va.us Tue Feb 16 20:27:43 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 16 Feb 1999 15:27:43 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/perl python.perl Message-ID: <199902162027.PAA12092@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/perl In directory weyr:/home/fdrake/projects/python/Doc/perl Modified Files: python.perl Log Message: Become more stylesheet-friendly. From fdrake@weyr.cnri.reston.va.us Tue Feb 16 20:28:26 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 16 Feb 1999 15:28:26 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/tools mkhtml.sh Message-ID: <199902162028.PAA12114@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: Copy in the stylesheet after latex2html is done. From fdrake@weyr.cnri.reston.va.us Tue Feb 16 20:43:55 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 16 Feb 1999 15:43:55 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/tools mkhowto.sh Message-ID: <199902162043.PAA12702@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: mkhowto.sh Log Message: Copy in the stylesheet after latex2html is done. From fdrake@weyr.cnri.reston.va.us Tue Feb 16 21:14:18 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 16 Feb 1999 16:14:18 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/ext ext.tex Message-ID: <199902162114.QAA12869@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/ext In directory weyr:/home/fdrake/projects/python/Doc/ext Modified Files: ext.tex Log Message: Integrated notes on building extension modules on Windows, by Neil Schemenauer . Thanks, Neil! From guido@cnri.reston.va.us Tue Feb 16 21:30:19 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Tue, 16 Feb 1999 16:30:19 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Misc ACKS Message-ID: <199902162130.QAA10966@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Misc In directory eric:/projects/python/develop/guido/src/Misc Modified Files: ACKS Log Message: Finn Bock. From fdrake@weyr.cnri.reston.va.us Tue Feb 16 22:15:43 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 16 Feb 1999 17:15:43 -0500 Subject: [Python-checkins] CVS: python/dist/src/Modules xxmodule.c Message-ID: <199902162215.RAA13078@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Modules In directory weyr:/home/fdrake/projects/python/Modules Modified Files: xxmodule.c Log Message: Use the portable form of initializing the ob_type field for new types. From guido@cnri.reston.va.us Tue Feb 16 22:34:18 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Tue, 16 Feb 1999 17:34:18 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Tools/idle ScriptBinding.py Message-ID: <199902162234.RAA11144@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Tools/idle In directory eric:/projects/python/develop/guido/src/Tools/idle Modified Files: ScriptBinding.py Log Message: Only pop up the stack viewer when requested in the Debug menu. From fdrake@weyr.cnri.reston.va.us Tue Feb 16 22:51:10 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 16 Feb 1999 17:51:10 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/html about.dat Message-ID: <199902162251.RAA13414@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: about.dat Log Message: Remove all email addresses. From guido@cnri.reston.va.us Tue Feb 16 23:05:47 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Tue, 16 Feb 1999 18:05:47 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Tools/freeze hello.py Message-ID: <199902162305.SAA11272@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Tools/freeze In directory eric:/projects/python/develop/guido/src/Tools/freeze Modified Files: hello.py Log Message: # Accidentally checked in a test version of this file with a bogus # "import fooblurg" :-) From fdrake@weyr.cnri.reston.va.us Tue Feb 16 23:06:34 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 16 Feb 1999 18:06:34 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/ext ext.tex Message-ID: <199902162306.SAA13652@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/ext In directory weyr:/home/fdrake/projects/python/Doc/ext Modified Files: ext.tex Log Message: Removed old dynamic linking chapter. Integrated information on Windows DLLs from Chris Phoenix (Thanks!). Added "Acknowledgements" area to thank contributing authors. From bwarsaw@cnri.reston.va.us Tue Feb 16 23:36:23 1999 From: bwarsaw@cnri.reston.va.us (Barry A. Warsaw) Date: Tue, 16 Feb 1999 18:36:23 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Misc python-mode.el Message-ID: <199902162336.SAA29001@anthem.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Misc In directory anthem:/projects/python/develop/bwarsaw/src/Misc Modified Files: python-mode.el Log Message: (py-default-interpreter): New variable which selects whether CPython or JPython is the default interpreter to use when `C-c !' is entered for the first time. From bwarsaw@cnri.reston.va.us Tue Feb 16 23:52:50 1999 From: bwarsaw@cnri.reston.va.us (Barry A. Warsaw) Date: Tue, 16 Feb 1999 18:52:50 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Misc python-mode.el Message-ID: <199902162352.SAA29056@anthem.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Misc In directory anthem:/projects/python/develop/bwarsaw/src/Misc Modified Files: python-mode.el Log Message: (py-shell): Added optional argprompt, which will prompt for additional switches to pass into the shell process (only on initial startup). From guido@cnri.reston.va.us Wed Feb 17 16:20:11 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Wed, 17 Feb 1999 11:20:11 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Tools/idle ChangeLog Message-ID: <199902171620.LAA12020@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Tools/idle In directory eric:/projects/python/develop/guido/src/Tools/idle Added Files: ChangeLog Log Message: Oh, why not. Checking in the Emacs-generated change log. From guido@cnri.reston.va.us Wed Feb 17 17:19:38 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Wed, 17 Feb 1999 12:19:38 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Tools/idle WindowList.py Message-ID: <199902171719.MAA12371@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Tools/idle In directory eric:/projects/python/develop/guido/src/Tools/idle Modified Files: WindowList.py Log Message: Support callbacks to patch up Windows menus everywhere. From guido@cnri.reston.va.us Wed Feb 17 17:20:51 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Wed, 17 Feb 1999 12:20:51 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Tools/idle EditorWindow.py Message-ID: <199902171720.MAA12390@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Tools/idle In directory eric:/projects/python/develop/guido/src/Tools/idle Modified Files: EditorWindow.py Log Message: Fix up the Windows menu via the new callback mechanism instead of depending on menu post commands (which don't work when the menu is torn off). From fdrake@weyr.cnri.reston.va.us Wed Feb 17 17:30:55 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 17 Feb 1999 12:30:55 -0500 Subject: [Python-checkins] CVS: python/dist/src/Lib pprint.py Message-ID: <199902171730.MAA15512@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory weyr:/home/fdrake/projects/python/Lib Modified Files: pprint.py Log Message: _safe_repr(): Simplify the condition tests in the first possible return path. From guido@cnri.reston.va.us Wed Feb 17 17:34:26 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Wed, 17 Feb 1999 12:34:26 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Tools/idle WindowList.py Message-ID: <199902171734.MAA12441@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Tools/idle In directory eric:/projects/python/develop/guido/src/Tools/idle Modified Files: WindowList.py Log Message: When deleting, call the callbacks *after* deleting the window from our list! From guido@cnri.reston.va.us Wed Feb 17 17:35:00 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Wed, 17 Feb 1999 12:35:00 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Tools/idle EditorWindow.py Message-ID: <199902171735.MAA12460@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Tools/idle In directory eric:/projects/python/develop/guido/src/Tools/idle Modified Files: EditorWindow.py Log Message: After all, we don't need to call the callbacks ourselves! From fdrake@weyr.cnri.reston.va.us Wed Feb 17 17:35:56 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 17 Feb 1999 12:35:56 -0500 Subject: [Python-checkins] CVS: python/dist/src/Modules parsermodule.c Message-ID: <199902171735.MAA15573@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Modules In directory weyr:/home/fdrake/projects/python/Modules Modified Files: parsermodule.c Log Message: When the parameter to PyInt_AsLong() has already been checked with PyInt_Check(), use PyInt_AS_LONG() instead (two places). From guido@cnri.reston.va.us Wed Feb 17 17:37:12 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Wed, 17 Feb 1999 12:37:12 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Tools/idle idlever.py Message-ID: <199902171737.MAA12518@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Tools/idle In directory eric:/projects/python/develop/guido/src/Tools/idle Modified Files: idlever.py Log Message: Bump version to 0.3. From guido@cnri.reston.va.us Wed Feb 17 17:37:25 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Wed, 17 Feb 1999 12:37:25 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Tools/idle README.txt Message-ID: <199902171737.MAA12537@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Tools/idle In directory eric:/projects/python/develop/guido/src/Tools/idle Modified Files: README.txt Log Message: Bump version to 0.3. From fdrake@weyr.cnri.reston.va.us Wed Feb 17 18:12:17 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 17 Feb 1999 13:12:17 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/ext ext.tex Message-ID: <199902171812.NAA16889@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/ext In directory weyr:/home/fdrake/projects/python/Doc/ext Modified Files: ext.tex Log Message: Small updates and grammatical adjustments. Remove comment about this manual being out of date from the abstract. From guido@cnri.reston.va.us Wed Feb 17 22:47:43 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Wed, 17 Feb 1999 17:47:43 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Tools/idle NEWS.txt Message-ID: <199902172247.RAA14092@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Tools/idle In directory eric:/projects/python/develop/guido/src/Tools/idle Modified Files: NEWS.txt Log Message: News in 0.3. From fdrake@weyr.cnri.reston.va.us Wed Feb 17 23:09:08 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 17 Feb 1999 18:09:08 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/api api.tex Message-ID: <199902172309.SAA18929@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: api.tex Log Message: Updated list of standard exceptions in section 4.1. From guido@cnri.reston.va.us Wed Feb 17 23:16:47 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Wed, 17 Feb 1999 18:16:47 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Python getargs.c Message-ID: <199902172316.SAA14507@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Python In directory eric:/projects/python/develop/guido/src/Python Modified Files: getargs.c Log Message: Patch by Tommy Burnette to accept an arbitrary sequence when "(...)" is used in the format string, instead of requiring a tuple. This is in line with the general trend towards accepting arbitrary sequences. From guido@cnri.reston.va.us Wed Feb 17 23:53:37 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Wed, 17 Feb 1999 18:53:37 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/PCbuild python15.wse Message-ID: <199902172353.SAA14648@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/PCbuild In directory eric:/projects/python/develop/guido/src/PCbuild Modified Files: python15.wse Log Message: Some new stuff. Get the HTML docs via a new variable. Comment out freeze script (doesn't work at all). Add dialog to get program manager group. From fdrake@weyr.cnri.reston.va.us Thu Feb 18 03:46:12 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 17 Feb 1999 22:46:12 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libstring.tex Message-ID: <199902180346.WAA20343@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: libstring.tex Log Message: atof() description: Add information about accepting 'NaN' to produce the NaN value. From fdrake@weyr.cnri.reston.va.us Thu Feb 18 03:49:21 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 17 Feb 1999 22:49:21 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libfuncs.tex Message-ID: <199902180349.WAA20385@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: libfuncs.tex Log Message: atof() description: Add information about accepting 'NaN' to produce the NaN value. From fdrake@weyr.cnri.reston.va.us Thu Feb 18 03:50:03 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 17 Feb 1999 22:50:03 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/ext ext.tex Message-ID: <199902180350.WAA20416@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/ext In directory weyr:/home/fdrake/projects/python/Doc/ext Modified Files: ext.tex Log Message: Update note about the (...) format specifier for PyArg_ParseTuple(). From guido@cnri.reston.va.us Thu Feb 18 14:22:07 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Thu, 18 Feb 1999 09:22:07 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Tools/modulator modulator.py Message-ID: <199902181422.JAA15417@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Tools/modulator In directory eric:/projects/python/develop/guido/src/Tools/modulator Modified Files: modulator.py Log Message: Comment out confusing write call. From guido@cnri.reston.va.us Thu Feb 18 16:01:44 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Thu, 18 Feb 1999 11:01:44 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Misc ACKS Message-ID: <199902181601.LAA15572@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Misc In directory eric:/projects/python/develop/guido/src/Misc Modified Files: ACKS Log Message: Couple of new names. From guido@cnri.reston.va.us Thu Feb 18 16:02:22 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Thu, 18 Feb 1999 11:02:22 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Misc NEWS Message-ID: <199902181602.LAA15590@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Misc In directory eric:/projects/python/develop/guido/src/Misc Modified Files: NEWS Log Message: New in 1.5.2b2. From guido@cnri.reston.va.us Thu Feb 18 16:04:37 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Thu, 18 Feb 1999 11:04:37 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src README Message-ID: <199902181604.LAA15639@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src In directory eric:/projects/python/develop/guido/src Modified Files: README Log Message: Updated for 1.5.2b2 release. From fdrake@weyr.cnri.reston.va.us Thu Feb 18 16:08:38 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 18 Feb 1999 11:08:38 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libfuncs.tex libstring.tex Message-ID: <199902181608.LAA23421@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: libfuncs.tex libstring.tex Log Message: Add notes to __builtin__.float() and string.atof() that the NaN and Inf results are possible but non-portable. From fdrake@weyr.cnri.reston.va.us Thu Feb 18 16:11:13 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 18 Feb 1999 11:11:13 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/tools buildindex.py Message-ID: <199902181611.LAA23458@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: buildindex.py Log Message: Make the _rmtt regular expression deal with the new CSS-friendly changes to the HTML documentation. From fdrake@weyr.cnri.reston.va.us Thu Feb 18 16:30:18 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 18 Feb 1999 11:30:18 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/tools/sgmlconv esis2sgml.py Message-ID: <199902181630.LAA23549@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/tools/sgmlconv In directory weyr:/home/fdrake/projects/python/Doc/tools/sgmlconv Modified Files: esis2sgml.py Log Message: Some adjustments, mostly to make it more general. From fdrake@weyr.cnri.reston.va.us Thu Feb 18 16:31:06 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 18 Feb 1999 11:31:06 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/tools/sgmlconv make.rules Message-ID: <199902181631.LAA23571@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/tools/sgmlconv In directory weyr:/home/fdrake/projects/python/Doc/tools/sgmlconv Modified Files: make.rules Log Message: Minor adjustments to reflect esis2sgml.py changes. Added "esis" target to only generate the ESIS data. From fdrake@weyr.cnri.reston.va.us Thu Feb 18 16:32:23 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 18 Feb 1999 11:32:23 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/tools/sgmlconv docfixer.py Message-ID: <199902181632.LAA23598@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/tools/sgmlconv In directory weyr:/home/fdrake/projects/python/Doc/tools/sgmlconv Modified Files: docfixer.py Log Message: Mark elements that represent interactive sessions; these become elements. From fdrake@weyr.cnri.reston.va.us Thu Feb 18 20:39:06 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 18 Feb 1999 15:39:06 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc Makefile.deps Message-ID: <199902182039.PAA24881@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: More files. From fdrake@weyr.cnri.reston.va.us Thu Feb 18 20:39:46 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 18 Feb 1999 15:39:46 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libundoc.tex Message-ID: <199902182039.PAA24919@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: Remove the "Parsing Python" section. Hurray! From fdrake@weyr.cnri.reston.va.us Thu Feb 18 20:40:30 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 18 Feb 1999 15:40:30 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/lib lib.tex Message-ID: <199902182040.PAA24945@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 sections for pyclbr and tokenize. From fdrake@weyr.cnri.reston.va.us Thu Feb 18 20:51:51 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 18 Feb 1999 15:51:51 -0500 Subject: [Python-checkins] CVS: python/dist/src/Lib pyclbr.py Message-ID: <199902182051.PAA25275@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory weyr:/home/fdrake/projects/python/Lib Modified Files: pyclbr.py Log Message: Bow to font-lock at the end of the docstring, since it throws stuff off. Make sure the path paramter to readmodule() is a list before adding it with sys.path, or the addition could fail. From fdrake@weyr.cnri.reston.va.us Thu Feb 18 21:06:52 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 18 Feb 1999 16:06:52 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libpyclbr.tex libtokenize.tex Message-ID: <199902182106.QAA25556@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: libpyclbr.tex libtokenize.tex Log Message: Documentation for pyclbr and tokenize modules. From fdrake@weyr.cnri.reston.va.us Thu Feb 18 21:10:33 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 18 Feb 1999 16:10:33 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libpprint.tex Message-ID: <199902182110.QAA25586@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: libpprint.tex Log Message: Record module & documentation author. From fdrake@weyr.cnri.reston.va.us Thu Feb 18 21:13:04 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 18 Feb 1999 16:13:04 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libstringio.tex Message-ID: <199902182113.QAA25613@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: libstringio.tex Log Message: Use current approach to record documentation author. From fdrake@weyr.cnri.reston.va.us Fri Feb 19 15:30:27 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 19 Feb 1999 10:30:27 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libstdtypes.tex Message-ID: <199902191530.KAA29192@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: libstdtypes.tex Log Message: Update description of what modules "look like" when printed. From fdrake@weyr.cnri.reston.va.us Fri Feb 19 15:46:40 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 19 Feb 1999 10:46:40 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libwinsound.tex Message-ID: <199902191546.KAA29504@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: Noted that the module was added in 1.5.2. From fdrake@weyr.cnri.reston.va.us Fri Feb 19 17:54:12 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 19 Feb 1999 12:54:12 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libbisect.tex liblocale.tex libposixpath.tex libsyslog.tex libtime.tex libuser.tex libxmllib.tex Message-ID: <199902191754.MAA00637@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: libbisect.tex liblocale.tex libposixpath.tex libsyslog.tex libtime.tex libuser.tex libxmllib.tex Log Message: Fix an amazing number of typos & malformed sentences reported by Detlef Lannert . From fdrake@weyr.cnri.reston.va.us Fri Feb 19 22:33:53 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 19 Feb 1999 17:33:53 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libmarshal.tex Message-ID: <199902192233.RAA03712@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: libmarshal.tex Log Message: Shortened the short synopsis -- way too long. From fdrake@weyr.cnri.reston.va.us Fri Feb 19 22:56:10 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 19 Feb 1999 17:56:10 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libparser.tex Message-ID: <199902192256.RAA04866@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: libparser.tex Log Message: Use more current approach to recording authors. From fdrake@weyr.cnri.reston.va.us Fri Feb 19 22:59:57 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 19 Feb 1999 17:59:57 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libmimetools.tex Message-ID: <199902192259.RAA04977@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: libmimetools.tex Log Message: Shortened the short synopsis -- too long. From fdrake@weyr.cnri.reston.va.us Fri Feb 19 23:03:05 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 19 Feb 1999 18:03:05 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/html style.css Message-ID: <199902192303.SAA05011@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: style.css Log Message: Specify the sizes of H? relative to the normal font size as percentages; using "large", "x-large" makes them too big for some troublemakers. ;-) (Not specifying them at all causes some browsers to make them the same size as normal text. ;-( ) From fdrake@weyr.cnri.reston.va.us Fri Feb 19 23:05:00 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 19 Feb 1999 18:05:00 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/perl l2hinit.perl Message-ID: <199902192305.SAA05039@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/perl In directory weyr:/home/fdrake/projects/python/Doc/perl Modified Files: l2hinit.perl Log Message: do_cmd_arabic(): Override the l2h-provided version to remove that obnoxious ... markup. From fdrake@weyr.cnri.reston.va.us Fri Feb 19 23:45:07 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 19 Feb 1999 18:45:07 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libxmllib.tex Message-ID: <199902192345.SAA05369@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: libxmllib.tex Log Message: Added an index entry. From fdrake@weyr.cnri.reston.va.us Fri Feb 19 23:48:06 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 19 Feb 1999 18:48:06 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libformatter.tex Message-ID: <199902192348.SAA05396@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: libformatter.tex Log Message: Give subsections reasonable file names in the HTML. From fdrake@weyr.cnri.reston.va.us Sat Feb 20 00:14:18 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 19 Feb 1999 19:14:18 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libanydbm.tex libbinhex.tex libbisect.tex libdbm.tex libgdbm.tex libgzip.tex libkeyword.tex libselect.tex libsite.tex libsymbol.tex libtermios.tex libtoken.tex libuser.tex libwhichdb.tex libzlib.tex Message-ID: <199902200014.TAA05676@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: libanydbm.tex libbinhex.tex libbisect.tex libdbm.tex libgdbm.tex libgzip.tex libkeyword.tex libselect.tex libsite.tex libsymbol.tex libtermios.tex libtoken.tex libuser.tex libwhichdb.tex libzlib.tex Log Message: Shorten a few section titles. From fdrake@weyr.cnri.reston.va.us Sat Feb 20 04:45:48 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 19 Feb 1999 23:45:48 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libaifc.tex Message-ID: <199902200445.XAA06387@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: libaifc.tex Log Message: Shorten section title. From fdrake@weyr.cnri.reston.va.us Sat Feb 20 04:46:39 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 19 Feb 1999 23:46:39 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/lib librgbimg.tex Message-ID: <199902200446.XAA06411@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: librgbimg.tex Log Message: Shorten section title. From fdrake@weyr.cnri.reston.va.us Sat Feb 20 04:48:37 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 19 Feb 1999 23:48:37 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libcd.tex Message-ID: <199902200448.XAA06438@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: libcd.tex Log Message: Shorten section title. From fdrake@weyr.cnri.reston.va.us Sat Feb 20 04:49:45 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 19 Feb 1999 23:49:45 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libfm.tex Message-ID: <199902200449.XAA06459@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: libfm.tex Log Message: Shorten section title. From fdrake@weyr.cnri.reston.va.us Sat Feb 20 04:50:30 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 19 Feb 1999 23:50:30 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libgl.tex Message-ID: <199902200450.XAA06482@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: libgl.tex Log Message: Shorten section title. From fdrake@weyr.cnri.reston.va.us Sat Feb 20 04:51:17 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 19 Feb 1999 23:51:17 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libjpeg.tex Message-ID: <199902200451.XAA06504@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: libjpeg.tex Log Message: Shorten section title. From fdrake@weyr.cnri.reston.va.us Sat Feb 20 05:05:01 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Sat, 20 Feb 1999 00:05:01 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libmailbox.tex Message-ID: <199902200505.AAA06540@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: libmailbox.tex Log Message: Added descriptions for BabylMailbox and Maildir (Qmail) mailbox objects. From fdrake@weyr.cnri.reston.va.us Sat Feb 20 05:20:51 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Sat, 20 Feb 1999 00:20:51 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libmpz.tex Message-ID: <199902200520.AAA07016@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: libmpz.tex Log Message: Shorten section title. From fdrake@weyr.cnri.reston.va.us Mon Feb 22 13:45:12 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 22 Feb 1999 08:45:12 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libbase64.tex libmailbox.tex libmimetypes.tex libquopri.tex libuu.tex Message-ID: <199902221345.IAA09500@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: libbase64.tex libmailbox.tex libmimetypes.tex libquopri.tex libuu.tex Log Message: More reasonable section titles. From fdrake@weyr.cnri.reston.va.us Mon Feb 22 14:14:49 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 22 Feb 1999 09:14:49 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libformatter.tex Message-ID: <199902221414.JAA09648@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: libformatter.tex Log Message: Oops, used a \label twice - fix one of them. From fdrake@weyr.cnri.reston.va.us Mon Feb 22 14:26:17 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 22 Feb 1999 09:26:17 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libmailbox.tex Message-ID: <199902221426.JAA09708@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: libmailbox.tex Log Message: BabylMailbox description: Properly escape the backslashes in the string representations. From fdrake@weyr.cnri.reston.va.us Mon Feb 22 14:32:20 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 22 Feb 1999 09:32:20 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/ref ref2.tex Message-ID: <199902221432.JAA09792@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/ref In directory weyr:/home/fdrake/projects/python/Doc/ref Modified Files: ref2.tex Log Message: Revised description of blank line handling for the interpreter, based on a comment from /F. From fdrake@weyr.cnri.reston.va.us Mon Feb 22 14:37:19 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 22 Feb 1999 09:37:19 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc TODO Message-ID: <199902221437.JAA09828@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc In directory weyr:/home/fdrake/projects/python/Doc Modified Files: TODO Log Message: Noted report of missing material in the extending & embedding manual, as reported by Clay Spence . From fdrake@weyr.cnri.reston.va.us Mon Feb 22 14:48:01 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 22 Feb 1999 09:48:01 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/lib windows.tex Message-ID: <199902221448.JAA09864@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: windows.tex Log Message: Other chapter titles refer to collections of modules as "Services"; do the same here. From fdrake@weyr.cnri.reston.va.us Mon Feb 22 14:55:48 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 22 Feb 1999 09:55:48 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/ext ext.tex Message-ID: <199902221455.JAA09895@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/ext In directory weyr:/home/fdrake/projects/python/Doc/ext Modified Files: ext.tex Log Message: Removed "This will be discussed later." where it's not. Reported by Clay Spence ; see entry in ../TODO. From guido@cnri.reston.va.us Mon Feb 22 15:19:50 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 22 Feb 1999 10:19:50 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Lib/lib-old poly.py Message-ID: <199902221519.KAA24084@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib/lib-old In directory eric:/projects/python/develop/guido/src/Lib/lib-old Modified Files: poly.py Log Message: Dang. Even though this is obsolete code, somebody found a bug, and I fix it. Oh well. From guido@cnri.reston.va.us Mon Feb 22 15:29:17 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 22 Feb 1999 10:29:17 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Modules posixmodule.c Message-ID: <199902221529.KAA24164@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: The docstring for ttyname(..) claims a second "mode" argument. The actual code does not allow such an argument. (Finn Bock.) From guido@cnri.reston.va.us Mon Feb 22 15:38:48 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 22 Feb 1999 10:38:48 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Lib urlparse.py Message-ID: <199902221538.KAA24213@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory eric:/projects/python/develop/guido/src/Lib Modified Files: urlparse.py Log Message: Steve Clift pointed out that 'file' allows a netloc. From fdrake@weyr.cnri.reston.va.us Mon Feb 22 15:39:00 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 22 Feb 1999 10:39:00 -0500 Subject: [Python-checkins] CVS: python/dist/src/Misc NEWS Message-ID: <199902221539.KAA10221@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Misc In directory weyr:/home/fdrake/projects/python/Misc Modified Files: NEWS Log Message: Typo: "apparentlt" --> "apparently" From guido@cnri.reston.va.us Mon Feb 22 15:40:36 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 22 Feb 1999 10:40:36 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Lib os.py Message-ID: <199902221540.KAA24246@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory eric:/projects/python/develop/guido/src/Lib Modified Files: os.py Log Message: As Finn Bock points out, _P_WAIT etc. don't have a leading underscore so they don't need to be treated specially here. From fdrake@weyr.cnri.reston.va.us Mon Feb 22 15:58:11 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 22 Feb 1999 10:58:11 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/info README python.dir Message-ID: <199902221558.KAA10391@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/info In directory weyr:/home/fdrake/projects/python/Doc/info Modified Files: README python.dir Log Message: Reflect the released version. From guido@cnri.reston.va.us Mon Feb 22 16:18:46 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 22 Feb 1999 11:18:46 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Modules stropmodule.c Message-ID: <199902221618.LAA26139@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Modules In directory eric:/projects/python/develop/guido/src/Modules Modified Files: stropmodule.c Log Message: In atoi(), don't use isxdigit() to test whether the last character converted was a "digit" -- use isalnum(). This test is there only to guard against "+" or "-" being interpreted as a valid int literal. Reported by Takahiro Nakayama. From guido@cnri.reston.va.us Mon Feb 22 16:19:53 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 22 Feb 1999 11:19:53 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Modules timemodule.c Message-ID: <199902221619.LAA26157@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Modules In directory eric:/projects/python/develop/guido/src/Modules Modified Files: timemodule.c Log Message: We don't support leap seconds, so the seconds field of a time 9-tuple should be in the range [0-59]. Noted by Tadayoshi Funaba. From fdrake@weyr.cnri.reston.va.us Mon Feb 22 17:12:43 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 22 Feb 1999 12:12:43 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libcfgparser.tex Message-ID: <199902221712.MAA10859@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: libcfgparser.tex Log Message: Refer to the right RFC in the intro. From guido@cnri.reston.va.us Mon Feb 22 18:11:20 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 22 Feb 1999 13:11:20 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Modules Setup.in Message-ID: <199902221811.NAA26996@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Modules In directory eric:/projects/python/develop/guido/src/Modules Modified Files: Setup.in Log Message: Document *static* -- in two places! From fdrake@weyr.cnri.reston.va.us Mon Feb 22 18:21:19 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 22 Feb 1999 13:21:19 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/ext ext.tex Message-ID: <199902221821.NAA11530@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/ext In directory weyr:/home/fdrake/projects/python/Doc/ext Modified Files: ext.tex Log Message: Added note about *static* after description of *shared*. From guido@cnri.reston.va.us Mon Feb 22 19:01:45 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 22 Feb 1999 14:01:45 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Lib urllib.py Message-ID: <199902221901.OAA27149@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory eric:/projects/python/develop/guido/src/Lib Modified Files: urllib.py Log Message: As Des Barry points out, we need to call pathname2url(file) in two calls to addinfourl() in open_file(). From fdrake@weyr.cnri.reston.va.us Mon Feb 22 22:42:16 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 22 Feb 1999 17:42:16 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/lib liburllib.tex Message-ID: <199902222242.RAA12872@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: liburllib.tex Log Message: Incorporated updates to describe geturl() by Sjoerd Mullender . From guido@cnri.reston.va.us Tue Feb 23 00:00:11 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 22 Feb 1999 19:00:11 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Modules timemodule.c Message-ID: <199902230000.TAA27917@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Modules In directory eric:/projects/python/develop/guido/src/Modules Modified Files: timemodule.c Log Message: Patch by Tadayoshi Funaba (with some changes) to be smarter about guessing what happened when strftime() returns 0. Is it buffer overflow or was the result simply 0 bytes long? (This happens for an empty format string, or when the format string is a single %Z and the timezone is unknown.) if the buffer is at least 256 times as long as the format, assume the latter. From guido@cnri.reston.va.us Tue Feb 23 04:13:39 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 22 Feb 1999 23:13:39 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Lib/test test_fcntl.py Message-ID: <199902230413.XAA28473@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_fcntl.py Log Message: According to Jeffrey Honig, bsd/os 4.0 should be added to the list. From guido@cnri.reston.va.us Tue Feb 23 04:14:33 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 22 Feb 1999 23:14:33 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Lib posixfile.py Message-ID: <199902230414.XAA28493@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory eric:/projects/python/develop/guido/src/Lib Modified Files: posixfile.py Log Message: According to Jeffrey Honig, bsd/os 2.0 - 4.0 should be added to the list (of bsd variants that have a different lock structure). From guido@cnri.reston.va.us Tue Feb 23 15:43:18 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Tue, 23 Feb 1999 10:43:18 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src Makefile.in Message-ID: <199902231543.KAA29437@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src In directory eric:/projects/python/develop/guido/src Modified Files: Makefile.in Log Message: 1. Augment the DG/UX rule so it doesn't break the BeOS build. 2. Add $(EXE) to various occurrences of python so it will work on Cygwin with egcs (after setting EXE=.exe). These patches by Norman Vine. From guido@cnri.reston.va.us Tue Feb 23 16:11:03 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Tue, 23 Feb 1999 11:11:03 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Python bltinmodule.c Message-ID: <199902231611.LAA29569@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Python In directory eric:/projects/python/develop/guido/src/Python Modified Files: bltinmodule.c Log Message: Patch by Tim Peters to improve the range checks for range() and xrange(), especially for platforms where int and long are different sizes (so sys.maxint isn't actually the theoretical limit for the length of a list, but the largest C int is -- sys.maxint is the largest Python int, which is actually a C long). From guido@cnri.reston.va.us Tue Feb 23 16:40:56 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Tue, 23 Feb 1999 11:40:56 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Doc/ref ref3.tex Message-ID: <199902231640.LAA29692@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/ref In directory eric:/projects/python/develop/guido/Doc/ref Modified Files: ref3.tex Log Message: 1. Clarify that immutability isn't entirely the same as unchangeable value (because of immutable containers containing mutable objects). 2. Document that func_code, func_defaults and func_doc / __doc__ are now writable. From guido@cnri.reston.va.us Tue Feb 23 17:58:50 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Tue, 23 Feb 1999 12:58:50 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Lib/test test_dl.py Message-ID: <199902231758.MAA02917@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_dl.py Log Message: 1. Print the error message (carefully) when a dl.open() fails in verbose mode. 2. When no test case worked, raise ImportError instead of failing. From guido@cnri.reston.va.us Tue Feb 23 18:00:59 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Tue, 23 Feb 1999 13:00:59 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src configure.in Message-ID: <199902231800.NAA02950@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src In directory eric:/projects/python/develop/guido/src Modified Files: configure.in Log Message: Get rid of AC_CHECK_LIB(m, pow) since this is taken care of later with LIBM (from --with-libm=...); this actually broke the customizability offered by the latter option. Thanks go to Clay Spence for reporting this. From guido@cnri.reston.va.us Tue Feb 23 18:05:24 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Tue, 23 Feb 1999 13:05:24 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Modules arraymodule.c Message-ID: <199902231805.NAA02971@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Modules In directory eric:/projects/python/develop/guido/src/Modules Modified Files: arraymodule.c Log Message: Carefully check for overflow when allocating the memory for fromfile -- someone tried to pass in sys.maxint and got bitten by the bogus calculations. From guido@cnri.reston.va.us Tue Feb 23 18:07:33 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Tue, 23 Feb 1999 13:07:33 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src config.h.in Message-ID: <199902231807.NAA03371@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src In directory eric:/projects/python/develop/guido/src Modified Files: config.h.in Log Message: Now that we don't have AC_CHECK_LIB(m, pow), the HAVE_LIBM symbol disappears. It wasn't used anywhere anyway... From guido@cnri.reston.va.us Tue Feb 23 18:07:57 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Tue, 23 Feb 1999 13:07:57 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src configure Message-ID: <199902231807.NAA03392@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src In directory eric:/projects/python/develop/guido/src Modified Files: configure Log Message: # the usual From guido@cnri.reston.va.us Tue Feb 23 18:34:46 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Tue, 23 Feb 1999 13:34:46 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Modules posixmodule.c Message-ID: <199902231834.NAA03547@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: # Typo in docstring (Retrun -> Return). From fdrake@weyr.cnri.reston.va.us Tue Feb 23 23:07:51 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 23 Feb 1999 18:07:51 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/tools listmodules Message-ID: <199902232307.SAA16234@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: listmodules Log Message: Script to help identify undocumented modules. Use -h or --help for usage information. From guido@cnri.reston.va.us Tue Feb 23 23:07:54 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Tue, 23 Feb 1999 18:07:54 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Lib shutil.py Message-ID: <199902232307.SAA04703@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory eric:/projects/python/develop/guido/src/Lib Modified Files: shutil.py Log Message: Add import sys, needed by reference to sys.exc_info() in rmtree(). Discovered by Mitch Chapman. From bwarsaw@cnri.reston.va.us Wed Feb 24 00:27:15 1999 From: bwarsaw@cnri.reston.va.us (Barry A. Warsaw) Date: Tue, 23 Feb 1999 19:27:15 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libexcs.tex Message-ID: <199902240027.TAA18075@anthem.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/lib In directory anthem:/projects/python/develop/bwarsaw/python/dist/src/Doc/lib Modified Files: libexcs.tex Log Message: Document the correct class hierarchy for SystemExit. It is not an error and so it derives from Exception and not SystemError. From bwarsaw@cnri.reston.va.us Wed Feb 24 00:27:40 1999 From: bwarsaw@cnri.reston.va.us (Barry A. Warsaw) Date: Tue, 23 Feb 1999 19:27:40 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Lib exceptions.py Message-ID: <199902240027.TAA18090@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: exceptions.py Log Message: Document the correct class hierarchy for SystemExit. It is not an error and so it derives from Exception and not SystemError. The docstring was incorrect but the implementation was fine. From bwarsaw@cnri.reston.va.us Wed Feb 24 00:35:45 1999 From: bwarsaw@cnri.reston.va.us (Barry A. Warsaw) Date: Tue, 23 Feb 1999 19:35:45 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Python bltinmodule.c Message-ID: <199902240035.TAA18122@anthem.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Python In directory anthem:/projects/python/develop/bwarsaw/python/dist/src/Python Modified Files: bltinmodule.c Log Message: (initerrors): Make sure that the exception tuples ("base-classes" when string-based exceptions are used) reflect the real class hierarchy, i.e. that SystemExit derives from Exception not StandardError. From guido@cnri.reston.va.us Wed Feb 24 16:25:20 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Wed, 24 Feb 1999 11:25:20 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Lib mhlib.py Message-ID: <199902241625.LAA05562@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory eric:/projects/python/develop/guido/src/Lib Modified Files: mhlib.py Log Message: Patch by Lars Wirzenius: o the initial comment is wrong: creating messages is already implemented o Message.getbodytext: if the mail or it's part contains an empty content-transfer-encoding header, the code used to break; the change below treats an empty encoding value the same as the other types that do not need decoding o SubMessage.getbodytext was missing the decode argument; the change below adds it; I also made it unconditionally return the raw text if decoding was not desired, because my own routines needed that (and it was easier than rewriting my own routines ;-) From fdrake@weyr.cnri.reston.va.us Wed Feb 24 16:36:51 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 24 Feb 1999 11:36:51 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/tools buildindex.py Message-ID: <199902241636.LAA18787@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: buildindex.py Log Message: process_nodes(): New function. main(): Moved the node processing between input and ouptut to process_nodes(). From fdrake@weyr.cnri.reston.va.us Wed Feb 24 17:13:55 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 24 Feb 1999 12:13:55 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/html .cvsignore Message-ID: <199902241713.MAA19017@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: .cvsignore Log Message: Ignore a file called modindex.html. From fdrake@weyr.cnri.reston.va.us Wed Feb 24 17:33:09 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 24 Feb 1999 12:33:09 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/tools mkmodindex Message-ID: <199902241733.MAA19183@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: mkmodindex Log Message: Script to combine module index files. Given a list of files that look like modindex.html, create a combined modindex.html file that lists all the modules. Takes the same parameters as buildindex.py. From fdrake@weyr.cnri.reston.va.us Wed Feb 24 17:34:14 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 24 Feb 1999 12:34:14 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/html Makefile Message-ID: <199902241734.MAA19210@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: Add target for modindex.html; a combined lib+mac module index. Also built with target "all". From fdrake@weyr.cnri.reston.va.us Wed Feb 24 18:39:50 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 24 Feb 1999 13:39:50 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/tools listmodules Message-ID: <199902241839.NAA19486@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: listmodules Log Message: ignore_from_idx(): Fixed bug in regular expression. From jhylton@cnri.reston.va.us Wed Feb 24 18:42:42 1999 From: jhylton@cnri.reston.va.us (Jeremy Hylton) Date: Wed, 24 Feb 1999 13:42:42 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Lib urllib.py Message-ID: <199902241842.NAA24268@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: urllib.py Log Message: When performing a POST request, i.e. when the second argument to urlopen is used to specify form data, make sure the second argument is threaded through all of the http_error_NNN calls. This allows error handlers like the redirect and authorization handlers to properly re-start the connection. From fdrake@weyr.cnri.reston.va.us Wed Feb 24 18:49:16 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 24 Feb 1999 13:49:16 -0500 Subject: [Python-checkins] CVS: python/dist/src/Lib toaiff.py Message-ID: <199902241849.NAA19554@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory weyr:/home/fdrake/projects/python/Lib Modified Files: toaiff.py Log Message: Use sndhdr instead of the obsolete whatsound module. From bwarsaw@cnri.reston.va.us Wed Feb 24 18:54:37 1999 From: bwarsaw@cnri.reston.va.us (Barry A. Warsaw) Date: Wed, 24 Feb 1999 13:54:37 -0500 (EST) Subject: [Python-checkins] CVS: jpython/dist - New directory Message-ID: <199902241854.NAA19231@anthem.cnri.reston.va.us> Update of /projects/cvsroot/jpython/dist In directory anthem:/home/bwarsaw/projects/jpythoncvs/dist Log Message: Directory /projects/cvsroot/jpython/dist added to the repository From fdrake@weyr.cnri.reston.va.us Wed Feb 24 18:59:26 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 24 Feb 1999 13:59:26 -0500 Subject: [Python-checkins] CVS: python/dist/src/Lib whatsound.py Message-ID: <199902241859.NAA19751@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory weyr:/home/fdrake/projects/python/Lib Removed Files: whatsound.py Log Message: Moved whatsound to lib-old/, since it was declared obsolete and is documented as such. From fdrake@weyr.cnri.reston.va.us Wed Feb 24 19:57:15 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 24 Feb 1999 14:57:15 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libundoc.tex Message-ID: <199902241957.OAA19930@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: Update some of the top comments and shorten title of the first section. From fdrake@weyr.cnri.reston.va.us Wed Feb 24 22:36:46 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 24 Feb 1999 17:36:46 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libcfgparser.tex Message-ID: <199902242236.RAA20231@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: libcfgparser.tex Log Message: Added note about comments, from Christopher Petrilli. From fdrake@weyr.cnri.reston.va.us Thu Feb 25 14:24:24 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 25 Feb 1999 09:24:24 -0500 Subject: [Python-checkins] CVS: python/dist/src/Lib colorsys.py Message-ID: <199902251424.JAA21468@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory weyr:/home/fdrake/projects/python/Lib Modified Files: colorsys.py Log Message: Adjusted comment at the top to be less confusing, following Fredrik Lundh's example. Converted comment to docstring. From fdrake@weyr.cnri.reston.va.us Thu Feb 25 14:26:03 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 25 Feb 1999 09:26:03 -0500 Subject: [Python-checkins] CVS: python/dist/src/Lib colorsys.py Message-ID: <199902251426.JAA21492@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory weyr:/home/fdrake/projects/python/Lib Modified Files: colorsys.py Log Message: Oops, one more "x, y, z" to convert... From jhylton@cnri.reston.va.us Thu Feb 25 15:59:57 1999 From: jhylton@cnri.reston.va.us (Jeremy Hylton) Date: Thu, 25 Feb 1999 10:59:57 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Lib urllib.py Message-ID: <199902251559.KAA26261@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: urllib.py Log Message: pleasing the tabnanny From jhylton@cnri.reston.va.us Thu Feb 25 16:12:15 1999 From: jhylton@cnri.reston.va.us (Jeremy Hylton) Date: Thu, 25 Feb 1999 11:12:15 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Lib urllib.py Message-ID: <199902251612.LAA26300@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: urllib.py Log Message: change indentation from 8 spaces to 4 spaces From jhylton@cnri.reston.va.us Thu Feb 25 16:15:00 1999 From: jhylton@cnri.reston.va.us (Jeremy Hylton) Date: Thu, 25 Feb 1999 11:15:00 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Lib urllib.py Message-ID: <199902251615.LAA26326@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: urllib.py Log Message: http_error had the 'data is None' test backwards. don't call with the extra argument if data is None. From fdrake@weyr.cnri.reston.va.us Fri Feb 26 14:05:05 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 26 Feb 1999 09:05:05 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libos.tex Message-ID: <199902261405.JAA24228@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: libos.tex Log Message: Typo: "Availabilty" --> "Availability" Thanks to /F! From fdrake@weyr.cnri.reston.va.us Fri Feb 26 18:51:23 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 26 Feb 1999 13:51:23 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libtraceback.tex Message-ID: <199902261851.NAA28644@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: libtraceback.tex Log Message: extract_tb(): Only describe this function once. Problem reported by Jonathan Giddy .