From fdrake@weyr.cnri.reston.va.us Mon Aug 2 15:13:12 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 2 Aug 1999 10:13:12 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib librlcompleter.tex Message-ID: <199908021413.KAA08449@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: librlcompleter.tex Log Message: Fixed hyperlink references to the __builtin__ and __main__ modules; error reported by Dale Nagata . From fdrake@weyr.cnri.reston.va.us Mon Aug 2 15:30:53 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 2 Aug 1999 10:30:53 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libparser.tex Message-ID: <199908021430.KAA08560@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: Markup nits. Adjust examples to use the object interface instead of the function interface. From fdrake@weyr.cnri.reston.va.us Mon Aug 2 15:32:12 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 2 Aug 1999 10:32:12 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/tools/sgmlconv conversion.xml Message-ID: <199908021432.KAA08586@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: conversion.xml Log Message: A few small improvements to the conversion. From fdrake@weyr.cnri.reston.va.us Mon Aug 2 15:32:46 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 2 Aug 1999 10:32:46 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/tools/sgmlconv fixgenents.sh Message-ID: <199908021432.KAA08608@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: fixgenents.sh Log Message: This doesn't need to do nearly as much for the new conversion, so simplify. From fdrake@weyr.cnri.reston.va.us Mon Aug 2 15:35:26 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 2 Aug 1999 10:35:26 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/tools/sgmlconv latex2esis.py Message-ID: <199908021435.KAA08640@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: latex2esis.py Log Message: Mostly minor changes. Removed some obsolete commented-out code. Merged BaseConversion into Conversion since there's only one conversion process now. Remove push/pop of output stream; it's no longer needed. From fdrake@weyr.cnri.reston.va.us Mon Aug 2 15:46:16 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 2 Aug 1999 10:46:16 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/tools/sgmlconv docfixer.py Message-ID: <199908021446.KAA08692@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: bwrite(), ewrite(): Helpers for diagnostic output; essentially the same as sys.stderr.write(), but bwrite() will make it bold if stderr is a tty (for visibility). Use these everywhere instead of accessing sys.stderr.write() directly. find_all_child_elements(): Find all elements by type name that are immediate children of another. cleanup_synopses(): Receive both the document and fragment objects as parameters; if only the document is passed, synopsis information is never found since it's in the fragment! build_para(): Add a chunk of code to ensure that a newline always follows the end-tag. Not really important, but makes presentation consistent for authoring/ maintenance. fixup_bifuncindexes_chunk(): Use find_all_child_elements() instead of find_all_elements() so we don't work with too many levels at once; that could cause DOM exceptions with the .removeChild() method. From fdrake@weyr.cnri.reston.va.us Mon Aug 2 21:19:20 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 2 Aug 1999 16:19:20 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/tools mksourcepkg Message-ID: <199908022019.QAA11173@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: mksourcepkg Log Message: Re-implementation of mktarball.sh as a more portable Python script; with a more descriptive name. Allow creation of multiple archive formats with a single pass; useful in this case since it uses a fresh export/checkout from CVS to ensure that the tree is "clean" (no build turds, saved files, &c). Use --all to create all supported formats. From fdrake@weyr.cnri.reston.va.us Mon Aug 2 21:19:43 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 2 Aug 1999 16:19:43 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/tools mktarball.sh Message-ID: <199908022019.QAA11189@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/tools In directory weyr:/home/fdrake/projects/python/Doc/tools Removed Files: mktarball.sh Log Message: Remove obsolete version of script. From fdrake@weyr.cnri.reston.va.us Mon Aug 2 21:20:15 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 2 Aug 1999 16:20:15 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc Makefile Message-ID: <199908022020.QAA11218@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: Use the mksourcepgk script instead of mktarball.sh. From guido@cnri.reston.va.us Mon Aug 2 21:49:37 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 2 Aug 1999 16:49:37 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/api api.tex Message-ID: <199908022049.QAA18979@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/api In directory eric:/projects/python/develop/guido/Doc/api Modified Files: api.tex Log Message: Removed PyMapping_Clear() -- it was wishful thinking and serves no great purpose. From fdrake@weyr.cnri.reston.va.us Tue Aug 3 16:27:39 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 3 Aug 1999 11:27:39 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/tools/sgmlconv conversion.xml Message-ID: <199908031527.LAA15678@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: conversion.xml Log Message: The new conversion engine supports more of the table re-writing than the old one, so use it. From fdrake@weyr.cnri.reston.va.us Tue Aug 3 16:32:49 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 3 Aug 1999 11:32:49 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/tools/sgmlconv docfixer.py Message-ID: <199908031532.LAA15708@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: remap_element_names(): Only used for things that the new conversion engine in latex2esis.py can do, so discard it. paragraph detection & markup: Handle some of the list-like environments properly, picking up paragraphs inside list items. (Only changed a few element-sets used for recognition.) fixup_refmodindexes_chunk(): Use the right attribute to determine the module a element is referring to. convert(): Don't call remap_element_names(); it was removed. From fdrake@weyr.cnri.reston.va.us Tue Aug 3 18:54:40 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 3 Aug 1999 13:54:40 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/tools getpagecounts Message-ID: <199908031754.NAA18741@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: Re-write in Python for portability. About 30% slower, but who cares?! From guido@cnri.reston.va.us Tue Aug 3 20:41:11 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Tue, 3 Aug 1999 15:41:11 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Modules posixmodule.c Message-ID: <199908031941.PAA21201@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: It turns out that modifying the environment strings is not safe. Treat them as read-only, and make a copy as appropriately. This was first reported by Bill Janssend and later by Craig Rowland and Ron Sedlmeyer. This fix is mine. From guido@cnri.reston.va.us Tue Aug 3 22:52:30 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Tue, 3 Aug 1999 17:52:30 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libstat.tex Message-ID: <199908032152.RAA21662@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: libstat.tex Log Message: Change the directory tree walking example to use clearer variable names, some suggested by Joe Ellsworth. From fdrake@weyr.cnri.reston.va.us Wed Aug 4 14:08:20 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 4 Aug 1999 09:08:20 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Objects bufferobject.c Message-ID: <199908041308.JAA26268@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Objects In directory weyr:/home/fdrake/projects/python/Objects Modified Files: bufferobject.c Log Message: PyBuffer_New(): Raise ValueError if size is negative (the other constructors didn't miss this). Raise MemoryError if malloc() fails, instead of just returning NULL. From fdrake@weyr.cnri.reston.va.us Wed Aug 4 14:13:26 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 4 Aug 1999 09:13:26 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/api api.tex Message-ID: <199908041313.JAA26344@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: Started documentation on buffer objects & types. Very preliminary. Greg Stein: Please help with this; it's your baby! From guido@cnri.reston.va.us Wed Aug 4 19:00:13 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Wed, 4 Aug 1999 14:00:13 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Python importdl.c Message-ID: <199908041800.OAA23777@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Python In directory eric:/projects/python/develop/guido/src/Python Modified Files: importdl.c Log Message: Vladimir Marangozov fixes an AIX-specific problem, writing: """ Following up Robin Dunn's troubles with freeze, here's a patch that fixes an oddity regarding the import logic of shared modules on AIX. Symbol resolution of shared modules is now handled properly for the cases when the python library is linked to a binary with an arbitrary name. This includes the standard python[version] executable, but also applications that are embedding the python core (i.e. linked with libpython[version].a, the latter being static or shared). """ From fdrake@weyr.cnri.reston.va.us Thu Aug 5 14:41:05 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 5 Aug 1999 09:41:05 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libsocket.tex Message-ID: <199908051341.JAA29971@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: libsocket.tex Log Message: Add index entry "I/O control, buffering" for makefile(). From fdrake@weyr.cnri.reston.va.us Thu Aug 5 14:41:32 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 5 Aug 1999 09:41:32 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libos.tex Message-ID: <199908051341.JAA29989@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: Add index entry "I/O control, buffering" for fdopen(). From fdrake@weyr.cnri.reston.va.us Thu Aug 5 14:43:08 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 5 Aug 1999 09:43:08 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libfuncs.tex Message-ID: <199908051343.JAA00022@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: Add index entries for open(): buffer size, I/O I/O control, buffering line-buffered I/O unbuffered I/O From guido@cnri.reston.va.us Sat Aug 7 15:01:06 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Sat, 7 Aug 1999 10:01:06 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Demo/sockets mcast.py Message-ID: <199908071401.KAA27207@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Demo/sockets In directory eric:/projects/python/develop/guido/src/Demo/sockets Modified Files: mcast.py Log Message: Ofir Reichenberg suggested to apply htonl() to grpaddr in openmcastsock(). Also got rid of unnecessary use of eval() and regsub.gsub(). From guido@cnri.reston.va.us Mon Aug 9 15:40:40 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 9 Aug 1999 10:40:40 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Modules socketmodule.c Message-ID: <199908091440.KAA29143@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Modules In directory eric:/projects/python/develop/guido/src/Modules Modified Files: socketmodule.c Log Message: Patch by Marc-Andre Lemburg to add a bunch more symbols. From fdrake@weyr.cnri.reston.va.us Mon Aug 9 18:05:15 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 9 Aug 1999 13:05:15 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libstdtypes.tex Message-ID: <199908091705.NAA17078@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: In note mentioning [].remove()'s exception, tell what exception is raised. Prompted by Barry's whining. ;-0 From akuchlin@cnri.reston.va.us Tue Aug 10 14:19:31 1999 From: akuchlin@cnri.reston.va.us (Andrew M. Kuchling) Date: Tue, 10 Aug 1999 09:19:31 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Lib gzip.py Message-ID: <199908101319.JAA03646@amarok.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory amarok:/home/akuchlin/src/Python-1.5/Lib Modified Files: gzip.py Log Message: Added __del__ method to GzipFile class that will flush and close the object, if required. From bwarsaw@cnri.reston.va.us Tue Aug 10 22:49:00 1999 From: bwarsaw@cnri.reston.va.us (Barry A. Warsaw) Date: Tue, 10 Aug 1999 17:49:00 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Misc python-mode.el Message-ID: <199908102149.RAA13272@anthem.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Misc In directory anthem:/projects/python/develop/bwarsaw/python/dist/src/Misc Modified Files: python-mode.el Log Message: (py-shell): Set the default shell if not set yet. It's sometimes convenient to call py-shell before the first Python file has been visited. From guido@cnri.reston.va.us Wed Aug 11 02:54:06 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Tue, 10 Aug 1999 21:54:06 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Lib shelve.py Message-ID: <199908110154.VAA03813@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory eric:/projects/python/develop/guido/src/Lib Modified Files: shelve.py Log Message: Patch by Paul Sokolovsky to support the get() method. From guido@cnri.reston.va.us Wed Aug 11 03:01:01 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Tue, 10 Aug 1999 22:01:01 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Tools/idle TreeWidget.py Message-ID: <199908110201.WAA03864@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: TreeWidget.py Log Message: Patch inspired by Moshe Zadka to search for the Icons directory in the same directory as __file__, rather than searching for it along sys.path. This works better when idle is a package. From guido@cnri.reston.va.us Wed Aug 11 15:55:43 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Wed, 11 Aug 1999 10:55:43 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Tools/idle TreeWidget.py Message-ID: <199908111455.KAA04528@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: TreeWidget.py Log Message: Moshe noticed an inconsistency in his comment, so I'm rephrasing it to be clearer. From fdrake@weyr.cnri.reston.va.us Fri Aug 13 14:36:33 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 13 Aug 1999 09:36:33 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libos.tex Message-ID: <199908131336.JAA01922@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: Explain the possible range of values for the pid parameter to waitpid(). From guido@cnri.reston.va.us Wed Aug 18 14:53:29 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Wed, 18 Aug 1999 09:53:29 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Lib random.py Message-ID: <199908181353.JAA07338@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory eric:/projects/python/develop/guido/src/Lib Modified Files: random.py Log Message: Add Tim Peters' shuffle() algorithm. From guido@cnri.reston.va.us Wed Aug 18 18:40:34 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Wed, 18 Aug 1999 13:40:34 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Lib urllib.py Message-ID: <199908181740.NAA08203@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: Patches by Michael Reilly to correctly deal with ftp URLs of the form ftp://user@host//root/path: the double slash in the pathname means to go to the root directory even if the initial directory isn't the root. From guido@cnri.reston.va.us Wed Aug 18 21:03:18 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Wed, 18 Aug 1999 16:03:18 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Lib shutil.py Message-ID: <199908182003.QAA08407@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: Typo in comment (on Mac, it's the *resource* fork that's not copied, the data fork *is* copied). From bwarsaw@cnri.reston.va.us Wed Aug 18 21:17:42 1999 From: bwarsaw@cnri.reston.va.us (Barry A. Warsaw) Date: Wed, 18 Aug 1999 16:17:42 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Tools/audiopy audiopy Message-ID: <199908182017.QAA08088@anthem.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Tools/audiopy In directory anthem:/projects/python/develop/bwarsaw/python/dist/src/Tools/audiopy Modified Files: audiopy Log Message: __update(): Jeremy Hylton reports occurances of sunaudiodev.error (interrupted system call) when getting the device information. I've never seen it, but this patch should take care of the problem. If we get that exception and we're polling, just return since we'll wake up again soon and get the right information. If we're not polling, try 4 times and then give up. From bwarsaw@cnri.reston.va.us Wed Aug 18 21:18:20 1999 From: bwarsaw@cnri.reston.va.us (Barry A. Warsaw) Date: Wed, 18 Aug 1999 16:18:20 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Tools/audiopy README Message-ID: <199908182018.QAA08108@anthem.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Tools/audiopy In directory anthem:/projects/python/develop/bwarsaw/python/dist/src/Tools/audiopy Modified Files: README Log Message: Bump to version 1.1 From guido@cnri.reston.va.us Wed Aug 18 22:51:11 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Wed, 18 Aug 1999 17:51:11 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Lib ftplib.py Message-ID: <199908182151.RAA09226@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory eric:/projects/python/develop/guido/src/Lib Modified Files: ftplib.py Log Message: Patches by Michael Reilly to correctly deal with ftp URLs of the form ftp://user@host//root/path: the double slash in the pathname means to go to the root directory even if the initial directory isn't the root. From guido@cnri.reston.va.us Thu Aug 19 15:40:28 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Thu, 19 Aug 1999 10:40:28 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Modules timemodule.c Message-ID: <199908191440.KAA10545@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: In floatsleep(), when using select(), ignore EINTR error. From guido@cnri.reston.va.us Thu Aug 19 15:42:54 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Thu, 19 Aug 1999 10:42:54 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libtime.tex Message-ID: <199908191442.KAA10590@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: libtime.tex Log Message: Added disclaimer to the sleep() function. From fdrake@weyr.cnri.reston.va.us Thu Aug 19 16:37:36 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 19 Aug 1999 11:37:36 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc TODO Message-ID: <199908191537.LAA13879@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: Added item regarding random/whrandom. From guido@cnri.reston.va.us Thu Aug 19 16:59:36 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Thu, 19 Aug 1999 11:59:36 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Lib htmlentitydefs.py Message-ID: <199908191559.LAA10833@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory eric:/projects/python/develop/guido/src/Lib Modified Files: htmlentitydefs.py Log Message: New version by Mark-Andre Lemburg (generated by a script, parseentities.py). From guido@cnri.reston.va.us Thu Aug 19 17:00:42 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Thu, 19 Aug 1999 12:00:42 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Tools/scripts parseentities.py Message-ID: <199908191600.MAA10858@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Tools/scripts In directory eric:/projects/python/develop/guido/src/Tools/scripts Added Files: parseentities.py Log Message: Scrit by Marc-Andre Lemburg to generate htmlentitydefs.py. From fdrake@weyr.cnri.reston.va.us Thu Aug 19 18:00:39 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 19 Aug 1999 13:00:39 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libpopen2.tex Message-ID: <199908191700.NAA14628@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: libpopen2.tex Log Message: Tell what the result objects are (based on comment from the list). From bwarsaw@cnri.reston.va.us Thu Aug 19 22:17:09 1999 From: bwarsaw@cnri.reston.va.us (Barry A. Warsaw) Date: Thu, 19 Aug 1999 17:17:09 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Lib exceptions.py Message-ID: <199908192117.RAA01156@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: A nit to make Fred proud. From fdrake@weyr.cnri.reston.va.us Fri Aug 20 14:10:21 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 20 Aug 1999 09:10:21 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Misc python.man Message-ID: <199908201310.JAA17833@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Misc In directory weyr:/home/fdrake/projects/python/Misc Modified Files: python.man Log Message: Various updates, mostly to add information to the SEE ALSO and INTERNET RESOURCES sections based on c.l.py comments. From fdrake@weyr.cnri.reston.va.us Fri Aug 20 14:30:49 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 20 Aug 1999 09:30:49 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Misc python.man Message-ID: <199908201330.JAA19056@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Misc In directory weyr:/home/fdrake/projects/python/Misc Modified Files: python.man Log Message: Oops, better update the date on the .TH line. From fdrake@weyr.cnri.reston.va.us Fri Aug 20 15:28:29 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 20 Aug 1999 10:28:29 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/tools/sgmlconv docfixer.py Message-ID: <199908201428.KAA19667@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: rewrite_descriptor(): Fix bug that dropped the first TEXT node from elements. Add another sanity check to make sure a special case only becomes involved for and elements. fixup_paras_helper(): Clean up control flow. Everywhere that checks node.nodeType==ELEMENT and node.tagName now just check node.nodeName (nodeName is guaranteed for all node types and will be special values that don't conflict with GIs for non-ELEMENT nodes). Simplifies a number of tests and improves readability in a lot of places. From guido@cnri.reston.va.us Fri Aug 20 19:21:52 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Fri, 20 Aug 1999 14:21:52 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Modules socketmodule.c Message-ID: <199908201821.OAA15667@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Modules In directory eric:/projects/python/develop/guido/src/Modules Modified Files: socketmodule.c Log Message: Patch by Ben Gertzfield to add inet_aton() and inet_ntoa() calls. From guido@cnri.reston.va.us Fri Aug 20 19:26:07 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Fri, 20 Aug 1999 14:26:07 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Lib/lib-tk Tkinter.py Message-ID: <199908201826.OAA15695@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: Add calls to self.protocol("WM_DELETE_WINDOW", self.destroy) to the Tk and Toplevel class constructors. This means that if the window manager closes the window, the Python-side Tkinter data structures will be destroyed correctly. (Most apps do this anyway, and it's recommended practice; I see no reason why making it the default behavior could be bad.) From guido@cnri.reston.va.us Fri Aug 20 20:11:28 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Fri, 20 Aug 1999 15:11:28 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Modules socketmodule.c Message-ID: <199908201911.PAA15827@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Modules In directory eric:/projects/python/develop/guido/src/Modules Modified Files: socketmodule.c Log Message: Port inet_ntoa and inet_aton to Windows: - fix unescaped newline in string literal - removed unused err variable - Windows doesn't have inet_aton; use inet_addr instead From fdrake@weyr.cnri.reston.va.us Mon Aug 23 19:57:27 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 23 Aug 1999 14:57:27 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/api api.tex Message-ID: <199908231857.OAA26363@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: Clarified start parameter to Py_CompileString, documented Py_eval_input, Py_file_input, and Py_single_input. Problems reported by Aaron Brancotti . From fdrake@weyr.cnri.reston.va.us Mon Aug 23 21:12:12 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 23 Aug 1999 16:12:12 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib lib.tex Message-ID: <199908232012.QAA26590@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: whrandom should come immediately after random, not before. From fdrake@weyr.cnri.reston.va.us Mon Aug 23 21:24:37 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 23 Aug 1999 16:24:37 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libsocket.tex Message-ID: <199908232024.QAA26661@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/lib In directory weyr:/home/fdrake/projects/python/Doc-1.5.2p1/lib Modified Files: Tag: release152p1-patches libsocket.tex Log Message: Added documentation for inet_aton() and inet_ntoa(), from Ben Gertzfield (with minor changes). From Fred L. Drake, Jr." I've branched the CVS repository for the documentation; the release152p1-patches branch will be used to for bug-fixes to the documentation for Python 1.5.2, while the head of the tree will be used for "cutting edge" documentation. There won't be a lot of differences for a while, but I don't want to let too much pile up for later. To get a copy of the maintenance branch, use: cvs -d :pserver:pythoncvs@cvs.python.org:/projects/cvsroot login (The password is "snakeoil", without the quotes.) Then: cvs -z6 -d :pserver:pythoncvs@cvs.python.org:/projects/cvsroot \ co -d Doc-1.5.2p1 python/Doc This will checkout the maintenance version of the documentation tree in the directory Doc-1.5.2p1. -Fred -- Fred L. Drake, Jr. Corporation for National Research Initiatives From fdrake@weyr.cnri.reston.va.us Tue Aug 24 21:16:30 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 24 Aug 1999 16:16:30 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libstruct.tex Message-ID: <199908242016.QAA09916@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: libstruct.tex Log Message: Added additional index entries. Minor markup nits. From fdrake@weyr.cnri.reston.va.us Tue Aug 24 23:14:01 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 24 Aug 1999 18:14:01 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/ref ref7.tex Message-ID: <199908242214.SAA10236@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: ref7.tex Log Message: Added sentence "All exceptions must have an executable block."; from Dan Wolfe . From fdrake@weyr.cnri.reston.va.us Tue Aug 24 23:14:58 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 24 Aug 1999 18:14:58 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/tut tut.tex Message-ID: <199908242214.SAA10259@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/tut In directory weyr:/home/fdrake/projects/python/Doc/tut Modified Files: tut.tex Log Message: Added paragraph explaining that except clauses can't be empty; that pass can be used if needed. By Dan Wolfe . From guido@cnri.reston.va.us Thu Aug 26 16:50:44 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Thu, 26 Aug 1999 11:50:44 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Lib wave.py chunk.py aifc.py Message-ID: <199908261550.LAA01050@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 chunk.py aifc.py Log Message: Sjoerd Mullender writes: """ Extended chunk so that it can also handle formats that are almost according to EA IFF 85. In particular, added options to handle little-endian and to handle formats that include the header size in the chunk size value. Fixed a bug where the header size was included in the chunk size, which it isn't according to EA IFF 85. Added a new method getsize() to get the size of the chunk (excluding header). Fixed chunk documentation (TIFF doesn't look like it uses chunks). Converted wave to use chunk. Wave uses EA IFF 85 chunks except that it uses little-endian encoding of integer data. Removed __del__ methods from aifc and wave since I got an AttributeError there upon exit. """ From guido@cnri.reston.va.us Thu Aug 26 16:52:34 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Thu, 26 Aug 1999 11:52:34 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Lib xmllib.py Message-ID: <199908261552.LAA01075@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: Sjoerd Mullender writes: """ Added some optional arguments to the XMLParser __init__ method to specify that selected non-standard constructs are to be accepted. Also removed the documentation for handle_entityrefs since it isn't used. """ The version is incremented to 0.3. From guido@cnri.reston.va.us Thu Aug 26 16:57:08 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Thu, 26 Aug 1999 11:57:08 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libchunk.tex Message-ID: <199908261557.LAA01115@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: libchunk.tex Log Message: Doco update from Sjoerd Mullender. From guido@cnri.reston.va.us Thu Aug 26 16:57:45 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Thu, 26 Aug 1999 11:57:45 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libxmllib.tex Message-ID: <199908261557.LAA01140@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: Doco update from Sjoerd Mullender. From fdrake@weyr.cnri.reston.va.us Thu Aug 26 18:23:55 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 26 Aug 1999 13:23:55 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Modules posixmodule.c Message-ID: <199908261723.NAA15621@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: posix_putenv(): Constrain memory leakage when setting the same environment variable repeatedly. I posted this to the list some time ago, but only now got around to asking g--d- what he thought about it. From fdrake@weyr.cnri.reston.va.us Thu Aug 26 18:50:27 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 26 Aug 1999 13:50:27 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/tools/sgmlconv esis2sgml.py Message-ID: <199908261750.NAA15776@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: convert(): Add support for ESIS '&' lines, and make sure we don't silently ignore unrecognized lines. From fdrake@weyr.cnri.reston.va.us Thu Aug 26 18:51:57 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 26 Aug 1999 13:51:57 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/tools/sgmlconv docfixer.py Message-ID: <199908261751.NAA15852@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: write_esis(): Added support for ENTITY_REFERENCE nodes. From fdrake@weyr.cnri.reston.va.us Thu Aug 26 18:54:17 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 26 Aug 1999 13:54:17 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/tools/sgmlconv latex2esis.py Message-ID: <199908261754.NAA15979@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: latex2esis.py Log Message: Conversion.subconvert(): Added support for "entityref" parameters (must be named in the conversion spec.). TableParser.start_entityref(): New method. Use to support creating entity references via the conversion specification. From fdrake@weyr.cnri.reston.va.us Thu Aug 26 18:56:48 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 26 Aug 1999 13:56:48 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/tools/sgmlconv conversion.xml Message-ID: <199908261756.NAA16068@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: conversion.xml Log Message: Specify: \geq --> ≥ \leq --> ≤ \LaTeX --> LaTeX (just text) \TeX --> TeX (just text) From fdrake@weyr.cnri.reston.va.us Thu Aug 26 18:57:19 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 26 Aug 1999 13:57:19 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/tools/sgmlconv make.rules Message-ID: <199908261757.NAA16094@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: Remove use of fixgenents.sh; no longer needed. From fdrake@weyr.cnri.reston.va.us Thu Aug 26 19:04:32 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 26 Aug 1999 14:04:32 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/tools/sgmlconv esistools.py Message-ID: <199908261804.OAA16404@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: esistools.py Log Message: feed(): Added support for ESIS '&' lines. From fdrake@weyr.cnri.reston.va.us Thu Aug 26 19:05:24 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 26 Aug 1999 14:05:24 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/tools/sgmlconv fixgenents.sh Message-ID: <199908261805.OAA16449@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 Removed Files: fixgenents.sh Log Message: Removed; no longer needed now that the other tools can handle entity references directly. From fdrake@weyr.cnri.reston.va.us Thu Aug 26 19:08:13 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 26 Aug 1999 14:08:13 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/tools/sgmlconv README Message-ID: <199908261808.OAA16586@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: README Log Message: Update the instructions slightly. Add a new section describing what each of the tools does, in general terms. From guido@cnri.reston.va.us Fri Aug 27 00:06:06 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Thu, 26 Aug 1999 19:06:06 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Tools/idle EditorWindow.py Message-ID: <199908262306.TAA04368@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: Find the help.txt file relative to __file__ or ".", not in sys.path. (Suggested by Moshe Zadka, but implemented differently.) Add <> event which, on Unix, brings up Netscape pointing to http://www.python.doc/current/ (a local copy would be nice but its location can't be predicted). Windows solution TBD. From guido@cnri.reston.va.us Fri Aug 27 00:06:22 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Thu, 26 Aug 1999 19:06:22 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Tools/idle Bindings.py Message-ID: <199908262306.TAA04387@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: Bindings.py Log Message: Add Python Documentation entry to Help menu. From fdrake@weyr.cnri.reston.va.us Fri Aug 27 16:28:16 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 27 Aug 1999 11:28:16 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/ext ext.tex Message-ID: <199908271528.LAA19912@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 descriptions of the t#, w, and w# PyArg_ParseTuple() format characters; these are the ones for the buffer interface. From guido@cnri.reston.va.us Fri Aug 27 21:33:54 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Fri, 27 Aug 1999 16:33:54 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Modules arraymodule.c Message-ID: <199908272033.QAA05908@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: Tiny patch by Mark Hammond to avoid sys/types.h if we don't have it (for Windows/CE). From guido@cnri.reston.va.us Fri Aug 27 21:38:58 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Fri, 27 Aug 1999 16:38:58 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Objects fileobject.c Message-ID: <199908272038.QAA06098@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Objects In directory eric:/projects/python/develop/guido/src/Objects Modified Files: fileobject.c Log Message: Patch by Mark Hammond to avoid certain header files on Windows/CE. From guido@cnri.reston.va.us Fri Aug 27 21:39:22 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Fri, 27 Aug 1999 16:39:22 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Modules getbuildinfo.c Message-ID: <199908272039.QAA06119@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Modules In directory eric:/projects/python/develop/guido/src/Modules Modified Files: getbuildinfo.c Log Message: Patch by Mark Hammond to avoid certain header files on Windows/CE. From guido@cnri.reston.va.us Fri Aug 27 21:39:37 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Fri, 27 Aug 1999 16:39:37 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Modules selectmodule.c Message-ID: <199908272039.QAA06138@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Modules In directory eric:/projects/python/develop/guido/src/Modules Modified Files: selectmodule.c Log Message: Patch by Mark Hammond to avoid certain header files on Windows/CE. From fdrake@weyr.cnri.reston.va.us Mon Aug 2 15:13:12 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 2 Aug 1999 10:13:12 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib librlcompleter.tex Message-ID: <199908021413.KAA08449@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: librlcompleter.tex Log Message: Fixed hyperlink references to the __builtin__ and __main__ modules; error reported by Dale Nagata . From fdrake@weyr.cnri.reston.va.us Mon Aug 2 15:30:53 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 2 Aug 1999 10:30:53 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libparser.tex Message-ID: <199908021430.KAA08560@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: Markup nits. Adjust examples to use the object interface instead of the function interface. From fdrake@weyr.cnri.reston.va.us Mon Aug 2 15:32:12 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 2 Aug 1999 10:32:12 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/tools/sgmlconv conversion.xml Message-ID: <199908021432.KAA08586@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: conversion.xml Log Message: A few small improvements to the conversion. From fdrake@weyr.cnri.reston.va.us Mon Aug 2 15:32:46 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 2 Aug 1999 10:32:46 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/tools/sgmlconv fixgenents.sh Message-ID: <199908021432.KAA08608@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: fixgenents.sh Log Message: This doesn't need to do nearly as much for the new conversion, so simplify. From fdrake@weyr.cnri.reston.va.us Mon Aug 2 15:35:26 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 2 Aug 1999 10:35:26 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/tools/sgmlconv latex2esis.py Message-ID: <199908021435.KAA08640@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: latex2esis.py Log Message: Mostly minor changes. Removed some obsolete commented-out code. Merged BaseConversion into Conversion since there's only one conversion process now. Remove push/pop of output stream; it's no longer needed. From fdrake@weyr.cnri.reston.va.us Mon Aug 2 15:46:16 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 2 Aug 1999 10:46:16 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/tools/sgmlconv docfixer.py Message-ID: <199908021446.KAA08692@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: bwrite(), ewrite(): Helpers for diagnostic output; essentially the same as sys.stderr.write(), but bwrite() will make it bold if stderr is a tty (for visibility). Use these everywhere instead of accessing sys.stderr.write() directly. find_all_child_elements(): Find all elements by type name that are immediate children of another. cleanup_synopses(): Receive both the document and fragment objects as parameters; if only the document is passed, synopsis information is never found since it's in the fragment! build_para(): Add a chunk of code to ensure that a newline always follows the end-tag. Not really important, but makes presentation consistent for authoring/ maintenance. fixup_bifuncindexes_chunk(): Use find_all_child_elements() instead of find_all_elements() so we don't work with too many levels at once; that could cause DOM exceptions with the .removeChild() method. From fdrake@weyr.cnri.reston.va.us Mon Aug 2 21:19:20 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 2 Aug 1999 16:19:20 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/tools mksourcepkg Message-ID: <199908022019.QAA11173@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: mksourcepkg Log Message: Re-implementation of mktarball.sh as a more portable Python script; with a more descriptive name. Allow creation of multiple archive formats with a single pass; useful in this case since it uses a fresh export/checkout from CVS to ensure that the tree is "clean" (no build turds, saved files, &c). Use --all to create all supported formats. From fdrake@weyr.cnri.reston.va.us Mon Aug 2 21:19:43 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 2 Aug 1999 16:19:43 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/tools mktarball.sh Message-ID: <199908022019.QAA11189@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/tools In directory weyr:/home/fdrake/projects/python/Doc/tools Removed Files: mktarball.sh Log Message: Remove obsolete version of script. From fdrake@weyr.cnri.reston.va.us Mon Aug 2 21:20:15 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 2 Aug 1999 16:20:15 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc Makefile Message-ID: <199908022020.QAA11218@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: Use the mksourcepgk script instead of mktarball.sh. From guido@cnri.reston.va.us Mon Aug 2 21:49:37 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 2 Aug 1999 16:49:37 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/api api.tex Message-ID: <199908022049.QAA18979@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/api In directory eric:/projects/python/develop/guido/Doc/api Modified Files: api.tex Log Message: Removed PyMapping_Clear() -- it was wishful thinking and serves no great purpose. From fdrake@weyr.cnri.reston.va.us Tue Aug 3 16:27:39 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 3 Aug 1999 11:27:39 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/tools/sgmlconv conversion.xml Message-ID: <199908031527.LAA15678@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: conversion.xml Log Message: The new conversion engine supports more of the table re-writing than the old one, so use it. From fdrake@weyr.cnri.reston.va.us Tue Aug 3 16:32:49 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 3 Aug 1999 11:32:49 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/tools/sgmlconv docfixer.py Message-ID: <199908031532.LAA15708@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: remap_element_names(): Only used for things that the new conversion engine in latex2esis.py can do, so discard it. paragraph detection & markup: Handle some of the list-like environments properly, picking up paragraphs inside list items. (Only changed a few element-sets used for recognition.) fixup_refmodindexes_chunk(): Use the right attribute to determine the module a element is referring to. convert(): Don't call remap_element_names(); it was removed. From fdrake@weyr.cnri.reston.va.us Tue Aug 3 18:54:40 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 3 Aug 1999 13:54:40 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/tools getpagecounts Message-ID: <199908031754.NAA18741@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: Re-write in Python for portability. About 30% slower, but who cares?! From guido@cnri.reston.va.us Tue Aug 3 20:41:11 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Tue, 3 Aug 1999 15:41:11 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Modules posixmodule.c Message-ID: <199908031941.PAA21201@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: It turns out that modifying the environment strings is not safe. Treat them as read-only, and make a copy as appropriately. This was first reported by Bill Janssend and later by Craig Rowland and Ron Sedlmeyer. This fix is mine. From guido@cnri.reston.va.us Tue Aug 3 22:52:30 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Tue, 3 Aug 1999 17:52:30 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libstat.tex Message-ID: <199908032152.RAA21662@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: libstat.tex Log Message: Change the directory tree walking example to use clearer variable names, some suggested by Joe Ellsworth. From fdrake@weyr.cnri.reston.va.us Wed Aug 4 14:08:20 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 4 Aug 1999 09:08:20 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Objects bufferobject.c Message-ID: <199908041308.JAA26268@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Objects In directory weyr:/home/fdrake/projects/python/Objects Modified Files: bufferobject.c Log Message: PyBuffer_New(): Raise ValueError if size is negative (the other constructors didn't miss this). Raise MemoryError if malloc() fails, instead of just returning NULL. From fdrake@weyr.cnri.reston.va.us Wed Aug 4 14:13:26 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 4 Aug 1999 09:13:26 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/api api.tex Message-ID: <199908041313.JAA26344@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: Started documentation on buffer objects & types. Very preliminary. Greg Stein: Please help with this; it's your baby! From guido@cnri.reston.va.us Wed Aug 4 19:00:13 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Wed, 4 Aug 1999 14:00:13 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Python importdl.c Message-ID: <199908041800.OAA23777@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Python In directory eric:/projects/python/develop/guido/src/Python Modified Files: importdl.c Log Message: Vladimir Marangozov fixes an AIX-specific problem, writing: """ Following up Robin Dunn's troubles with freeze, here's a patch that fixes an oddity regarding the import logic of shared modules on AIX. Symbol resolution of shared modules is now handled properly for the cases when the python library is linked to a binary with an arbitrary name. This includes the standard python[version] executable, but also applications that are embedding the python core (i.e. linked with libpython[version].a, the latter being static or shared). """ From fdrake@weyr.cnri.reston.va.us Thu Aug 5 14:41:05 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 5 Aug 1999 09:41:05 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libsocket.tex Message-ID: <199908051341.JAA29971@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: libsocket.tex Log Message: Add index entry "I/O control, buffering" for makefile(). From fdrake@weyr.cnri.reston.va.us Thu Aug 5 14:41:32 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 5 Aug 1999 09:41:32 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libos.tex Message-ID: <199908051341.JAA29989@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: Add index entry "I/O control, buffering" for fdopen(). From fdrake@weyr.cnri.reston.va.us Thu Aug 5 14:43:08 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 5 Aug 1999 09:43:08 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libfuncs.tex Message-ID: <199908051343.JAA00022@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: Add index entries for open(): buffer size, I/O I/O control, buffering line-buffered I/O unbuffered I/O From guido@cnri.reston.va.us Sat Aug 7 15:01:06 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Sat, 7 Aug 1999 10:01:06 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Demo/sockets mcast.py Message-ID: <199908071401.KAA27207@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Demo/sockets In directory eric:/projects/python/develop/guido/src/Demo/sockets Modified Files: mcast.py Log Message: Ofir Reichenberg suggested to apply htonl() to grpaddr in openmcastsock(). Also got rid of unnecessary use of eval() and regsub.gsub(). From guido@cnri.reston.va.us Mon Aug 9 15:40:40 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 9 Aug 1999 10:40:40 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Modules socketmodule.c Message-ID: <199908091440.KAA29143@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Modules In directory eric:/projects/python/develop/guido/src/Modules Modified Files: socketmodule.c Log Message: Patch by Marc-Andre Lemburg to add a bunch more symbols. From fdrake@weyr.cnri.reston.va.us Mon Aug 9 18:05:15 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 9 Aug 1999 13:05:15 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libstdtypes.tex Message-ID: <199908091705.NAA17078@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: In note mentioning [].remove()'s exception, tell what exception is raised. Prompted by Barry's whining. ;-0 From akuchlin@cnri.reston.va.us Tue Aug 10 14:19:31 1999 From: akuchlin@cnri.reston.va.us (Andrew M. Kuchling) Date: Tue, 10 Aug 1999 09:19:31 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Lib gzip.py Message-ID: <199908101319.JAA03646@amarok.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory amarok:/home/akuchlin/src/Python-1.5/Lib Modified Files: gzip.py Log Message: Added __del__ method to GzipFile class that will flush and close the object, if required. From bwarsaw@cnri.reston.va.us Tue Aug 10 22:49:00 1999 From: bwarsaw@cnri.reston.va.us (Barry A. Warsaw) Date: Tue, 10 Aug 1999 17:49:00 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Misc python-mode.el Message-ID: <199908102149.RAA13272@anthem.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Misc In directory anthem:/projects/python/develop/bwarsaw/python/dist/src/Misc Modified Files: python-mode.el Log Message: (py-shell): Set the default shell if not set yet. It's sometimes convenient to call py-shell before the first Python file has been visited. From guido@cnri.reston.va.us Wed Aug 11 02:54:06 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Tue, 10 Aug 1999 21:54:06 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Lib shelve.py Message-ID: <199908110154.VAA03813@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory eric:/projects/python/develop/guido/src/Lib Modified Files: shelve.py Log Message: Patch by Paul Sokolovsky to support the get() method. From guido@cnri.reston.va.us Wed Aug 11 03:01:01 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Tue, 10 Aug 1999 22:01:01 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Tools/idle TreeWidget.py Message-ID: <199908110201.WAA03864@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: TreeWidget.py Log Message: Patch inspired by Moshe Zadka to search for the Icons directory in the same directory as __file__, rather than searching for it along sys.path. This works better when idle is a package. From guido@cnri.reston.va.us Wed Aug 11 15:55:43 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Wed, 11 Aug 1999 10:55:43 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Tools/idle TreeWidget.py Message-ID: <199908111455.KAA04528@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: TreeWidget.py Log Message: Moshe noticed an inconsistency in his comment, so I'm rephrasing it to be clearer. From fdrake@weyr.cnri.reston.va.us Fri Aug 13 14:36:33 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 13 Aug 1999 09:36:33 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libos.tex Message-ID: <199908131336.JAA01922@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: Explain the possible range of values for the pid parameter to waitpid(). From guido@cnri.reston.va.us Wed Aug 18 14:53:29 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Wed, 18 Aug 1999 09:53:29 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Lib random.py Message-ID: <199908181353.JAA07338@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory eric:/projects/python/develop/guido/src/Lib Modified Files: random.py Log Message: Add Tim Peters' shuffle() algorithm. From guido@cnri.reston.va.us Wed Aug 18 18:40:34 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Wed, 18 Aug 1999 13:40:34 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Lib urllib.py Message-ID: <199908181740.NAA08203@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: Patches by Michael Reilly to correctly deal with ftp URLs of the form ftp://user@host//root/path: the double slash in the pathname means to go to the root directory even if the initial directory isn't the root. From guido@cnri.reston.va.us Wed Aug 18 21:03:18 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Wed, 18 Aug 1999 16:03:18 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Lib shutil.py Message-ID: <199908182003.QAA08407@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: Typo in comment (on Mac, it's the *resource* fork that's not copied, the data fork *is* copied). From bwarsaw@cnri.reston.va.us Wed Aug 18 21:17:42 1999 From: bwarsaw@cnri.reston.va.us (Barry A. Warsaw) Date: Wed, 18 Aug 1999 16:17:42 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Tools/audiopy audiopy Message-ID: <199908182017.QAA08088@anthem.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Tools/audiopy In directory anthem:/projects/python/develop/bwarsaw/python/dist/src/Tools/audiopy Modified Files: audiopy Log Message: __update(): Jeremy Hylton reports occurances of sunaudiodev.error (interrupted system call) when getting the device information. I've never seen it, but this patch should take care of the problem. If we get that exception and we're polling, just return since we'll wake up again soon and get the right information. If we're not polling, try 4 times and then give up. From bwarsaw@cnri.reston.va.us Wed Aug 18 21:18:20 1999 From: bwarsaw@cnri.reston.va.us (Barry A. Warsaw) Date: Wed, 18 Aug 1999 16:18:20 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Tools/audiopy README Message-ID: <199908182018.QAA08108@anthem.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Tools/audiopy In directory anthem:/projects/python/develop/bwarsaw/python/dist/src/Tools/audiopy Modified Files: README Log Message: Bump to version 1.1 From guido@cnri.reston.va.us Wed Aug 18 22:51:11 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Wed, 18 Aug 1999 17:51:11 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Lib ftplib.py Message-ID: <199908182151.RAA09226@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory eric:/projects/python/develop/guido/src/Lib Modified Files: ftplib.py Log Message: Patches by Michael Reilly to correctly deal with ftp URLs of the form ftp://user@host//root/path: the double slash in the pathname means to go to the root directory even if the initial directory isn't the root. From guido@cnri.reston.va.us Thu Aug 19 15:40:28 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Thu, 19 Aug 1999 10:40:28 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Modules timemodule.c Message-ID: <199908191440.KAA10545@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: In floatsleep(), when using select(), ignore EINTR error. From guido@cnri.reston.va.us Thu Aug 19 15:42:54 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Thu, 19 Aug 1999 10:42:54 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libtime.tex Message-ID: <199908191442.KAA10590@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: libtime.tex Log Message: Added disclaimer to the sleep() function. From fdrake@weyr.cnri.reston.va.us Thu Aug 19 16:37:36 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 19 Aug 1999 11:37:36 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc TODO Message-ID: <199908191537.LAA13879@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: Added item regarding random/whrandom. From guido@cnri.reston.va.us Thu Aug 19 16:59:36 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Thu, 19 Aug 1999 11:59:36 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Lib htmlentitydefs.py Message-ID: <199908191559.LAA10833@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory eric:/projects/python/develop/guido/src/Lib Modified Files: htmlentitydefs.py Log Message: New version by Mark-Andre Lemburg (generated by a script, parseentities.py). From guido@cnri.reston.va.us Thu Aug 19 17:00:42 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Thu, 19 Aug 1999 12:00:42 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Tools/scripts parseentities.py Message-ID: <199908191600.MAA10858@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Tools/scripts In directory eric:/projects/python/develop/guido/src/Tools/scripts Added Files: parseentities.py Log Message: Scrit by Marc-Andre Lemburg to generate htmlentitydefs.py. From fdrake@weyr.cnri.reston.va.us Thu Aug 19 18:00:39 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 19 Aug 1999 13:00:39 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libpopen2.tex Message-ID: <199908191700.NAA14628@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: libpopen2.tex Log Message: Tell what the result objects are (based on comment from the list). From bwarsaw@cnri.reston.va.us Thu Aug 19 22:17:09 1999 From: bwarsaw@cnri.reston.va.us (Barry A. Warsaw) Date: Thu, 19 Aug 1999 17:17:09 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Lib exceptions.py Message-ID: <199908192117.RAA01156@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: A nit to make Fred proud. From fdrake@weyr.cnri.reston.va.us Fri Aug 20 14:10:21 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 20 Aug 1999 09:10:21 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Misc python.man Message-ID: <199908201310.JAA17833@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Misc In directory weyr:/home/fdrake/projects/python/Misc Modified Files: python.man Log Message: Various updates, mostly to add information to the SEE ALSO and INTERNET RESOURCES sections based on c.l.py comments. From fdrake@weyr.cnri.reston.va.us Fri Aug 20 14:30:49 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 20 Aug 1999 09:30:49 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Misc python.man Message-ID: <199908201330.JAA19056@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Misc In directory weyr:/home/fdrake/projects/python/Misc Modified Files: python.man Log Message: Oops, better update the date on the .TH line. From fdrake@weyr.cnri.reston.va.us Fri Aug 20 15:28:29 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 20 Aug 1999 10:28:29 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/tools/sgmlconv docfixer.py Message-ID: <199908201428.KAA19667@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: rewrite_descriptor(): Fix bug that dropped the first TEXT node from elements. Add another sanity check to make sure a special case only becomes involved for and elements. fixup_paras_helper(): Clean up control flow. Everywhere that checks node.nodeType==ELEMENT and node.tagName now just check node.nodeName (nodeName is guaranteed for all node types and will be special values that don't conflict with GIs for non-ELEMENT nodes). Simplifies a number of tests and improves readability in a lot of places. From guido@cnri.reston.va.us Fri Aug 20 19:21:52 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Fri, 20 Aug 1999 14:21:52 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Modules socketmodule.c Message-ID: <199908201821.OAA15667@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Modules In directory eric:/projects/python/develop/guido/src/Modules Modified Files: socketmodule.c Log Message: Patch by Ben Gertzfield to add inet_aton() and inet_ntoa() calls. From guido@cnri.reston.va.us Fri Aug 20 19:26:07 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Fri, 20 Aug 1999 14:26:07 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Lib/lib-tk Tkinter.py Message-ID: <199908201826.OAA15695@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: Add calls to self.protocol("WM_DELETE_WINDOW", self.destroy) to the Tk and Toplevel class constructors. This means that if the window manager closes the window, the Python-side Tkinter data structures will be destroyed correctly. (Most apps do this anyway, and it's recommended practice; I see no reason why making it the default behavior could be bad.) From guido@cnri.reston.va.us Fri Aug 20 20:11:28 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Fri, 20 Aug 1999 15:11:28 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Modules socketmodule.c Message-ID: <199908201911.PAA15827@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Modules In directory eric:/projects/python/develop/guido/src/Modules Modified Files: socketmodule.c Log Message: Port inet_ntoa and inet_aton to Windows: - fix unescaped newline in string literal - removed unused err variable - Windows doesn't have inet_aton; use inet_addr instead From fdrake@weyr.cnri.reston.va.us Mon Aug 23 19:57:27 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 23 Aug 1999 14:57:27 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/api api.tex Message-ID: <199908231857.OAA26363@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: Clarified start parameter to Py_CompileString, documented Py_eval_input, Py_file_input, and Py_single_input. Problems reported by Aaron Brancotti . From fdrake@weyr.cnri.reston.va.us Mon Aug 23 21:12:12 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 23 Aug 1999 16:12:12 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib lib.tex Message-ID: <199908232012.QAA26590@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: whrandom should come immediately after random, not before. From fdrake@weyr.cnri.reston.va.us Mon Aug 23 21:24:37 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 23 Aug 1999 16:24:37 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libsocket.tex Message-ID: <199908232024.QAA26661@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/lib In directory weyr:/home/fdrake/projects/python/Doc-1.5.2p1/lib Modified Files: Tag: release152p1-patches libsocket.tex Log Message: Added documentation for inet_aton() and inet_ntoa(), from Ben Gertzfield (with minor changes). From Fred L. Drake, Jr." I've branched the CVS repository for the documentation; the release152p1-patches branch will be used to for bug-fixes to the documentation for Python 1.5.2, while the head of the tree will be used for "cutting edge" documentation. There won't be a lot of differences for a while, but I don't want to let too much pile up for later. To get a copy of the maintenance branch, use: cvs -d :pserver:pythoncvs@cvs.python.org:/projects/cvsroot login (The password is "snakeoil", without the quotes.) Then: cvs -z6 -d :pserver:pythoncvs@cvs.python.org:/projects/cvsroot \ co -d Doc-1.5.2p1 python/Doc This will checkout the maintenance version of the documentation tree in the directory Doc-1.5.2p1. -Fred -- Fred L. Drake, Jr. Corporation for National Research Initiatives From fdrake@weyr.cnri.reston.va.us Tue Aug 24 21:16:30 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 24 Aug 1999 16:16:30 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libstruct.tex Message-ID: <199908242016.QAA09916@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: libstruct.tex Log Message: Added additional index entries. Minor markup nits. From fdrake@weyr.cnri.reston.va.us Tue Aug 24 23:14:01 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 24 Aug 1999 18:14:01 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/ref ref7.tex Message-ID: <199908242214.SAA10236@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: ref7.tex Log Message: Added sentence "All exceptions must have an executable block."; from Dan Wolfe . From fdrake@weyr.cnri.reston.va.us Tue Aug 24 23:14:58 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 24 Aug 1999 18:14:58 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/tut tut.tex Message-ID: <199908242214.SAA10259@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/tut In directory weyr:/home/fdrake/projects/python/Doc/tut Modified Files: tut.tex Log Message: Added paragraph explaining that except clauses can't be empty; that pass can be used if needed. By Dan Wolfe . From guido@cnri.reston.va.us Thu Aug 26 16:50:44 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Thu, 26 Aug 1999 11:50:44 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Lib wave.py chunk.py aifc.py Message-ID: <199908261550.LAA01050@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 chunk.py aifc.py Log Message: Sjoerd Mullender writes: """ Extended chunk so that it can also handle formats that are almost according to EA IFF 85. In particular, added options to handle little-endian and to handle formats that include the header size in the chunk size value. Fixed a bug where the header size was included in the chunk size, which it isn't according to EA IFF 85. Added a new method getsize() to get the size of the chunk (excluding header). Fixed chunk documentation (TIFF doesn't look like it uses chunks). Converted wave to use chunk. Wave uses EA IFF 85 chunks except that it uses little-endian encoding of integer data. Removed __del__ methods from aifc and wave since I got an AttributeError there upon exit. """ From guido@cnri.reston.va.us Thu Aug 26 16:52:34 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Thu, 26 Aug 1999 11:52:34 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Lib xmllib.py Message-ID: <199908261552.LAA01075@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: Sjoerd Mullender writes: """ Added some optional arguments to the XMLParser __init__ method to specify that selected non-standard constructs are to be accepted. Also removed the documentation for handle_entityrefs since it isn't used. """ The version is incremented to 0.3. From guido@cnri.reston.va.us Thu Aug 26 16:57:08 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Thu, 26 Aug 1999 11:57:08 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libchunk.tex Message-ID: <199908261557.LAA01115@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: libchunk.tex Log Message: Doco update from Sjoerd Mullender. From guido@cnri.reston.va.us Thu Aug 26 16:57:45 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Thu, 26 Aug 1999 11:57:45 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libxmllib.tex Message-ID: <199908261557.LAA01140@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: Doco update from Sjoerd Mullender. From fdrake@weyr.cnri.reston.va.us Thu Aug 26 18:23:55 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 26 Aug 1999 13:23:55 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Modules posixmodule.c Message-ID: <199908261723.NAA15621@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: posix_putenv(): Constrain memory leakage when setting the same environment variable repeatedly. I posted this to the list some time ago, but only now got around to asking g--d- what he thought about it. From fdrake@weyr.cnri.reston.va.us Thu Aug 26 18:50:27 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 26 Aug 1999 13:50:27 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/tools/sgmlconv esis2sgml.py Message-ID: <199908261750.NAA15776@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: convert(): Add support for ESIS '&' lines, and make sure we don't silently ignore unrecognized lines. From fdrake@weyr.cnri.reston.va.us Thu Aug 26 18:51:57 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 26 Aug 1999 13:51:57 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/tools/sgmlconv docfixer.py Message-ID: <199908261751.NAA15852@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: write_esis(): Added support for ENTITY_REFERENCE nodes. From fdrake@weyr.cnri.reston.va.us Thu Aug 26 18:54:17 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 26 Aug 1999 13:54:17 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/tools/sgmlconv latex2esis.py Message-ID: <199908261754.NAA15979@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: latex2esis.py Log Message: Conversion.subconvert(): Added support for "entityref" parameters (must be named in the conversion spec.). TableParser.start_entityref(): New method. Use to support creating entity references via the conversion specification. From fdrake@weyr.cnri.reston.va.us Thu Aug 26 18:56:48 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 26 Aug 1999 13:56:48 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/tools/sgmlconv conversion.xml Message-ID: <199908261756.NAA16068@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: conversion.xml Log Message: Specify: \geq --> ≥ \leq --> ≤ \LaTeX --> LaTeX (just text) \TeX --> TeX (just text) From fdrake@weyr.cnri.reston.va.us Thu Aug 26 18:57:19 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 26 Aug 1999 13:57:19 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/tools/sgmlconv make.rules Message-ID: <199908261757.NAA16094@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: Remove use of fixgenents.sh; no longer needed. From fdrake@weyr.cnri.reston.va.us Thu Aug 26 19:04:32 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 26 Aug 1999 14:04:32 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/tools/sgmlconv esistools.py Message-ID: <199908261804.OAA16404@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: esistools.py Log Message: feed(): Added support for ESIS '&' lines. From fdrake@weyr.cnri.reston.va.us Thu Aug 26 19:05:24 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 26 Aug 1999 14:05:24 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/tools/sgmlconv fixgenents.sh Message-ID: <199908261805.OAA16449@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 Removed Files: fixgenents.sh Log Message: Removed; no longer needed now that the other tools can handle entity references directly. From fdrake@weyr.cnri.reston.va.us Thu Aug 26 19:08:13 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 26 Aug 1999 14:08:13 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/tools/sgmlconv README Message-ID: <199908261808.OAA16586@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: README Log Message: Update the instructions slightly. Add a new section describing what each of the tools does, in general terms. From guido@cnri.reston.va.us Fri Aug 27 00:06:06 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Thu, 26 Aug 1999 19:06:06 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Tools/idle EditorWindow.py Message-ID: <199908262306.TAA04368@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: Find the help.txt file relative to __file__ or ".", not in sys.path. (Suggested by Moshe Zadka, but implemented differently.) Add <> event which, on Unix, brings up Netscape pointing to http://www.python.doc/current/ (a local copy would be nice but its location can't be predicted). Windows solution TBD. From guido@cnri.reston.va.us Fri Aug 27 00:06:22 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Thu, 26 Aug 1999 19:06:22 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Tools/idle Bindings.py Message-ID: <199908262306.TAA04387@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: Bindings.py Log Message: Add Python Documentation entry to Help menu. From fdrake@weyr.cnri.reston.va.us Fri Aug 27 16:28:16 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 27 Aug 1999 11:28:16 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/ext ext.tex Message-ID: <199908271528.LAA19912@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 descriptions of the t#, w, and w# PyArg_ParseTuple() format characters; these are the ones for the buffer interface. From guido@cnri.reston.va.us Fri Aug 27 21:33:54 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Fri, 27 Aug 1999 16:33:54 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Modules arraymodule.c Message-ID: <199908272033.QAA05908@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: Tiny patch by Mark Hammond to avoid sys/types.h if we don't have it (for Windows/CE). From guido@cnri.reston.va.us Fri Aug 27 21:38:58 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Fri, 27 Aug 1999 16:38:58 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Objects fileobject.c Message-ID: <199908272038.QAA06098@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Objects In directory eric:/projects/python/develop/guido/src/Objects Modified Files: fileobject.c Log Message: Patch by Mark Hammond to avoid certain header files on Windows/CE. From guido@cnri.reston.va.us Fri Aug 27 21:39:22 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Fri, 27 Aug 1999 16:39:22 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Modules getbuildinfo.c Message-ID: <199908272039.QAA06119@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Modules In directory eric:/projects/python/develop/guido/src/Modules Modified Files: getbuildinfo.c Log Message: Patch by Mark Hammond to avoid certain header files on Windows/CE. From guido@cnri.reston.va.us Fri Aug 27 21:39:37 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Fri, 27 Aug 1999 16:39:37 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Modules selectmodule.c Message-ID: <199908272039.QAA06138@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Modules In directory eric:/projects/python/develop/guido/src/Modules Modified Files: selectmodule.c Log Message: Patch by Mark Hammond to avoid certain header files on Windows/CE.