From guido@cnri.reston.va.us Thu Apr 1 15:32:33 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Thu, 1 Apr 1999 10:32:33 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Lib/test test_cpickle.py Message-ID: <199904011532.KAA06517@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_cpickle.py Log Message: Jonathan Giddy write: In test_cpickle.py, the module os got imported, but the line to remove the temp file has gone missing. From guido@cnri.reston.va.us Fri Apr 2 22:18:28 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Fri, 2 Apr 1999 17:18:28 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Tools/scripts dutree.py Message-ID: <199904022218.RAA10392@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Tools/scripts In directory eric:/projects/python/develop/guido/src/Tools/scripts Modified Files: dutree.py Log Message: For reasons I dare not explain, this script should always execute main() when imported (in other words, it is not usable as a module). From fdrake@weyr.cnri.reston.va.us Mon Apr 5 19:33:43 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 5 Apr 1999 14:33:43 -0400 Subject: [Python-checkins] CVS: python/dist/src/Lib gzip.py Message-ID: <199904051833.OAA03208@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory weyr:/home/fdrake/projects/python/Lib Modified Files: gzip.py Log Message: Made the default mode 'rb' instead of 'r', for better cross-platform support. (Based on comment on the documentation by Bernhard Reiter ). From fdrake@weyr.cnri.reston.va.us Mon Apr 5 19:38:01 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 5 Apr 1999 14:38:01 -0400 Subject: [Python-checkins] CVS: python/dist/src/Lib gzip.py Message-ID: <199904051838.OAA03232@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory weyr:/home/fdrake/projects/python/Lib Modified Files: gzip.py Log Message: Oops, missed mode parameter to open(). From fdrake@weyr.cnri.reston.va.us Mon Apr 5 20:00:55 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 5 Apr 1999 15:00:55 -0400 Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libgzip.tex Message-ID: <199904051900.PAA03645@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: libgzip.tex Log Message: Made improvements based on changes just made and comments from Bernhard Reiter . From fdrake@weyr.cnri.reston.va.us Mon Apr 5 20:26:19 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 5 Apr 1999 15:26:19 -0400 Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libstat.tex Message-ID: <199904051926.PAA04036@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: libstat.tex Log Message: Removed bosities around example code; not sure where that stuff crept in! From fdrake@weyr.cnri.reston.va.us Mon Apr 5 20:28:30 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 5 Apr 1999 15:28:30 -0400 Subject: [Python-checkins] CVS: python/dist/src/Doc/html Makefile Message-ID: <199904051928.PAA04084@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: Added "doc" target to match the other document-prefix targets. From fdrake@weyr.cnri.reston.va.us Mon Apr 5 20:46:22 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 5 Apr 1999 15:46:22 -0400 Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libanydbm.tex libshelve.tex Message-ID: <199904051946.PAA04350@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 libshelve.tex Log Message: Added a few items to the "See also" sections at Guido's prompting. Made more references to other modules in the text hyperlinks for the HTML and PDF versions. From guido@cnri.reston.va.us Mon Apr 5 22:18:15 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 5 Apr 1999 17:18:15 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Misc ACKS Message-ID: <199904052118.RAA14007@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: Bunch of new contributors, including 9 who contributed to the Docs, reported by Fred. From fdrake@weyr.cnri.reston.va.us Mon Apr 5 22:22:43 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 5 Apr 1999 17:22:43 -0400 Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libfuncs.tex Message-ID: <199904052122.RAA04812@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: open() description: Made it more clear that 'b' should always be added to the mode value for binary files to improve portability. Fixed latex2html weirdness with a couple of footnotes. From fdrake@weyr.cnri.reston.va.us Mon Apr 5 22:26:39 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 5 Apr 1999 17:26:39 -0400 Subject: [Python-checkins] CVS: python/dist/src/Doc/ext ext.tex Message-ID: <199904052126.RAA04887@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: Fixed latex2html weirdness for a footnote. From fdrake@weyr.cnri.reston.va.us Mon Apr 5 22:32:53 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 5 Apr 1999 17:32:53 -0400 Subject: [Python-checkins] CVS: python/dist/src/Doc/ref ref4.tex ref5.tex ref7.tex Message-ID: <199904052132.RAA04979@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: ref4.tex ref5.tex ref7.tex Log Message: Fixed latex2html weirdness with footnotes. From fdrake@weyr.cnri.reston.va.us Mon Apr 5 22:39:19 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 5 Apr 1999 17:39:19 -0400 Subject: [Python-checkins] CVS: python/dist/src/Doc/tut tut.tex Message-ID: <199904052139.RAA05068@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: Fixed latex2html weirdness with footnotes. From guido@cnri.reston.va.us Mon Apr 5 22:54:17 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 5 Apr 1999 17:54:17 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Modules timemodule.c Message-ID: <199904052154.RAA14180@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: Jonathan Giddy notes, and Chris Lawrence agrees, that some comments on #else/#endif are wrong, and that #if HAVE_TM_ZONE should be #ifdef. From jhylton@cnri.reston.va.us Mon Apr 5 22:55:23 1999 From: jhylton@cnri.reston.va.us (Jeremy Hylton) Date: Mon, 5 Apr 1999 17:55:23 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libzlib.tex Message-ID: <199904052155.RAA01555@bitdiddle.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/lib In directory bitdiddle:/local/home/jhylton/local/python/src/Doc/lib Modified Files: libzlib.tex Log Message: correct version info for zlib. add note about module failing with old versions of the library. update comment that explains that this doc is *still* out of date From fdrake@weyr.cnri.reston.va.us Mon Apr 5 22:59:17 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 5 Apr 1999 17:59:17 -0400 Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libmarshal.tex libobjs.tex libprofile.tex libstdtypes.tex libstdwin.tex Message-ID: <199904052159.RAA05380@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 libobjs.tex libprofile.tex libstdtypes.tex libstdwin.tex Log Message: Fixed latex2html weirdness with footnotes. From fdrake@weyr.cnri.reston.va.us Mon Apr 5 23:18:14 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 5 Apr 1999 18:18:14 -0400 Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libanydbm.tex libdbm.tex libgdbm.tex Message-ID: <199904052218.SAA05775@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 libdbm.tex libgdbm.tex Log Message: Added more "See also" entries, + 1 inline hyperlink. From guido@cnri.reston.va.us Tue Apr 6 16:49:47 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Tue, 6 Apr 1999 11:49:47 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src acconfig.h config.h.in Message-ID: <199904061549.LAA19306@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src In directory eric:/projects/python/develop/guido/src Modified Files: acconfig.h config.h.in Log Message: For BeOS PowerPC. Chris Herborth. From guido@cnri.reston.va.us Tue Apr 6 16:50:54 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Tue, 6 Apr 1999 11:50:54 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src configure configure.in Message-ID: <199904061550.LAA19338@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src In directory eric:/projects/python/develop/guido/src Modified Files: configure configure.in Log Message: For BeOS PowerPC. Chris Herborth. From guido@cnri.reston.va.us Tue Apr 6 20:32:21 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Tue, 6 Apr 1999 15:32:21 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Lib ntpath.py Message-ID: <199904061932.PAA21442@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: Withdraw the UNC support from splitdrive(). Instead, a new function splitunc() parses UNC paths. The contributor of the UNC parsing in splitdrive() doesn't like it, but I haven't heard a good reason to keep it, and it causes some problems. (I think there's a philosophical problem -- to me, the split*() functions are purely syntactical, and the fact that \\foo is not a valid path doesn't mean that it shouldn't be considered an absolute path.) Also (quite separately, but strangely related to the philosophical issue above) fix abspath() so that if win32api exists, it doesn't fail when the path doesn't actually exist -- if GetFullPathName() fails, fall back on the old strategy (join with getcwd() if neccessary, and then use normpath()). From guido@cnri.reston.va.us Tue Apr 6 20:38:20 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Tue, 6 Apr 1999 15:38:20 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Lib/test test_ntpath.py Message-ID: <199904061938.PAA21480@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_ntpath.py Log Message: Fix the tests now that splitdrive() no longer treats UNC paths special. (Some tests converted to splitunc() tests.) From guido@cnri.reston.va.us Wed Apr 7 16:03:42 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Wed, 7 Apr 1999 11:03:42 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Lib smtplib.py Message-ID: <199904071503.LAA22655@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory eric:/projects/python/develop/guido/src/Lib Modified Files: smtplib.py Log Message: Changes by Per Cederquist and The Dragon. Per writes: """ The application where Signum Support uses smtplib needs to be able to report good error messages to the user when sending email fails. To help in diagnosing problems it is useful to be able to report the entire message sent by the server, not only the SMTP error code of the offending command. A lot of the functions in sendmail.py unfortunately discards the message, leaving only the code. The enclosed patch fixes that problem. The enclosed patch also introduces a base class for exceptions that include an SMTP error code and error message, and make the code and message available on separate attributes, so that surrounding code can deal with them in whatever way it sees fit. I've also added some documentation to the exception classes. The constructor will now raise an exception if it cannot connect to the SMTP server. The data() method will raise an SMTPDataError if it doesn't receive the expected 354 code in the middle of the exchange. According to section 5.2.10 of RFC 1123 a smtp client must accept "any text, including no text at all" after the error code. If the response of a HELO command contains no text self.helo_resp will be set to the empty string (""). The patch fixes the test in the sendmail() method so that helo_resp is tested against None; if it has the empty string as value the sendmail() method would invoke the helo() method again. The code no longer accepts a -1 reply from the ehlo() method in sendmail(). [Text about removing SMTPRecipientsRefused deleted --GvR] """ and also: """ smtplib.py appends an extra blank line to the outgoing mail if the `msg' argument to the sendmail method already contains a trailing newline. This patch should fix the problem. """ The Dragon writes: """ Mostly I just re-added the SMTPRecipientsRefused exception (the exeption object now has the appropriate info in it ) [Per had removed this in his patch --GvR] and tweaked the behavior of the sendmail method whence it throws the newly added SMTPHeloException (it was closing the connection, which it shouldn't. whatever catches the exception should do that. ) I pondered the change of the return values to tuples all around, and after some thinking I decided that regularizing the return values was too much of the Right Thing (tm) to not do. My one concern is that code expecting an integer & getting a tuple may fail silently. (i.e. if it's doing : x.somemethod() >= 400: expecting an integer, the expression will always be true if it gets a tuple instead. ) However, most smtplib code I've seen only really uses the sendmail() method, so this wouldn't bother it. Usually code I've seen that calls the other methods usually only calls helo() and ehlo() for doing ESMTP, a feature which was not in the smtplib included with 1.5.1, and thus I would think not much code uses it yet. """ From guido@cnri.reston.va.us Wed Apr 7 16:49:44 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Wed, 7 Apr 1999 11:49:44 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Modules posixmodule.c Message-ID: <199904071549.LAA22998@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 extern decl for fsync() for SunOS 4.x. From guido@cnri.reston.va.us Wed Apr 7 16:56:52 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Wed, 7 Apr 1999 11:56:52 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libsmtplib.tex Message-ID: <199904071556.LAA23109@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: libsmtplib.tex Log Message: Updated documentation by Per Cederqvist. I've added back the documentation sendmail() to reflect the changes by The Dragon (see smtplib.py checkin). From guido@cnri.reston.va.us Wed Apr 7 17:00:22 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Wed, 7 Apr 1999 12:00:22 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Include patchlevel.h Message-ID: <199904071600.MAA23133@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Include In directory eric:/projects/python/develop/guido/src/Include Modified Files: patchlevel.h Log Message: Add the possibility of a gamma release (release candidate). Add '+' to string version number to indicate we're beyond b2 now. From guido@cnri.reston.va.us Wed Apr 7 17:05:49 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Wed, 7 Apr 1999 12:05:49 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Python bltinmodule.c Message-ID: <199904071605.MAA23246@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: Remove unused variable from complex_from_string() code. From guido@cnri.reston.va.us Wed Apr 7 17:07:24 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Wed, 7 Apr 1999 12:07:24 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Python ceval.c import.c mystrtoul.c strtod.c thread.c Message-ID: <199904071607.MAA23291@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Python In directory eric:/projects/python/develop/guido/src/Python Modified Files: ceval.c import.c mystrtoul.c strtod.c thread.c Log Message: Changes by Mark Hammond for Windows CE. Mostly of the form #ifdef DONT_HAVE_header_H ... #endif around #include . From guido@cnri.reston.va.us Wed Apr 7 17:25:57 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Wed, 7 Apr 1999 12:25:57 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Lib/lib-tk Tkinter.py Message-ID: <199904071625.MAA23400@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: lower, tkraise/lift hide Misc.lower, Misc.tkraise/lift, so the preferred name for them is tag_lower, tag_raise (similar to tag_bind, and similar to the Text widget); unfortunately can't delete the old ones yet (maybe in 1.6) From guido@cnri.reston.va.us Wed Apr 7 18:23:11 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Wed, 7 Apr 1999 13:23:11 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Misc python.gif Message-ID: <199904071723.NAA23586@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Misc In directory eric:/projects/python/develop/guido/src/Misc Removed Files: python.gif Log Message: Removing an unused image of a snake. I don't know what its origins are but I think I've seen it once in a NeXT dictionary application -- not sure whether anyone owns copyright but I don't see why we should risk it. From guido@cnri.reston.va.us Wed Apr 7 19:27:31 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Wed, 7 Apr 1999 14:27:31 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Tools/idle idlever.py Message-ID: <199904071827.OAA23968@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: Version bump awaiting impending new release. (Not much has changed :-( ) From guido@cnri.reston.va.us Wed Apr 7 19:32:53 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Wed, 7 Apr 1999 14:32:53 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Python pythonrun.c Message-ID: <199904071832.OAA24002@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Python In directory eric:/projects/python/develop/guido/src/Python Modified Files: pythonrun.c Log Message: Alas, get rid of the Win specific hack to ask the user to press Return before exiting when an error happened. This didn't work right when Python is invoked from a daemon. From guido@cnri.reston.va.us Wed Apr 7 19:42:00 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Wed, 7 Apr 1999 14:42:00 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Tools/idle NEWS.txt README.txt Message-ID: <199904071842.OAA24166@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 README.txt Log Message: New version. From guido@cnri.reston.va.us Wed Apr 7 19:43:23 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Wed, 7 Apr 1999 14:43:23 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Tools/idle ChangeLog Message-ID: <199904071843.OAA24208@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: ChangeLog Log Message: New change log. From guido@cnri.reston.va.us Wed Apr 7 20:00:59 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Wed, 7 Apr 1999 15:00:59 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Lib/test test_gzip.py Message-ID: <199904071900.PAA24241@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_gzip.py Log Message: Use binary mode for all gzip files we open. From guido@cnri.reston.va.us Wed Apr 7 21:23:19 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Wed, 7 Apr 1999 16:23:19 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Modules zlibmodule.c Message-ID: <199904072023.QAA24780@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Modules In directory eric:/projects/python/develop/guido/src/Modules Modified Files: zlibmodule.c Log Message: Patch by Andrew Kuchling to unflush() (flush() for deflating). Without this, if inflate() returned Z_BUF_ERROR asking for more output space, we would report the error; now, we increase the buffer size and try again, just as for Z_OK. From guido@cnri.reston.va.us Thu Apr 8 14:57:09 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Thu, 8 Apr 1999 09:57:09 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Python thread_wince.h Message-ID: <199904081357.JAA25395@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Python In directory eric:/projects/python/develop/guido/src/Python Added Files: thread_wince.h Log Message: Win/CE thread support by Mark Hammond. From guido@cnri.reston.va.us Thu Apr 8 15:46:09 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Thu, 8 Apr 1999 10:46:09 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Lib/lib-tk Tkinter.py Message-ID: <199904081446.KAA25523@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: Delete an accidentally checked-in feature that actually broke more than was worth it: when deleting a canvas item, it would try to automatically delete the bindings for that item. Since there's nothing that says you can't reuse the tag and still have the bindings, this is not correct. Also, it broke at least one demo (Demo/tkinter/matt/rubber-band-box-demo-1.py). From guido@cnri.reston.va.us Thu Apr 8 16:18:13 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Thu, 8 Apr 1999 11:18:13 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Demo/tkinter/matt window-creation-w-location.py Message-ID: <199904081518.LAA29356@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Demo/tkinter/matt In directory eric:/projects/python/develop/guido/src/Demo/tkinter/matt Modified Files: window-creation-w-location.py Log Message: This demo imported some private code from Matt. Make it cripple along. From guido@cnri.reston.va.us Thu Apr 8 18:23:14 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Thu, 8 Apr 1999 13:23:14 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Lib/test test_strftime.py Message-ID: <199904081723.NAA29635@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_strftime.py Log Message: On Windows, we suddenly find, strftime() may return "" for an unsupported format string. (I guess this is because the logic for deciding whether to reallocate the buffer or not has been improved.) This caused the test code to crash on result[0]. Fix this by assuming an empty result also means the format is not supported. From guido@cnri.reston.va.us Thu Apr 8 21:18:01 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Thu, 8 Apr 1999 16:18:01 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Misc NEWS Message-ID: <199904082018.QAA03071@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: News for the 1.5.2c1 release. From guido@cnri.reston.va.us Thu Apr 8 21:22:48 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Thu, 8 Apr 1999 16:22:48 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Lib/test test_strftime.py Message-ID: <199904082022.QAA03110@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_strftime.py Log Message: # Bah. The same problem occurred a second time. From guido@cnri.reston.va.us Thu Apr 8 21:23:30 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Thu, 8 Apr 1999 16:23:30 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src README Message-ID: <199904082023.QAA03132@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: Release 1.5.2c1. From guido@cnri.reston.va.us Thu Apr 8 21:23:45 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Thu, 8 Apr 1999 16:23:45 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Include patchlevel.h Message-ID: <199904082023.QAA03150@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Include In directory eric:/projects/python/develop/guido/src/Include Modified Files: patchlevel.h Log Message: Release 1.5.2c1 From guido@cnri.reston.va.us Thu Apr 8 21:27:55 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Thu, 8 Apr 1999 16:27:55 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Lib/dos-8x3 test_cpi.py test_gzi.py test_pic.py test_pop.py test_use.py basehttp.py compilea.py exceptio.py mimetype.py nturl2pa.py posixfil.py test_bsd.py test_fcn.py test_ntp.py test_zli.py userdict.py userlist.py Message-ID: <199904082027.QAA03199@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: basehttp.py compilea.py exceptio.py mimetype.py nturl2pa.py posixfil.py test_bsd.py test_fcn.py test_ntp.py test_zli.py userdict.py userlist.py Added Files: test_cpi.py test_gzi.py test_pic.py test_pop.py test_use.py Log Message: The usual From guido@cnri.reston.va.us Thu Apr 8 21:28:28 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Thu, 8 Apr 1999 16:28:28 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Tools/idle ClassBrowser.py Message-ID: <199904082028.QAA03218@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: ClassBrowser.py Log Message: # TODO entries changed From guido@cnri.reston.va.us Thu Apr 8 21:28:43 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Thu, 8 Apr 1999 16:28:43 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Tools/idle TODO.txt Message-ID: <199904082028.QAA03236@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: # TODO entries changed From guido@cnri.reston.va.us Thu Apr 8 21:42:14 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Thu, 8 Apr 1999 16:42:14 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src README Message-ID: <199904082042.QAA03309@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: # File location for tut.tex and URL for Aaron Watters' tutorial have changed. From guido@cnri.reston.va.us Thu Apr 8 21:49:13 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Thu, 8 Apr 1999 16:49:13 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/PCbuild zlib.dsp Message-ID: <199904082049.QAA03344@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/PCbuild In directory eric:/projects/python/develop/guido/src/PCbuild Modified Files: zlib.dsp Log Message: Now using static zlib 1.1.3 From guido@cnri.reston.va.us Thu Apr 8 21:50:28 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Thu, 8 Apr 1999 16:50:28 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/PCbuild python15.wse Message-ID: <199904082050.QAA03364@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: Release 1.5.2c1. Add IDLE and Uninstall to program group. Don't distribute zlib.dll. Tweak some comments. From guido@cnri.reston.va.us Fri Apr 9 00:13:39 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Thu, 8 Apr 1999 19:13:39 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/PCbuild python15.wse Message-ID: <199904082313.TAA05181@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: Use the Tcl 8.0.5 installer. Add a variable %_TCL_% that makes it easier to switch to a different version. From guido@cnri.reston.va.us Fri Apr 9 15:49:06 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Fri, 9 Apr 1999 10:49:06 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Lib shlex.py netrc.py Message-ID: <199904091449.KAA00701@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory eric:/projects/python/develop/guido/src/Lib Modified Files: shlex.py netrc.py Log Message: Get rid of #! line From fdrake@weyr.cnri.reston.va.us Fri Apr 9 15:53:38 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 9 Apr 1999 10:53:38 -0400 Subject: [Python-checkins] CVS: python/dist/src/Doc/tools keywords.py Message-ID: <199904091453.KAA01033@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: keywords.py Log Message: Use #!/usr/bin/env python instead of #!/usr/local/bin/python. From guido@cnri.reston.va.us Fri Apr 9 15:56:37 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Fri, 9 Apr 1999 10:56:37 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Tools/scripts fixps.py Message-ID: <199904091456.KAA00769@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Tools/scripts In directory eric:/projects/python/develop/guido/src/Tools/scripts Modified Files: fixps.py Log Message: Use re instead of regex. Don't rewrite the file in place. (Reported by Andy Dustman.) From fdrake@weyr.cnri.reston.va.us Fri Apr 9 20:57:12 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 9 Apr 1999 15:57:12 -0400 Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libre.tex Message-ID: <199904091957.PAA01463@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: Misspellling: "occurance" --> "occurrence" From guido@cnri.reston.va.us Sat Apr 10 14:57:19 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Sat, 10 Apr 1999 09:57:19 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Tools/pynche __init__.py Message-ID: <199904101357.JAA02355@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Tools/pynche In directory eric:/projects/python/develop/guido/src/Tools/pynche Modified Files: __init__.py Log Message: Avoid totally empty files. From guido@cnri.reston.va.us Sat Apr 10 14:59:21 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Sat, 10 Apr 1999 09:59:21 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/PC/vc15_lib _.c Message-ID: <199904101359.JAA02386@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/PC/vc15_lib In directory eric:/projects/python/develop/guido/src/PC/vc15_lib Modified Files: _.c Log Message: Avoid totally empty files. From guido@cnri.reston.va.us Sat Apr 10 15:00:29 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Sat, 10 Apr 1999 10:00:29 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/PC/vc15_w31 _.c Message-ID: <199904101400.KAA02415@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/PC/vc15_w31 In directory eric:/projects/python/develop/guido/src/PC/vc15_w31 Modified Files: _.c Log Message: Avoid totally empty files. From guido@cnri.reston.va.us Sat Apr 10 16:46:02 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Sat, 10 Apr 1999 11:46:02 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Modules socketmodule.c Message-ID: <199904101546.LAA04146@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: 3-arg gethostbyname_r doesn't really work on OSF/1. From guido@cnri.reston.va.us Sat Apr 10 16:47:00 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Sat, 10 Apr 1999 11:47:00 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Modules regexpr.c shamodule.c Message-ID: <199904101547.LAA04165@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Modules In directory eric:/projects/python/develop/guido/src/Modules Modified Files: regexpr.c shamodule.c Log Message: casts for picky compilers. From guido@cnri.reston.va.us Sat Apr 10 16:48:25 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Sat, 10 Apr 1999 11:48:25 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Objects fileobject.c Message-ID: <199904101548.LAA04184@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: casts for picky compilers. From guido@cnri.reston.va.us Sat Apr 10 17:01:50 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Sat, 10 Apr 1999 12:01:50 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src configure.in Message-ID: <199904101601.MAA04339@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: Quote a bunch of shell variables used in test, related to long-long. From guido@cnri.reston.va.us Sat Apr 10 17:02:21 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Sat, 10 Apr 1999 12:02:21 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src configure Message-ID: <199904101602.MAA04365@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 Sat Apr 10 17:04:08 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Sat, 10 Apr 1999 12:04:08 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src README Message-ID: <199904101604.MAA04388@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: Add DEC Ultrix notes (from Donn Cave's email). From guido@cnri.reston.va.us Sat Apr 10 18:17:52 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Sat, 10 Apr 1999 13:17:52 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Misc ACKS Message-ID: <199904101717.NAA04538@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: Correct missed character in Andrew Dalke's name. From guido@cnri.reston.va.us Sat Apr 10 19:42:04 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Sat, 10 Apr 1999 14:42:04 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/PC _tkinter.def Message-ID: <199904101842.OAA04640@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/PC In directory eric:/projects/python/develop/guido/src/PC Removed Files: _tkinter.def Log Message: No longer needed. From guido@cnri.reston.va.us Mon Apr 12 15:34:18 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 12 Apr 1999 10:34:18 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Lib gzip.py Message-ID: <199904121434.KAA07343@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory eric:/projects/python/develop/guido/src/Lib Modified Files: gzip.py Log Message: Two different changes. 1. Jack Jansen reports that on the Mac, the time may be negative, and solves this by adding a write32u() function that writes an unsigned long. 2. On 64-bit platforms the CRC comparison fails; I've fixed this by casting both values to be compared to "unsigned long" i.e. modulo 0x100000000L. From guido@cnri.reston.va.us Mon Apr 12 15:34:51 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 12 Apr 1999 10:34:51 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Lib/plat-linux2 CDROM.py Message-ID: <199904121434.KAA07363@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib/plat-linux2 In directory eric:/projects/python/develop/guido/src/Lib/plat-linux2 Added Files: CDROM.py Log Message: Forgot to add this file. CDROM device parameters. From guido@cnri.reston.va.us Mon Apr 12 15:35:10 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 12 Apr 1999 10:35:10 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Lib/plat-sunos5 CDIO.py Message-ID: <199904121435.KAA07383@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib/plat-sunos5 In directory eric:/projects/python/develop/guido/src/Lib/plat-sunos5 Added Files: CDIO.py Log Message: Forgot to add this file. CDROM device parameters. From guido@cnri.reston.va.us Mon Apr 12 15:35:49 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 12 Apr 1999 10:35:49 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Modules zlibmodule.c Message-ID: <199904121435.KAA07404@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Modules In directory eric:/projects/python/develop/guido/src/Modules Modified Files: zlibmodule.c Log Message: Cast added by Jack Jansen (for Mac port). From guido@cnri.reston.va.us Mon Apr 12 15:47:32 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 12 Apr 1999 10:47:32 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src README Message-ID: <199904121447.KAA07472@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: Clarify PC build instructions (point to PCbuild). From guido@cnri.reston.va.us Mon Apr 12 15:49:05 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 12 Apr 1999 10:49:05 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/PC readme.txt vc40.mak Message-ID: <199904121449.KAA07496@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/PC In directory eric:/projects/python/develop/guido/src/PC Modified Files: readme.txt Removed Files: vc40.mak Log Message: Remove all VC++ info (except VC 1.5) from readme.txt; remove the VC++ 4.0 project file; remove the unused _tkinter extern defs. From fdrake@weyr.cnri.reston.va.us Mon Apr 12 16:41:46 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 12 Apr 1999 11:41:46 -0400 Subject: [Python-checkins] CVS: python/dist/src/Doc/html .cvsignore Message-ID: <199904121541.LAA05358@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 the doc/ directory ("Documenting Python"). From guido@cnri.reston.va.us Mon Apr 12 17:42:15 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 12 Apr 1999 12:42:15 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Modules Makefile.pre.in Message-ID: <199904121642.MAA07939@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Modules In directory eric:/projects/python/develop/guido/src/Modules Modified Files: Makefile.pre.in Log Message: 'clean' target should remove hassignal. From guido@cnri.reston.va.us Mon Apr 12 19:16:12 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 12 Apr 1999 14:16:12 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src README Message-ID: <199904121816.OAA08457@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: Add note about -D_REENTRANT for HP-UX 10.20. From guido@cnri.reston.va.us Mon Apr 12 20:01:47 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 12 Apr 1999 15:01:47 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src README Message-ID: <199904121901.PAA08572@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: Add note about popen2 problem on Linux noticed by Pablo Bleyer. From guido@cnri.reston.va.us Mon Apr 12 23:51:22 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 12 Apr 1999 18:51:22 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Modules cPickle.c Message-ID: <199904122251.SAA08962@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 accidentally reversed NULL test in load_mark(). Suggested by Tamito Kajiyama. (This caused a bug only on platforms where malloc(0) returns NULL.) From guido@cnri.reston.va.us Tue Apr 13 05:07:34 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Tue, 13 Apr 1999 00:07:34 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Modules socketmodule.c Message-ID: <199904130407.AAA12188@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: Put back __osf__ support for gethostbyname_r(); the real bug was that it was being used even without threads. This of course might be an all-platform problem so now we only use the _r variant when we are using threads. From guido@cnri.reston.va.us Tue Apr 13 05:20:50 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Tue, 13 Apr 1999 00:20:50 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Lib threading_api.py Message-ID: <199904130420.AAA12278@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory eric:/projects/python/develop/guido/src/Lib Removed Files: threading_api.py Log Message: Removed; since long subsumed in Doc/lib/libthreading.tex From guido@cnri.reston.va.us Tue Apr 13 05:24:24 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Tue, 13 Apr 1999 00:24:24 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Lib pstats.py Message-ID: <199904130424.AAA12307@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory eric:/projects/python/develop/guido/src/Lib Modified Files: pstats.py Log Message: Fix mysterious references to jprofile that were in the source since its creation. I'm assuming these were once valid references to "Jim Roskind's profile"... From guido@cnri.reston.va.us Tue Apr 13 15:23:48 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Tue, 13 Apr 1999 10:23:48 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/PC python_nt.rc Message-ID: <199904131423.KAA13555@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/PC In directory eric:/projects/python/develop/guido/src/PC Modified Files: python_nt.rc Log Message: Bump the myusterious M$ version number from 1,5,2,1 to 1,5,2,3. (I can't even display this on NT, maybe Win/98 can?) From guido@cnri.reston.va.us Tue Apr 13 15:25:53 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Tue, 13 Apr 1999 10:25:53 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Misc ACKS Message-ID: <199904131425.KAA13606@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: Bunch of new names who helped iron out the last wrinkles of 1.5.2. From guido@cnri.reston.va.us Tue Apr 13 15:32:14 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Tue, 13 Apr 1999 10:32:14 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Python thread_solaris.h Message-ID: <199904131432.KAA13654@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Python In directory eric:/projects/python/develop/guido/src/Python Modified Files: thread_solaris.h Log Message: While I can't really test this thoroughly, Pat Knight and the Solaris man pages suggest that the proper thing to do is to add THR_NEW_LWP to the flags on thr_create(), and that there really isn't a downside, so I'll do that. From guido@cnri.reston.va.us Tue Apr 13 15:32:43 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Tue, 13 Apr 1999 10:32:43 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Misc ACKS Message-ID: <199904131432.KAA13673@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: More (Cameron Laird is honorary; the others are 1.5.2c1 testers). From guido@cnri.reston.va.us Tue Apr 13 15:46:13 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Tue, 13 Apr 1999 10:46:13 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Include patchlevel.h Message-ID: <199904131446.KAA14078@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Include In directory eric:/projects/python/develop/guido/src/Include Modified Files: patchlevel.h Log Message: Prepare for final release. From guido@cnri.reston.va.us Tue Apr 13 15:47:28 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Tue, 13 Apr 1999 10:47:28 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src README Message-ID: <199904131447.KAA15467@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: Prepare for final release. From guido@cnri.reston.va.us Tue Apr 13 16:41:12 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Tue, 13 Apr 1999 11:41:12 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/PC config.c Message-ID: <199904131541.LAA17955@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: Added sha module! From guido@cnri.reston.va.us Tue Apr 13 16:44:22 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Tue, 13 Apr 1999 11:44:22 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/PCbuild python15.dsp Message-ID: <199904131544.LAA17983@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: Added shamodule.c From guido@cnri.reston.va.us Tue Apr 13 16:44:50 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Tue, 13 Apr 1999 11:44:50 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/PCbuild python15.wse Message-ID: <199904131544.LAA18003@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: Bump version to 1.5.2 (final) From guido@cnri.reston.va.us Tue Apr 13 16:52:48 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Tue, 13 Apr 1999 11:52:48 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Misc NEWS Message-ID: <199904131552.LAA18066@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: News for 1.5.2 (final). From fdrake@weyr.cnri.reston.va.us Tue Apr 13 22:22:48 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 13 Apr 1999 17:22:48 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/texinputs boilerplate.tex Message-ID: <199904132122.RAA14381@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: Just in case a copy of the documentation gets released somehow... From fdrake@weyr.cnri.reston.va.us Tue Apr 13 22:36:45 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 13 Apr 1999 17:36:45 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libpdb.tex Message-ID: <199904132136.RAA14787@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: libpdb.tex Log Message: Work around problems with HTML conversion by making the break and tbreak synopses be all on one line (each). Known problem, most recently reported by Barry Scott . From fdrake@weyr.cnri.reston.va.us Tue Apr 13 22:38:03 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 13 Apr 1999 17:38:03 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libstat.tex Message-ID: <199904132138.RAA14813@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: libstat.tex Log Message: Fix availability declaration for stat module; report by Barry Scott . From fdrake@weyr.cnri.reston.va.us Tue Apr 13 22:39:32 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 13 Apr 1999 17:39:32 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libbastion.tex Message-ID: <199904132139.RAA14843@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: libbastion.tex Log Message: Minor cleanup. From fdrake@weyr.cnri.reston.va.us Tue Apr 13 23:03:28 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 13 Apr 1999 18:03:28 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libpopen2.tex Message-ID: <199904132203.SAA15487@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: Fix availability declaration for popen2 module; report by Barry Scott . From fdrake@weyr.cnri.reston.va.us Tue Apr 13 23:09:00 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 13 Apr 1999 18:09:00 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/perl python.perl Message-ID: <199904132209.SAA15582@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 problem of LaTeX leakage in the module synopsis tables at the beginning of chapters. Known problem reported by Barry Scott . From fdrake@weyr.cnri.reston.va.us Tue Apr 13 23:17:56 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 13 Apr 1999 18:17:56 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/perl howto.perl manual.perl Message-ID: <199904132217.SAA15641@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: howto.perl manual.perl Log Message: Don't include the verbatim style; the default handling is better. From fdrake@weyr.cnri.reston.va.us Tue Apr 13 23:19:22 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 13 Apr 1999 18:19:22 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/mac mac.tex Message-ID: <199904132219.SAA15687@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: mac.tex Log Message: For now, comment out the \ignorePlatformAnnotation; the global index doesn't really work with this. From fdrake@weyr.cnri.reston.va.us Wed Apr 14 06:02:09 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 14 Apr 1999 01:02:09 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/tools mkdvi.sh Message-ID: <199904140502.BAA16911@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 some support for the module index, so this can be used to build the .aux file for any of the "manual" class documents. From fdrake@weyr.cnri.reston.va.us Wed Apr 14 13:52:16 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 14 Apr 1999 08:52:16 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/ref ref6.tex Message-ID: <199904141252.IAA17363@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: ref6.tex Log Message: Typo: "Otherwose" --> "Otherwise" (reported by Joakim Sernbrant ). Misc. small fixes to the logical markup. From fdrake@weyr.cnri.reston.va.us Wed Apr 14 14:13:34 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 14 Apr 1999 09:13:34 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/tools mkdvi.sh Message-ID: <199904141313.JAA17532@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: Further refinement, to allow this to handle the library reference as well as the other "manual" documents. From fdrake@weyr.cnri.reston.va.us Wed Apr 14 15:04:40 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 14 Apr 1999 10:04:40 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/paper-letter Makefile Message-ID: <199904141404.KAA18252@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/paper-letter In directory weyr:/home/fdrake/projects/python/Doc/paper-letter Modified Files: Makefile Log Message: Use the tools/mkdvi.sh script to generate DVI and PDF output for the library reference now that it's sufficiently capable. From fdrake@weyr.cnri.reston.va.us Wed Apr 14 15:28:49 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 14 Apr 1999 10:28:49 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/html index.html Message-ID: <199904141428.KAA19101@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: index.html Log Message: Use the standard stylesheet here as well. From fdrake@weyr.cnri.reston.va.us Wed Apr 14 15:31:54 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 14 Apr 1999 10:31:54 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libstdtypes.tex Message-ID: <199904141431.KAA19137@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: Correct documentation for .read(); Python makes a serious best-effort to return 'size' bytes. Point out that this may mean multiple fread() calls. Reported by Anders Hammarquist via the Debian crew. From fdrake@weyr.cnri.reston.va.us Thu Apr 15 16:11:42 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 15 Apr 1999 11:11:42 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libdbhash.tex lib.tex libanydbm.tex libshelve.tex Message-ID: <199904151511.LAA18576@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 libanydbm.tex libshelve.tex Added Files: libdbhash.tex Log Message: Document the dbhash module, and link to it from appropriate places. From fdrake@weyr.cnri.reston.va.us Thu Apr 15 16:12:38 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 15 Apr 1999 11:12:38 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc Makefile.deps Message-ID: <199904151512.LAA18608@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: Add libdbhash.tex. From fdrake@weyr.cnri.reston.va.us Thu Apr 15 17:05:31 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 15 Apr 1999 12:05:31 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libundoc.tex Message-ID: <199904151605.MAA19096@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: Removed dbhash from the undocumented list. From fdrake@weyr.cnri.reston.va.us Fri Apr 16 14:17:07 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 16 Apr 1999 09:17:07 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/tut tut.tex Message-ID: <199904161317.JAA24350@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: In list of sequence comparison examples, "=" should be "==". Reported by Mirko Liss . From fdrake@weyr.cnri.reston.va.us Fri Apr 16 15:03:33 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 16 Apr 1999 10:03:33 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libdbhash.tex Message-ID: <199904161403.KAA24706@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: libdbhash.tex Log Message: Minor nits, include author info. From fdrake@weyr.cnri.reston.va.us Fri Apr 16 19:26:24 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 16 Apr 1999 14:26:24 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libundoc.tex Message-ID: <199904161826.OAA29094@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 link to Fredrik Lundh's online Tkinter reference material. From fdrake@weyr.cnri.reston.va.us Fri Apr 16 20:00:49 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 16 Apr 1999 15:00:49 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libselect.tex Message-ID: <199904161900.PAA29233@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: libselect.tex Log Message: Remove superfluous index entry for posix.popen(); no longer appropriate since popen() is only documented in os. From guido@cnri.reston.va.us Mon Apr 19 17:23:17 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 19 Apr 1999 12:23:17 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Tools/idle AutoIndent.py Message-ID: <199904191623.MAA03245@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: AutoIndent.py Log Message: Tim Peters implements some of my wishes: o Makes the tab key intelligently insert spaces when appropriate (see Help list banter twixt David Ascher and me; idea stolen from every other editor on earth ). o newline_and_indent_event trims trailing whitespace on the old line (pymode and Codewright). o newline_and_indent_event no longer fooled by trailing whitespace or comment after ":" (pymode, PTUI). o newline_and_indent_event now reduces the new line's indentation after return, break, continue, raise and pass stmts (pymode). The last two are easy to fool in the presence of strings & continuations, but pymode requires Emacs's high-powered C parsing functions to avoid that in finite time. From guido@cnri.reston.va.us Mon Apr 19 17:26:04 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 19 Apr 1999 12:26:04 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Tools/idle TODO.txt Message-ID: <199904191626.MAA03266@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: A few wishes are now fulfilled. From guido@cnri.reston.va.us Mon Apr 19 17:50:28 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 19 Apr 1999 12:50:28 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Modules fpectlmodule.c Message-ID: <199904191650.MAA03435@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Modules In directory eric:/projects/python/develop/guido/src/Modules Modified Files: fpectlmodule.c Log Message: Avoid triggering Alpha OSF/1 specific code on Alpha NT or Linux. From guido@cnri.reston.va.us Mon Apr 19 18:16:14 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 19 Apr 1999 13:16:14 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Modules makesetup Message-ID: <199904191716.NAA03797@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Modules In directory eric:/projects/python/develop/guido/src/Modules Modified Files: makesetup Log Message: Patch by Drew Csillag for FreeBSD's sh, which doesn't automatically join \-terminated lines. From guido@cnri.reston.va.us Mon Apr 19 18:22:14 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 19 Apr 1999 13:22:14 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Lib/test test_fcntl.py Message-ID: <199904191722.NAA03821@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: Daniel Neri: OpenBSD is just as BSD'ish as the other BSD's ;-) From guido@cnri.reston.va.us Mon Apr 19 18:44:41 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 19 Apr 1999 13:44:41 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Objects listobject.c Message-ID: <199904191744.NAA03981@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Objects In directory eric:/projects/python/develop/guido/src/Objects Modified Files: listobject.c Log Message: Improve text of some error messages, as suggested by Sean Reifschneider. From guido@cnri.reston.va.us Mon Apr 19 18:54:21 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 19 Apr 1999 13:54:21 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Modules main.c Message-ID: <199904191754.NAA04237@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: Patch from Tim Peters to repare a the problem that tracebacks are off by a line when Python is run with -x. From guido@cnri.reston.va.us Mon Apr 19 18:58:20 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 19 Apr 1999 13:58:20 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Modules cPickle.c Message-ID: <199904191758.NAA04323@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 writes: I have attached a new cPickle that adds a new control attribute to unpicklers: Added new Unpickler attribute, find_global. If set to None, then global and instance pickles are disabled. Otherwise, it should be set to a callable object that takes two arguments, a module name and an object name, and returns an object. If the attribute is unset, then the default mechanism is used. This feature provides an additional mechanism for controlling which classes can be used for unpickling. From fdrake@weyr.cnri.reston.va.us Mon Apr 19 19:04:00 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 19 Apr 1999 14:04:00 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Lib turtle.py Message-ID: <199904191804.OAA03146@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory weyr:/home/fdrake/projects/python/Lib Removed Files: turtle.py Log Message: Relocating file to Lib/lib-tk. From guido@cnri.reston.va.us Mon Apr 19 19:04:40 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 19 Apr 1999 14:04:40 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Lib rfc822.py Message-ID: <199904191804.OAA04483@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory eric:/projects/python/develop/guido/src/Lib Modified Files: rfc822.py Log Message: Utility function that yields a properly formatted time string. (Idea by Jeff Bauer, code by Jeremy, renamed and "Date:" constant stripped from return value by GvR.) From fdrake@weyr.cnri.reston.va.us Mon Apr 19 22:19:23 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 19 Apr 1999 17:19:23 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libbsddb.tex libanydbm.tex libdbhash.tex Message-ID: <199904192119.RAA03924@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 libdbhash.tex Added Files: libbsddb.tex Log Message: bsddb docs from Skip Montanaro; added interesting links. From fdrake@weyr.cnri.reston.va.us Mon Apr 19 22:20:15 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 19 Apr 1999 17:20:15 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libcolorsys.tex Message-ID: <199904192120.RAA03951@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: libcolorsys.tex Log Message: colorsys docs from David Ascher. From fdrake@weyr.cnri.reston.va.us Mon Apr 19 22:20:52 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 19 Apr 1999 17:20:52 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib lib.tex libundoc.tex Message-ID: <199904192120.RAA03983@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 Log Message: Updated to reflect additions. From fdrake@weyr.cnri.reston.va.us Mon Apr 19 22:21:29 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 19 Apr 1999 17:21:29 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc Makefile.deps Message-ID: <199904192121.RAA04015@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: Updated to reflect additions. From bwarsaw@cnri.reston.va.us Mon Apr 19 23:34:58 1999 From: bwarsaw@cnri.reston.va.us (Barry A. Warsaw) Date: Mon, 19 Apr 1999 18:34:58 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Tools/ht2html - New directory Message-ID: <199904192234.SAA01976@anthem.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Tools/ht2html In directory anthem:/projects/python/develop/bwarsaw/src/Tools/ht2html Log Message: Directory /projects/cvsroot/python/dist/src/Tools/ht2html added to the repository From bwarsaw@cnri.reston.va.us Mon Apr 19 23:35:57 1999 From: bwarsaw@cnri.reston.va.us (Barry A. Warsaw) Date: Mon, 19 Apr 1999 18:35:57 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Tools/ht2html README Message-ID: <199904192235.SAA02004@anthem.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Tools/ht2html In directory anthem:/projects/python/develop/bwarsaw/src/Tools/ht2html Added Files: README Log Message: README for ht2html.py Python site generator scripts From bwarsaw@cnri.reston.va.us Mon Apr 19 23:43:31 1999 From: bwarsaw@cnri.reston.va.us (Barry A. Warsaw) Date: Mon, 19 Apr 1999 18:43:31 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Tools/ht2html README Message-ID: <199904192243.SAA02048@anthem.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Tools/ht2html In directory anthem:/projects/python/develop/bwarsaw/src/Tools/ht2html Modified Files: Tag: stringmeth README Log Message: Add some examples From bwarsaw@cnri.reston.va.us Mon Apr 19 23:46:30 1999 From: bwarsaw@cnri.reston.va.us (Barry A. Warsaw) Date: Mon, 19 Apr 1999 18:46:30 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Tools/ht2html README Message-ID: <199904192246.SAA02075@anthem.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Tools/ht2html In directory anthem:/projects/python/develop/bwarsaw/python/dist/src/Tools/ht2html Modified Files: README Log Message: Add some examples, with elaboration From guido@cnri.reston.va.us Tue Apr 20 13:27:33 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Tue, 20 Apr 1999 08:27:33 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Lib popen2.py Message-ID: <199904201227.IAA05720@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory eric:/projects/python/develop/guido/src/Lib Modified Files: popen2.py Log Message: Calling _cleanup() does not guarantee that all processes have terminated; this makes the final assert in the self-test code fail if the parent runs faster than the children. Fix this by calling wait() on the remaining children instead. From fdrake@weyr.cnri.reston.va.us Tue Apr 20 14:41:16 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 20 Apr 1999 09:41:16 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libxdrlib.tex Message-ID: <199904201341.JAA09805@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: libxdrlib.tex Log Message: Added example use of pack_list() to help explain the pack_item parameter. Lack of clarity reported by Matthew Gallagher . From guido@cnri.reston.va.us Tue Apr 20 16:00:01 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Tue, 20 Apr 1999 11:00:01 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Tools/idle SearchEngine.py Message-ID: <199904201500.LAA06049@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: SearchEngine.py Log Message: Patch by Mark Favas: it fixes the search engine behaviour where an unsuccessful search wraps around and re-searches that part of the file between the start of the search and the end of the file - only really an issue for very large files, but... (also removes a redundant m.span() call). From guido@cnri.reston.va.us Tue Apr 20 16:45:32 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Tue, 20 Apr 1999 11:45:32 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Tools/idle IdlePrefs.py ColorDelegator.py EditorWindow.py PyShell.py Message-ID: <199904201545.LAA06328@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: ColorDelegator.py EditorWindow.py PyShell.py Added Files: IdlePrefs.py Log Message: Color preferences code by Loren Luke (massaged by me somewhat) From guido@cnri.reston.va.us Tue Apr 20 16:58:30 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Tue, 20 Apr 1999 11:58:30 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Tools/idle IdlePrefs.py Message-ID: <199904201558.LAA06396@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: IdlePrefs.py Log Message: Restored the original IDLE color scheme. From guido@cnri.reston.va.us Tue Apr 20 18:32:54 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Tue, 20 Apr 1999 13:32:54 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Tools/idle extend.txt Message-ID: <199904201732.NAA10586@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: extend.txt Log Message: For an event 'foo-bar', the corresponding method must be called foo_bar_event(). Therefore, fix the references to zoom_height() in the example. From fdrake@weyr.cnri.reston.va.us Tue Apr 20 19:18:56 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 20 Apr 1999 14:18:56 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libpyclbr.tex Message-ID: <199904201818.OAA11565@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: libpyclbr.tex Log Message: Added doc for the "module" attribute on the class descriptor objects; omission repoorted by Glyn Webster . From fdrake@weyr.cnri.reston.va.us Wed Apr 21 14:58:20 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 21 Apr 1999 09:58:20 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libstdtypes.tex Message-ID: <199904211358.JAA14719@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: Added index entry for "file objects"; this is appearantly referenced somewhere in the Reference Manual, and someone tried to locate it via the index. Report on the omission by Stefan Franke . From fdrake@weyr.cnri.reston.va.us Wed Apr 21 15:00:31 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 21 Apr 1999 10:00:31 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/perl python.perl Message-ID: <199904211400.KAA14755@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 some remaining index & consistency nits. (Many data member references were being omitted from the general index.) From guido@cnri.reston.va.us Wed Apr 21 16:27:33 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Wed, 21 Apr 1999 11:27:33 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Python errors.c Message-ID: <199904211527.LAA12267@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Python In directory eric:/projects/python/develop/guido/src/Python Modified Files: errors.c Log Message: Patch by Christian Tismer for Win32, to use FormatMessage() instead of strerror(). This improves the quality of the error messages. From guido@cnri.reston.va.us Wed Apr 21 16:49:35 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Wed, 21 Apr 1999 11:49:35 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Tools/idle ColorDelegator.py Message-ID: <199904211549.LAA12616@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: ColorDelegator.py Log Message: Patch by Tim Peters to speed up colorizing of big multiline strings. From fdrake@weyr.cnri.reston.va.us Wed Apr 21 16:57:30 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 21 Apr 1999 11:57:30 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libstruct.tex Message-ID: <199904211557.LAA16083@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 link to xdrlib module in "See also" section. From fdrake@weyr.cnri.reston.va.us Wed Apr 21 16:59:00 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 21 Apr 1999 11:59:00 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/perl python.perl Message-ID: <199904211559.LAA16106@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_funcline(): Remove some bogus generated stuff from the output (some text was only intended for the index). From fdrake@weyr.cnri.reston.va.us Wed Apr 21 17:00:25 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 21 Apr 1999 12:00:25 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libstruct.tex Message-ID: <199904211600.MAA16141@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: Oops; minor nit in example: none of the other interactive examples show the "trailing" prompt, so don't show it here! From guido@cnri.reston.va.us Wed Apr 21 17:06:28 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Wed, 21 Apr 1999 12:06:28 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Demo/classes bitvec.py Message-ID: <199904211606.MAA12687@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Demo/classes In directory eric:/projects/python/develop/guido/src/Demo/classes Modified Files: bitvec.py Log Message: Correct spelling of length, discovered by Christian Tismer. From guido@cnri.reston.va.us Wed Apr 21 17:19:18 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Wed, 21 Apr 1999 12:19:18 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libsmtplib.tex Message-ID: <199904211619.MAA14187@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: libsmtplib.tex Log Message: Important fix mentioned by The Dragon De Monsyne: the sendmail() method does _not_ disconnect the connection when it throws a SMTPHeloError! From fdrake@weyr.cnri.reston.va.us Wed Apr 21 17:29:19 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 21 Apr 1999 12:29:19 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libcmath.tex Message-ID: <199904211629.MAA16489@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: libcmath.tex Log Message: Mark the references to module names use \module or \refmodule (the closing paragraph used \code). From fdrake@weyr.cnri.reston.va.us Wed Apr 21 17:29:58 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 21 Apr 1999 12:29:58 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libmath.tex Message-ID: <199904211629.MAA16519@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: libmath.tex Log Message: Markup nits. From fdrake@weyr.cnri.reston.va.us Wed Apr 21 17:38:55 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 21 Apr 1999 12:38:55 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libarray.tex Message-ID: <199904211638.MAA16926@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: libarray.tex Log Message: Added "See also" reference to xdrlib. Markup nits. From fdrake@weyr.cnri.reston.va.us Wed Apr 21 17:41:41 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 21 Apr 1999 12:41:41 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libcfgparser.tex Message-ID: <199904211641.MAA16970@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: Markup nits. From guido@cnri.reston.va.us Wed Apr 21 17:52:21 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Wed, 21 Apr 1999 12:52:21 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Lib smtplib.py Message-ID: <199904211652.MAA14238@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory eric:/projects/python/develop/guido/src/Lib Modified Files: smtplib.py Log Message: Patch by Per Cederqvist, seemingly approved by The Dragon: Two problems: The SMTPRecipientsRefused class should not inherit SMTPResponseException, since it doesn't provide the smtp_code and smtp_error attributes. My patch for not adding an extra CRLF was apparently forgotten. The enclosed patch fixes these two problems. From fdrake@weyr.cnri.reston.va.us Wed Apr 21 18:01:16 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 21 Apr 1999 13:01:16 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libtempfile.tex Message-ID: <199904211701.NAA17058@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: libtempfile.tex Log Message: Markup nit to fixed dropped space in HTML output. From guido@cnri.reston.va.us Wed Apr 21 18:03:15 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Wed, 21 Apr 1999 13:03:15 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src configure configure.in Message-ID: <199904211703.NAA14352@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src In directory eric:/projects/python/develop/guido/src Modified Files: configure configure.in Log Message: FreeBSD/[34]* change, Dom Mitchell. From fdrake@weyr.cnri.reston.va.us Wed Apr 21 18:04:45 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 21 Apr 1999 13:04:45 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libfnmatch.tex Message-ID: <199904211704.NAA17289@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: libfnmatch.tex Log Message: Textual references to the glob module can be hyperlinks. From fdrake@weyr.cnri.reston.va.us Wed Apr 21 18:08:52 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 21 Apr 1999 13:08:52 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libshutil.tex Message-ID: <199904211708.NAA17336@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: Explain *why* the copytree() implementation is presented as the example! From fdrake@weyr.cnri.reston.va.us Wed Apr 21 18:18:05 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 21 Apr 1999 13:18:05 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib liblocale.tex Message-ID: <199904211718.NAA17390@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: liblocale.tex Log Message: Logical markup & other small nits. From fdrake@weyr.cnri.reston.va.us Wed Apr 21 18:29:15 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 21 Apr 1999 13:29:15 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libsocket.tex Message-ID: <199904211729.NAA17663@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: Logical markup nits. Make references to other modules hyperlinks. From fdrake@weyr.cnri.reston.va.us Wed Apr 21 18:57:16 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 21 Apr 1999 13:57:16 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libselect.tex Message-ID: <199904211757.NAA17978@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: libselect.tex Log Message: Work around LaTeX2HTML comment-handling bug. From fdrake@weyr.cnri.reston.va.us Wed Apr 21 19:01:15 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 21 Apr 1999 14:01:15 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libthread.tex Message-ID: <199904211801.OAA18029@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: libthread.tex Log Message: Nits. Reference to signal module becomes a hyperlink. From fdrake@weyr.cnri.reston.va.us Wed Apr 21 19:10:09 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 21 Apr 1999 14:10:09 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libwhichdb.tex Message-ID: <199904211810.OAA18284@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: libwhichdb.tex Log Message: Make the names of the referenced modules hyperlinks; they had not been marked at all. From fdrake@weyr.cnri.reston.va.us Wed Apr 21 19:13:33 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 21 Apr 1999 14:13:33 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libos.tex Message-ID: <199904211813.OAA18332@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: Small markup nits. From fdrake@weyr.cnri.reston.va.us Wed Apr 21 19:14:24 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 21 Apr 1999 14:14:24 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib librandom.tex Message-ID: <199904211814.OAA18396@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: librandom.tex Log Message: Make references to whrandom hyperlinks. From fdrake@weyr.cnri.reston.va.us Wed Apr 21 19:15:25 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 21 Apr 1999 14:15:25 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libstringio.tex Message-ID: <199904211815.OAA18495@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: Small nits, more hyperlinks. Added more information for cStringIO. From fdrake@weyr.cnri.reston.va.us Wed Apr 21 19:17:13 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 21 Apr 1999 14:17:13 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libstdtypes.tex Message-ID: <199904211817.OAA18591@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: Reflow paragraph to work around LaTeX2HTML dropping a space. From fdrake@weyr.cnri.reston.va.us Wed Apr 21 19:33:49 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 21 Apr 1999 14:33:49 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libposix.tex Message-ID: <199904211833.OAA18841@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: Reflow paragraph to work around LaTeX2HTML dropping a space. Make all references to the os module hyperlinks. From fdrake@weyr.cnri.reston.va.us Wed Apr 21 19:44:42 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 21 Apr 1999 14:44:42 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libzlib.tex Message-ID: <199904211844.OAA18916@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: libzlib.tex Log Message: The version information here was checked good in 1999, not 199. ;-) Added "See also" reference to zlib home page, even though it's mentioned in the text. From fdrake@weyr.cnri.reston.va.us Wed Apr 21 22:15:37 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 21 Apr 1999 17:15:37 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libposixfile.tex Message-ID: <199904212115.RAA19448@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: libposixfile.tex Log Message: Mark the "Notes:" sections under tables the same way it's done elsewhere in the library reference. From fdrake@weyr.cnri.reston.va.us Wed Apr 21 22:33:25 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 21 Apr 1999 17:33:25 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libarray.tex Message-ID: <199904212133.RAA19820@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: libarray.tex Log Message: Fix markup typo. From fdrake@weyr.cnri.reston.va.us Wed Apr 21 22:43:19 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 21 Apr 1999 17:43:19 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libprofile.tex Message-ID: <199904212143.RAA20034@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: libprofile.tex Log Message: Misc. markup nits. All sections get reasonable file names in the HTML output. From guido@cnri.reston.va.us Thu Apr 22 13:03:42 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Thu, 22 Apr 1999 08:03:42 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Python getversion.c Message-ID: <199904221203.IAA16036@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Python In directory eric:/projects/python/develop/guido/src/Python Modified Files: getversion.c Log Message: Allow longer strings (up to 80 chars each) for version, build, compiler info. From fdrake@weyr.cnri.reston.va.us Thu Apr 22 14:03:50 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 22 Apr 1999 09:03:50 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/texinputs ltxmarkup.sty Message-ID: <199904221303.JAA00871@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: ltxmarkup.sty Log Message: Added support for adding environment/macro parameters more cleanly: \op adds an optional parameter, and \p adds a required parameter. These are only defined in the context of the parameter list parameter of the envdesc and macrodesc environments. From fdrake@weyr.cnri.reston.va.us Thu Apr 22 14:05:28 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 22 Apr 1999 09:05:28 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/doc doc.tex Message-ID: <199904221305.JAA00894@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/doc In directory weyr:/home/fdrake/projects/python/Doc/doc Modified Files: doc.tex Log Message: Fill in a lot of the blanks. Add a start to the LaTeX primer section. Use Python-traditional XXX comments instead of square brackets that aren't as obvious or usefully grepable. From fdrake@weyr.cnri.reston.va.us Thu Apr 22 14:05:53 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 22 Apr 1999 09:05:53 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc TODO Message-ID: <199904221305.JAA00923@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: Add a couple of items. From fdrake@weyr.cnri.reston.va.us Thu Apr 22 14:08:09 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 22 Apr 1999 09:08:09 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/tools findmodrefs Message-ID: <199904221308.JAA00950@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: findmodrefs Log Message: Script to locate uses of \module where the module referred to is not the module being documented at that point in the documentation; these are candidates for conversion to \refmodule, which produces a hyperlink in the HTML and PDF versions of the output. From guido@cnri.reston.va.us Thu Apr 22 14:38:41 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Thu, 22 Apr 1999 09:38:41 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Tools/idle ColorDelegator.py Message-ID: <199904221338.JAA16223@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: ColorDelegator.py Log Message: Super-elegant patch by Tim Peters that speeds up colorization dramatically (up to 15 times he claims). Works by reading more than one line at a time, up to 100-line chunks (starting with one line and then doubling up to the limit). On a typical machine (e.g. Tim's P5-166) this doesn't reduce interactive responsiveness in a noticeable way. From fdrake@weyr.cnri.reston.va.us Thu Apr 22 15:06:36 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 22 Apr 1999 10:06:36 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libbsddb.tex Message-ID: <199904221406.KAA01548@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: libbsddb.tex Log Message: Add warning that last() and previous() don't work for hashtable databases (opened using hashopen()), as noted by Skip Montanaro on comp.lang.python. From guido@cnri.reston.va.us Thu Apr 22 15:07:34 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Thu, 22 Apr 1999 10:07:34 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Tools/idle TODO.txt Message-ID: <199904221407.KAA16286@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: Some more TODO items. Made up my mind about command line args, Run/Import, __main__. From fdrake@weyr.cnri.reston.va.us Thu Apr 22 15:16:15 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 22 Apr 1999 10:16:15 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc Makefile Message-ID: <199904221416.KAA01670@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: Updated a comment and the release number. From fdrake@weyr.cnri.reston.va.us Thu Apr 22 15:17:00 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 22 Apr 1999 10:17:00 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/texinputs boilerplate.tex Message-ID: <199904221417.KAA01694@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: Make an assertion. From fdrake@weyr.cnri.reston.va.us Thu Apr 22 15:55:44 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 22 Apr 1999 10:55:44 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libstat.tex Message-ID: <199904221455.KAA01981@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: libstat.tex Log Message: Don't refer to the system documentation as "man pages"; too Unix-centric. Note that this can be used with the output of os.fstat() as well as os.stat() and os.lstat(). From fdrake@weyr.cnri.reston.va.us Thu Apr 22 16:01:45 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 22 Apr 1999 11:01:45 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib lib.tex Message-ID: <199904221501.LAA02026@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: Move stat to the Generic chapter. From fdrake@weyr.cnri.reston.va.us Thu Apr 22 16:14:13 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 22 Apr 1999 11:14:13 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libstat.tex Message-ID: <199904221514.LAA02080@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: libstat.tex Log Message: Remove \platform declaration; this module is generic. From fdrake@weyr.cnri.reston.va.us Thu Apr 22 16:19:02 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 22 Apr 1999 11:19:02 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libcommands.tex Message-ID: <199904221519.LAA02118@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: libcommands.tex Log Message: Don't describe this module as being a popen() wrapper; that's a little confusing. This is clearly Unix-specific; label it as such. From fdrake@weyr.cnri.reston.va.us Thu Apr 22 16:53:36 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 22 Apr 1999 11:53:36 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libcommands.tex Message-ID: <199904221553.LAA02764@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: libcommands.tex Log Message: Shorten the section title. From fdrake@weyr.cnri.reston.va.us Thu Apr 22 17:03:32 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 22 Apr 1999 12:03:32 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib internet.tex Message-ID: <199904221603.MAA03025@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: internet.tex Log Message: Make reference to the socket module a hyperlink. From fdrake@weyr.cnri.reston.va.us Thu Apr 22 17:15:35 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 22 Apr 1999 12:15:35 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libftplib.tex Message-ID: <199904221615.MAA03085@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: libftplib.tex Log Message: Fix dropped space in the HTML output. From fdrake@weyr.cnri.reston.va.us Thu Apr 22 17:17:45 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 22 Apr 1999 12:17:45 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libgopherlib.tex Message-ID: <199904221617.MAA03108@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: libgopherlib.tex Log Message: Reference to urllib module can be a hyperlink. From fdrake@weyr.cnri.reston.va.us Thu Apr 22 17:21:10 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 22 Apr 1999 12:21:10 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libpoplib.tex Message-ID: <199904221621.MAA03334@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: libpoplib.tex Log Message: Fix minor (English) usage nits. From fdrake@weyr.cnri.reston.va.us Thu Apr 22 17:45:27 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 22 Apr 1999 12:45:27 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libnntplib.tex Message-ID: <199904221645.MAA03871@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: libnntplib.tex Log Message: Clean up some mark up. From fdrake@weyr.cnri.reston.va.us Thu Apr 22 17:46:18 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 22 Apr 1999 12:46:18 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libimaplib.tex Message-ID: <199904221646.MAA03895@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: libimaplib.tex Log Message: Minor logical markup nits. Make some module references hyperlinks. From fdrake@weyr.cnri.reston.va.us Thu Apr 22 17:47:28 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 22 Apr 1999 12:47:28 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libhttplib.tex Message-ID: <199904221647.MAA03923@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: libhttplib.tex Log Message: Make some module references hyperlinks. From fdrake@weyr.cnri.reston.va.us Thu Apr 22 17:50:41 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 22 Apr 1999 12:50:41 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libpdb.tex Message-ID: <199904221650.MAA03966@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: libpdb.tex Log Message: Logical markup and small nits. Don't refer to the STDWIN chapter; chances are really good it wasn't included. ;-) From fdrake@weyr.cnri.reston.va.us Thu Apr 22 18:23:35 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 22 Apr 1999 13:23:35 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libsmtplib.tex Message-ID: <199904221723.NAA04306@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: libsmtplib.tex Log Message: Added descriptions of the various exceptions, based on the docstrings. Various small cleanups. From fdrake@weyr.cnri.reston.va.us Thu Apr 22 18:53:37 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 22 Apr 1999 13:53:37 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libtelnetlib.tex Message-ID: <199904221753.NAA04682@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: libtelnetlib.tex Log Message: Clean up lots of mark up. From fdrake@weyr.cnri.reston.va.us Thu Apr 22 19:25:33 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 22 Apr 1999 14:25:33 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libsgmllib.tex Message-ID: <199904221825.OAA05373@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: libsgmllib.tex Log Message: Markup nits. Make module references hyperlinks. From fdrake@weyr.cnri.reston.va.us Thu Apr 22 19:25:48 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 22 Apr 1999 14:25:48 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libhtmllib.tex Message-ID: <199904221825.OAA05392@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: libhtmllib.tex Log Message: Markup nits. Make module references hyperlinks. From fdrake@weyr.cnri.reston.va.us Thu Apr 22 21:16:03 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 22 Apr 1999 16:16:03 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libxmllib.tex Message-ID: <199904222016.QAA06081@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 a "See also" section with some external references. From fdrake@weyr.cnri.reston.va.us Thu Apr 22 21:32:22 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 22 Apr 1999 16:32:22 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/tools findmodrefs Message-ID: <199904222032.QAA06143@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: findmodrefs Log Message: Add command line flags to just list the files that contain the offending lines or to include line numbers in the output. From guido@cnri.reston.va.us Thu Apr 22 21:49:36 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Thu, 22 Apr 1999 16:49:36 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Tools/idle PyShell.py Message-ID: <199904222049.QAA16986@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: A lot of changes to make the command line more useful. You can now do: idle.py -e file ... -- to edit files idle.py script arg ... -- to run a script idle.py -c cmd arg ... -- to run a command Other options, see also the usage message (also new!) for more details: -d -- enable debugger -s -- run $IDLESTARTUP or $PYTHONSTARTUP -t title -- set Python Shell window's title sys.argv is set accordingly, unless -e is used. sys.path is absolutized, and all relevant paths are inserted into it. Other changes: - the environment in which commands are executed is now the __main__ module - explicitly save sys.stdout etc., don't restore from sys.__stdout__ - new interpreter methods execsource(), execfile(), stuffsource() - a few small nits From guido@cnri.reston.va.us Thu Apr 22 21:50:34 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Thu, 22 Apr 1999 16:50:34 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Tools/idle OutputWindow.py Message-ID: <199904222050.QAA17019@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: OutputWindow.py Log Message: Added flush(), for completeness. From guido@cnri.reston.va.us Thu Apr 22 21:50:53 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Thu, 22 Apr 1999 16:50:53 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Tools/idle idlever.py Message-ID: <199904222050.QAA17036@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: New version to celebrate new command line From fdrake@weyr.cnri.reston.va.us Thu Apr 22 21:52:45 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 22 Apr 1999 16:52:45 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libimp.tex Message-ID: <199904222052.QAA06286@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: libimp.tex Log Message: Shorten the section title. From fdrake@weyr.cnri.reston.va.us Thu Apr 22 21:56:00 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 22 Apr 1999 16:56:00 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libmpz.tex Message-ID: <199904222056.QAA06318@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: Work around LaTeX2HTML comment-handling bug. From guido@cnri.reston.va.us Thu Apr 22 21:56:23 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Thu, 22 Apr 1999 16:56:23 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Tools/idle PyShell.py Message-ID: <199904222056.QAA17067@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: Nits: document use of $IDLESTARTUP; display idle version From fdrake@weyr.cnri.reston.va.us Thu Apr 22 22:19:54 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 22 Apr 1999 17:19:54 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libsunaudio.tex Message-ID: <199904222119.RAA06397@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: libsunaudio.tex Log Message: Remove bogus characters in code sample. From fdrake@weyr.cnri.reston.va.us Thu Apr 22 22:23:23 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 22 Apr 1999 17:23:23 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libal.tex libaudioop.tex libbinascii.tex libcopyreg.tex libexcs.tex libformatter.tex libgetpass.tex libimageop.tex libmarshal.tex libparser.tex libpickle.tex libprofile.tex libquopri.tex libregsub.tex librexec.tex librfc822.tex libshelve.tex libstdwin.tex libstring.tex libsys.tex libthreading.tex Message-ID: <199904222123.RAA06464@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: libal.tex libaudioop.tex libbinascii.tex libcopyreg.tex libexcs.tex libformatter.tex libgetpass.tex libimageop.tex libmarshal.tex libparser.tex libpickle.tex libprofile.tex libquopri.tex libregsub.tex librexec.tex librfc822.tex libshelve.tex libstdwin.tex libstring.tex libsys.tex libthreading.tex Log Message: Make internal module references hyperlinks wherever it makes sense. From guido@cnri.reston.va.us Thu Apr 22 23:27:41 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Thu, 22 Apr 1999 18:27:41 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Tools/idle ScriptBinding.py Message-ID: <199904222227.SAA17256@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: Mostly rewritten. Instead of the old Run module and Debug module, there are two new commands: Import module (F5) imports or reloads the module and also adds its name to the __main__ namespace. This gets executed in the PyShell window under control of its debug settings. Run script (Control-F5) is similar but executes the contents of the file directly in the __main__ namespace. From guido@cnri.reston.va.us Thu Apr 22 23:28:42 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Thu, 22 Apr 1999 18:28:42 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Tools/idle OutputWindow.py Message-ID: <199904222228.SAA17275@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: OutputWindow.py Log Message: Moved classes OnDemandOutputWindow and PseudoFile here, from ScriptBinding.py where they are no longer needed. From guido@cnri.reston.va.us Thu Apr 22 23:32:33 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Thu, 22 Apr 1999 18:32:33 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Tools/idle TODO.txt Message-ID: <199904222232.SAA17295@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: Several wishes fulfilled. From guido@cnri.reston.va.us Fri Apr 23 00:09:23 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Thu, 22 Apr 1999 19:09:23 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Tools/idle Bindings.py Message-ID: <199904222309.TAA17586@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: Remove obsolete 'script' menu. From guido@cnri.reston.va.us Fri Apr 23 00:20:17 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Thu, 22 Apr 1999 19:20:17 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Tools/idle help.txt Message-ID: <199904222320.TAA17617@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: help.txt Log Message: Bunch of updates necessary due to recent changes; added docs for File menu, command line and color preferences. From guido@cnri.reston.va.us Fri Apr 23 15:01:26 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Fri, 23 Apr 1999 10:01:26 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Tools/idle EditorWindow.py Message-ID: <199904231401.KAA18580@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: Provide full arguments to __import__ so it works in packagized IDLE. From fdrake@weyr.cnri.reston.va.us Fri Apr 23 15:41:46 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 23 Apr 1999 10:41:46 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/doc doc.tex Message-ID: <199904231441.KAA08879@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/doc In directory weyr:/home/fdrake/projects/python/Doc/doc Modified Files: doc.tex Log Message: General small improvements and fixes. From fdrake@weyr.cnri.reston.va.us Fri Apr 23 15:44:54 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 23 Apr 1999 10:44:54 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/texinputs ltxmarkup.sty Message-ID: <199904231444.KAA08966@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: ltxmarkup.sty Log Message: Fix square brackets around optional parameters to macros. From fdrake@weyr.cnri.reston.va.us Fri Apr 23 15:46:18 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 23 Apr 1999 10:46:18 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libmultifile.tex Message-ID: <199904231446.KAA09000@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: libmultifile.tex Log Message: Hack places where '--' should appear as literal output but the -- was (properly) converted to - by LaTeX2HTML. From fdrake@weyr.cnri.reston.va.us Fri Apr 23 16:15:59 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 23 Apr 1999 11:15:59 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc TODO Message-ID: <199904231515.LAA09147@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 a couple more requests from users. From fdrake@weyr.cnri.reston.va.us Fri Apr 23 16:41:55 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 23 Apr 1999 11:41:55 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libbinhex.tex Message-ID: <199904231541.LAA09707@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: libbinhex.tex Log Message: Fix some glaring markup consistency problems (presentation was broken). Added a "See also" section. From fdrake@weyr.cnri.reston.va.us Fri Apr 23 16:42:38 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 23 Apr 1999 11:42:38 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libbinascii.tex Message-ID: <199904231542.LAA09774@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: libbinascii.tex Log Message: Refer to the binhex module, not the non-existent hexbin module. Added a "See also" section. From fdrake@weyr.cnri.reston.va.us Fri Apr 23 16:52:19 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 23 Apr 1999 11:52:19 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libbase64.tex libuu.tex Message-ID: <199904231552.LAA10019@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 libuu.tex Log Message: Added "See also" sections linking to binascii. From fdrake@weyr.cnri.reston.va.us Fri Apr 23 16:57:24 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 23 Apr 1999 11:57:24 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libuu.tex Message-ID: <199904231557.LAA10055@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: libuu.tex Log Message: Work around a space-dropping problem in LaTeX2HTML. Clarify the usage of a parameter. From fdrake@weyr.cnri.reston.va.us Fri Apr 23 17:02:30 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 23 Apr 1999 12:02:30 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libmimetypes.tex Message-ID: <199904231602.MAA10084@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: libmimetypes.tex Log Message: Shorten the section title. Fix a couple of grammatical errors. From fdrake@weyr.cnri.reston.va.us Fri Apr 23 17:07:38 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 23 Apr 1999 12:07:38 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libmhlib.tex Message-ID: <199904231607.MAA10116@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: libmhlib.tex Log Message: Shorten the section title. From bwarsaw@cnri.reston.va.us Fri Apr 23 17:24:00 1999 From: bwarsaw@cnri.reston.va.us (Barry A. Warsaw) Date: Fri, 23 Apr 1999 12:24:00 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Tools/pynche Main.py Message-ID: <199904231624.MAA06514@anthem.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Tools/pynche In directory anthem:/projects/python/develop/bwarsaw/python/dist/src/Tools/pynche Modified Files: Main.py Log Message: Added /usr/lib/X11/rgb.txt in front of X/rgb.txt for Linuxers From fdrake@weyr.cnri.reston.va.us Fri Apr 23 17:44:54 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 23 Apr 1999 12:44:54 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libmimify.tex Message-ID: <199904231644.MAA10568@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: libmimify.tex Log Message: Shorten the section title. Adjust markup to be a little more consistent with the rest of the document. From fdrake@weyr.cnri.reston.va.us Fri Apr 23 18:03:22 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 23 Apr 1999 13:03:22 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libnetrc.tex Message-ID: <199904231703.NAA10651@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: libnetrc.tex Log Message: No, __repr__() does not accept a parameter other than self. From fdrake@weyr.cnri.reston.va.us Fri Apr 23 18:11:54 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 23 Apr 1999 13:11:54 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libbltin.tex Message-ID: <199904231711.NAA10711@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: libbltin.tex Log Message: Logical markup. From fdrake@weyr.cnri.reston.va.us Fri Apr 23 18:26:25 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 23 Apr 1999 13:26:25 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib librestricted.tex Message-ID: <199904231726.NAA10994@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: librestricted.tex Log Message: Fixed some logical markup nits. Added a pointer to Grail in the see-also section, since it's used as an example. From fdrake@weyr.cnri.reston.va.us Fri Apr 23 18:30:40 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 23 Apr 1999 13:30:40 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libaudioop.tex Message-ID: <199904231730.NAA11035@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: libaudioop.tex Log Message: Work-around LaTeX2HTML space-dropping bug. From fdrake@weyr.cnri.reston.va.us Fri Apr 23 21:00:54 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 23 Apr 1999 16:00:54 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libtokenize.tex Message-ID: <199904232000.QAA12959@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: libtokenize.tex Log Message: Fix a couple of grammatical errors reported by Detlef Lannert . From fdrake@weyr.cnri.reston.va.us Fri Apr 23 21:01:17 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 23 Apr 1999 16:01:17 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/doc doc.tex Message-ID: <199904232001.QAA12978@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/doc In directory weyr:/home/fdrake/projects/python/Doc/doc Modified Files: doc.tex Log Message: Fix a couple of typos reported by Detlef Lannert . From fdrake@weyr.cnri.reston.va.us Fri Apr 23 21:07:03 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 23 Apr 1999 16:07:03 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libthreading.tex Message-ID: <199904232007.QAA16492@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: libthreading.tex Log Message: Fix a grammatical error reported by Detlef Lannert . From fdrake@weyr.cnri.reston.va.us Fri Apr 23 21:32:59 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 23 Apr 1999 16:32:59 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libbsddb.tex Message-ID: <199904232032.QAA16637@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: libbsddb.tex Log Message: Clarifications on the first(), next(), and previous() functions, based on comments from Detlef Lannert . From fdrake@weyr.cnri.reston.va.us Fri Apr 23 21:34:00 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 23 Apr 1999 16:34:00 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libsite.tex Message-ID: <199904232034.QAA16661@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: libsite.tex Log Message: Fixed typo and font-control problem reported by Detlef Lannert . From fdrake@weyr.cnri.reston.va.us Fri Apr 23 21:54:58 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 23 Apr 1999 16:54:58 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libstat.tex Message-ID: <199904232054.QAA16779@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: libstat.tex Log Message: Patch from Greg Ward adding descriptions of S_IMODE() and S_IFMT(), and an explanation of why any of stat.S_*() would be used instead of os.path.is*(). (With some really small enhancements by me.) From guido@cnri.reston.va.us Fri Apr 23 21:59:06 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Fri, 23 Apr 1999 16:59:06 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Modules timemodule.c Message-ID: <199904232059.QAA20101@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: Apparently __GNU_LIBRARY__ is defined for glibc as well as for libc5. The test really wanted to distinguish between the two. So now we test for __GLIBC__ instead. I have confirmed that this works for glibc and I have an email from Christian Tanzer confirming that it works for libc5, so it should be fine. From fdrake@weyr.cnri.reston.va.us Fri Apr 23 23:03:01 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 23 Apr 1999 18:03:01 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libmd5.tex Message-ID: <199904232203.SAA17807@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: libmd5.tex Log Message: Nits. From fdrake@weyr.cnri.reston.va.us Fri Apr 23 22:52:19 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 23 Apr 1999 17:52:19 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libsha.tex lib.tex Message-ID: <199904232152.RAA17749@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 Added Files: libsha.tex Log Message: Add section for the sha module. From fdrake@weyr.cnri.reston.va.us Fri Apr 23 23:22:27 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 23 Apr 1999 18:22:27 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libsunaudio.tex Message-ID: <199904232222.SAA18092@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: libsunaudio.tex Log Message: Markup consistency. From fdrake@weyr.cnri.reston.va.us Fri Apr 23 23:24:13 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 23 Apr 1999 18:24:13 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libundoc.tex Message-ID: <199904232224.SAA18117@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: mhlib is now documented. From guido@cnri.reston.va.us Mon Apr 26 23:20:40 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 26 Apr 1999 18:20:40 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Tools/idle ChangeLog ColorDelegator.py PyShell.py Message-ID: <199904262220.SAA23132@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: ChangeLog ColorDelegator.py PyShell.py Log Message: Tim Peters strikes again: Ho ho ho -- that's trickier than it sounded! The colorizer is working with "line.col" strings instead of Text marks, and the absolute coordinates of the point of interest can change across the self.update call (voice of baffled experience, when two quick backspaces no longer fooled it, but a backspace followed by a quick ENTER did ). Anyway, the attached appears to do the trick. CPU usage goes way up when typing quickly into a long triple-quoted string, but the latency is fine for me (a relatively fast typist on a relatively slow machine). Most of the changes here are left over from reducing the # of vrbl names to help me reason about the logic better; I hope the code is a *little* easier to From guido@cnri.reston.va.us Tue Apr 27 00:11:47 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 26 Apr 1999 19:11:47 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Tools/webchecker webchecker.py Message-ID: <199904262311.TAA23227@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Tools/webchecker In directory eric:/projects/python/develop/guido/src/Tools/webchecker Modified Files: webchecker.py Log Message: Some changes (maybe not enough?) to make it work on Windows with local file URLs. From bwarsaw@cnri.reston.va.us Tue Apr 27 00:17:16 1999 From: bwarsaw@cnri.reston.va.us (Barry A. Warsaw) Date: Mon, 26 Apr 1999 19:17:16 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Tools/pynche ChipViewer.py ColorDB.py ListViewer.py Main.py PyncheWidget.py Switchboard.py Message-ID: <199904262317.TAA12186@anthem.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Tools/pynche In directory anthem:/projects/python/develop/bwarsaw/python/dist/src/Tools/pynche Modified Files: ChipViewer.py ColorDB.py ListViewer.py Main.py PyncheWidget.py Switchboard.py Log Message: Lots of changes to support loading alternative color name database. You can switch database by just loading the new one; the list window and nearest colors adapt to the new database. Some reorganizing of code. Also, the name of the database file is stored in the ~/.pynche pickle. If it can't be loaded, fallbacks are used. From bwarsaw@cnri.reston.va.us Tue Apr 27 00:18:08 1999 From: bwarsaw@cnri.reston.va.us (Barry A. Warsaw) Date: Mon, 26 Apr 1999 19:18:08 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Tools/pynche Main.py Message-ID: <199904262318.TAA12202@anthem.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Tools/pynche In directory anthem:/projects/python/develop/bwarsaw/python/dist/src/Tools/pynche Modified Files: Main.py Log Message: Set the version number to 1.0 -- I think it's stable enough From bwarsaw@cnri.reston.va.us Tue Apr 27 00:26:24 1999 From: bwarsaw@cnri.reston.va.us (Barry A. Warsaw) Date: Mon, 26 Apr 1999 19:26:24 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Tools/pynche html40colors.txt Message-ID: <199904262326.TAA12222@anthem.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Tools/pynche In directory anthem:/projects/python/develop/bwarsaw/python/dist/src/Tools/pynche Added Files: html40colors.txt Log Message: The HTML 4.0 guaranteed colors. From bwarsaw@cnri.reston.va.us Tue Apr 27 00:26:43 1999 From: bwarsaw@cnri.reston.va.us (Barry A. Warsaw) Date: Mon, 26 Apr 1999 19:26:43 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Tools/pynche websafe.txt Message-ID: <199904262326.TAA12236@anthem.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Tools/pynche In directory anthem:/projects/python/develop/bwarsaw/python/dist/src/Tools/pynche Added Files: websafe.txt Log Message: The "Web-safe" colors (all #rrggbb style) From bwarsaw@cnri.reston.va.us Tue Apr 27 00:27:39 1999 From: bwarsaw@cnri.reston.va.us (Barry A. Warsaw) Date: Mon, 26 Apr 1999 19:27:39 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Tools/pynche webcolors.txt Message-ID: <199904262327.TAA12250@anthem.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Tools/pynche In directory anthem:/projects/python/develop/bwarsaw/python/dist/src/Tools/pynche Added Files: webcolors.txt Log Message: Tim Peter's sister's 140 named colors that NS and MSIE understand (with some controversy surrounding AliceBlue :-) From bwarsaw@cnri.reston.va.us Tue Apr 27 00:36:48 1999 From: bwarsaw@cnri.reston.va.us (Barry A. Warsaw) Date: Mon, 26 Apr 1999 19:36:48 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Tools/pynche PyncheWidget.py Message-ID: <199904262336.TAA12296@anthem.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Tools/pynche In directory anthem:/projects/python/develop/bwarsaw/python/dist/src/Tools/pynche Modified Files: PyncheWidget.py Log Message: Put the 'File' menu on the menubar even when modal, so users can get to the 'load palette' entry. Just don't put the quit button on there. From bwarsaw@cnri.reston.va.us Tue Apr 27 00:46:26 1999 From: bwarsaw@cnri.reston.va.us (Barry A. Warsaw) Date: Mon, 26 Apr 1999 19:46:26 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Tools/pynche README Message-ID: <199904262346.TAA12327@anthem.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Tools/pynche In directory anthem:/projects/python/develop/bwarsaw/python/dist/src/Tools/pynche Modified Files: README Log Message: Describe the Color database files From bwarsaw@cnri.reston.va.us Tue Apr 27 00:48:18 1999 From: bwarsaw@cnri.reston.va.us (Barry A. Warsaw) Date: Mon, 26 Apr 1999 19:48:18 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Tools/pynche README Message-ID: <199904262348.TAA12342@anthem.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Tools/pynche In directory anthem:/projects/python/develop/bwarsaw/python/dist/src/Tools/pynche Modified Files: README Log Message: Describe how to load a new database From bwarsaw@cnri.reston.va.us Tue Apr 27 00:49:24 1999 From: bwarsaw@cnri.reston.va.us (Barry A. Warsaw) Date: Mon, 26 Apr 1999 19:49:24 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Tools/pynche namedcolors.txt Message-ID: <199904262349.TAA12362@anthem.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Tools/pynche In directory anthem:/projects/python/develop/bwarsaw/python/dist/src/Tools/pynche Added Files: namedcolors.txt Log Message: An alternative Netscape database From bwarsaw@cnri.reston.va.us Tue Apr 27 00:50:04 1999 From: bwarsaw@cnri.reston.va.us (Barry A. Warsaw) Date: Mon, 26 Apr 1999 19:50:04 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Tools/pynche README Message-ID: <199904262350.TAA12380@anthem.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Tools/pynche In directory anthem:/projects/python/develop/bwarsaw/python/dist/src/Tools/pynche Modified Files: README Log Message: Describe namedcolors.txt From guido@cnri.reston.va.us Tue Apr 27 13:21:18 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Tue, 27 Apr 1999 08:21:18 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Lib dumbdbm.py Message-ID: <199904271221.IAA23707@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory eric:/projects/python/develop/guido/src/Lib Modified Files: dumbdbm.py Log Message: Cast f.tell() result to int() in _addval(), so it works even on platforms where tell() returns a long. (Perhaps tell() should be fixed too?) Reported by Greg Humphreys. From bwarsaw@cnri.reston.va.us Tue Apr 27 16:56:02 1999 From: bwarsaw@cnri.reston.va.us (Barry A. Warsaw) Date: Tue, 27 Apr 1999 11:56:02 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Tools/pynche StripViewer.py Message-ID: <199904271556.LAA25198@anthem.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Tools/pynche In directory anthem:/projects/python/develop/bwarsaw/python/dist/src/Tools/pynche Modified Files: StripViewer.py Log Message: Change Black/White button labels to not include the arrow From bwarsaw@cnri.reston.va.us Tue Apr 27 16:56:54 1999 From: bwarsaw@cnri.reston.va.us (Barry A. Warsaw) Date: Tue, 27 Apr 1999 11:56:54 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Tools/pynche TextViewer.py Message-ID: <199904271556.LAA25213@anthem.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Tools/pynche In directory anthem:/projects/python/develop/bwarsaw/python/dist/src/Tools/pynche Modified Files: TextViewer.py Log Message: When selecting a radio button in the TextViewer (to change a specific text widget attribute), the color the attribute currently has is set in the main widget. From fdrake@weyr.cnri.reston.va.us Tue Apr 27 19:05:07 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 27 Apr 1999 14:05:07 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libgl.tex Message-ID: <199904271805.OAA24360@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: Added "See also" reference to PyOpenGL. From bwarsaw@cnri.reston.va.us Tue Apr 27 19:43:48 1999 From: bwarsaw@cnri.reston.va.us (Barry A. Warsaw) Date: Tue, 27 Apr 1999 14:43:48 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Tools/pynche Main.py Message-ID: <199904271843.OAA25453@anthem.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Tools/pynche In directory anthem:/projects/python/develop/bwarsaw/python/dist/src/Tools/pynche Modified Files: Main.py Log Message: add a comment From bwarsaw@cnri.reston.va.us Tue Apr 27 19:53:30 1999 From: bwarsaw@cnri.reston.va.us (Barry A. Warsaw) Date: Tue, 27 Apr 1999 14:53:30 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Tools/pynche Switchboard.py Message-ID: <199904271853.OAA25477@anthem.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Tools/pynche In directory anthem:/projects/python/develop/bwarsaw/python/dist/src/Tools/pynche Modified Files: Switchboard.py Log Message: Added docstring describing Viewer interface. set_colordb(): Call Viewers' colordb_changed() method if they have them. Notifies them of changes to the color name database. From bwarsaw@cnri.reston.va.us Tue Apr 27 19:54:13 1999 From: bwarsaw@cnri.reston.va.us (Barry A. Warsaw) Date: Tue, 27 Apr 1999 14:54:13 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Tools/pynche DetailsViewer.py ListViewer.py TextViewer.py Message-ID: <199904271854.OAA25496@anthem.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Tools/pynche In directory anthem:/projects/python/develop/bwarsaw/python/dist/src/Tools/pynche Modified Files: DetailsViewer.py ListViewer.py TextViewer.py Log Message: Add a module global variable ADDTOVIEW to conform to dynamic viewer lookup protocol. From bwarsaw@cnri.reston.va.us Tue Apr 27 19:55:48 1999 From: bwarsaw@cnri.reston.va.us (Barry A. Warsaw) Date: Tue, 27 Apr 1999 14:55:48 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Tools/pynche PyncheWidget.py Message-ID: <199904271855.OAA25517@anthem.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Tools/pynche In directory anthem:/projects/python/develop/bwarsaw/python/dist/src/Tools/pynche Modified Files: PyncheWidget.py Log Message: Implement dynamic external Viewer discovery. PyncheWidget.__init__(): Add the extrapath argument which can be used to pass in additional directories to search for Viewers. From bwarsaw@cnri.reston.va.us Tue Apr 27 19:56:35 1999 From: bwarsaw@cnri.reston.va.us (Barry A. Warsaw) Date: Tue, 27 Apr 1999 14:56:35 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Tools/pynche pyColorChooser.py Message-ID: <199904271856.OAA25533@anthem.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Tools/pynche In directory anthem:/projects/python/develop/bwarsaw/python/dist/src/Tools/pynche Modified Files: pyColorChooser.py Log Message: askcolor(): databasefile and wantspec can now be set on every invocation, instead of just the first. From bwarsaw@cnri.reston.va.us Tue Apr 27 19:57:01 1999 From: bwarsaw@cnri.reston.va.us (Barry A. Warsaw) Date: Tue, 27 Apr 1999 14:57:01 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Tools/pynche README Message-ID: <199904271857.OAA25549@anthem.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Tools/pynche In directory anthem:/projects/python/develop/bwarsaw/python/dist/src/Tools/pynche Modified Files: README Log Message: Document that for askcolor(), databasefile and wantspec can now be set on every invocation, instead of just the first. From bwarsaw@cnri.reston.va.us Tue Apr 27 20:51:56 1999 From: bwarsaw@cnri.reston.va.us (Barry A. Warsaw) Date: Tue, 27 Apr 1999 15:51:56 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Tools/pynche PyncheWidget.py Message-ID: <199904271951.PAA25701@anthem.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Tools/pynche In directory anthem:/projects/python/develop/bwarsaw/python/dist/src/Tools/pynche Modified Files: PyncheWidget.py Log Message: Use the much nicer tkFileDialog for loading color name database files (thanks Fred!) From guido@cnri.reston.va.us Tue Apr 27 23:06:09 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Tue, 27 Apr 1999 18:06:09 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src configure configure.in Message-ID: <199904272206.SAA26556@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src In directory eric:/projects/python/develop/guido/src Modified Files: configure configure.in Log Message: Need to double the macro brackets in FreeBSD check. (My fault, not Dom's -- he submitted a correct patch to configure.) From guido@cnri.reston.va.us Wed Apr 28 13:21:48 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Wed, 28 Apr 1999 08:21:48 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Lib CGIHTTPServer.py Message-ID: <199904281221.IAA26966@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory eric:/projects/python/develop/guido/src/Lib Modified Files: CGIHTTPServer.py Log Message: Two changes suggested by Jan Pieter Riegel: (1) Fix reference to pwd.error to be KeyError -- there is no pwd.error and pwd.getpwnam() raises KeyError on failure. (2) Add cookie support, by placing the 'Cookie:' header, if present, in the HTTP_COOKIE environment variable. From fdrake@weyr.cnri.reston.va.us Wed Apr 28 14:54:32 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 28 Apr 1999 09:54:32 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/perl python.perl Message-ID: <199904281354.JAA29735@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_seetext(): Clean up so we get proper nesting of
s. This fixes a rendering problem on IE5. General adjustments to the table* environments, including using and . Attempt to adjust the vertical alignment of the table cells so that the baseline of the first cell matches the baseline of the remaining cells: When the first cell is small and the second cell of the same row is multi-line, the first cell was vertically centered by default. Specifying valign=baseline fixes the problem on IE, but Netscape seems to ignore both valign=top and valign=baseline (even though valign is NS's fault!). Make the horizontal alignment of 'p' columns left instead of center (for the headings). From fdrake@weyr.cnri.reston.va.us Wed Apr 28 15:04:37 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 28 Apr 1999 10:04:37 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/mac libmac.tex Message-ID: <199904281404.KAA29918@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: Point to the library reference manual for os.path documentation (in macpath section). From fdrake@weyr.cnri.reston.va.us Wed Apr 28 15:58:49 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 28 Apr 1999 10:58:49 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/perl python.perl Message-ID: <199904281458.KAA00673@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: Control the layout of output tables a little better so they're easier to debug. Small code cleanup around tables. From fdrake@weyr.cnri.reston.va.us Wed Apr 28 15:59:45 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 28 Apr 1999 10:59:45 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/texinputs python.sty Message-ID: <199904281459.KAA00691@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: \filenq: Like \file, but don't use single-quotes; this looks better in tables. From fdrake@weyr.cnri.reston.va.us Wed Apr 28 16:06:09 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 28 Apr 1999 11:06:09 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/html Makefile Message-ID: <199904281506.LAA00733@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: Adjust the message that gets added to the bottom of each page about where to send comments. From fdrake@weyr.cnri.reston.va.us Wed Apr 28 17:33:05 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 28 Apr 1999 12:33:05 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/perl ltxmarkup.perl Message-ID: <199904281633.MAA01472@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: ltxmarkup.perl Log Message: Handle \p and \op in parameter lists for the environment and macro description environments. From fdrake@weyr.cnri.reston.va.us Wed Apr 28 17:42:30 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 28 Apr 1999 12:42:30 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/perl ltxmarkup.perl Message-ID: <199904281642.MAA01692@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: ltxmarkup.perl Log Message: Fix up the HTML generated for envdesc and macrodesc environments. Make it possible for the user to tell the difference. ;-) From fdrake@weyr.cnri.reston.va.us Wed Apr 28 17:43:12 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 28 Apr 1999 12:43:12 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/doc doc.tex Message-ID: <199904281643.MAA01720@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/doc In directory weyr:/home/fdrake/projects/python/Doc/doc Modified Files: doc.tex Log Message: Fill in a few holes. From fdrake@weyr.cnri.reston.va.us Wed Apr 28 17:54:00 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 28 Apr 1999 12:54:00 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/doc doc.tex Message-ID: <199904281654.MAA01781@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/doc In directory weyr:/home/fdrake/projects/python/Doc/doc Modified Files: doc.tex Log Message: Removed (empty) description of \optional from the "Inline Markup" section; that's not really the right place for it. From fdrake@weyr.cnri.reston.va.us Wed Apr 28 17:57:02 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 28 Apr 1999 12:57:02 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/texinputs boilerplate.tex Message-ID: <199904281657.MAA01817@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: Let's try again: new assertion. From fdrake@weyr.cnri.reston.va.us Wed Apr 28 18:11:21 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 28 Apr 1999 13:11:21 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/perl python.perl Message-ID: <199904281711.NAA02121@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: setup_column_alignments(): Adding valign=baseline to the tag makes the alignment work on Navigator as well as IE. Uglier HTML, but it looks right. From fdrake@weyr.cnri.reston.va.us Wed Apr 28 18:38:32 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 28 Apr 1999 13:38:32 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Lib/test test_rfc822.py Message-ID: <199904281738.NAA03949@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib/test In directory weyr:/home/fdrake/projects/python/Lib/test Modified Files: test_rfc822.py Log Message: Added test case that includes a comma in the full name. This tests for an old bug that's been gone a while, but was still documented until a few minutes from now. From fdrake@weyr.cnri.reston.va.us Wed Apr 28 19:11:10 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 28 Apr 1999 14:11:10 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib librfc822.tex Message-ID: <199904281811.OAA04270@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: librfc822.tex Log Message: Use \rfc to mark some remaining RFC references. Remove comment about full name bug in getaddrlist(); this has been fixed for a while now. Work around LaTeX2HTML space-dropping bug. Mention that the fp attribute can be used to read the message body. From fdrake@weyr.cnri.reston.va.us Wed Apr 28 19:24:03 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 28 Apr 1999 14:24:03 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/doc doc.tex Message-ID: <199904281824.OAA04435@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/doc In directory weyr:/home/fdrake/projects/python/Doc/doc Modified Files: doc.tex Log Message: Remove the \date macro; just pick it up from boilerplate.tex. From bwarsaw@cnri.reston.va.us Wed Apr 28 20:32:48 1999 From: bwarsaw@cnri.reston.va.us (Barry A. Warsaw) Date: Wed, 28 Apr 1999 15:32:48 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Tools/audiopy README audiopy Message-ID: <199904281932.PAA01047@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 audiopy Log Message: Add a scale widget and command line options to set the output volume. Bump version number 1.0 From fdrake@weyr.cnri.reston.va.us Wed Apr 28 22:17:39 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 28 Apr 1999 17:17:39 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Lib rfc822.py Message-ID: <199904282117.RAA05012@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory weyr:/home/fdrake/projects/python/Lib Modified Files: rfc822.py Log Message: Message.getheader(): Fixed grammatical error in docstring. Message.getheaders(): Method to get list of all values for each instance of a named header. See docstring for more. From fdrake@weyr.cnri.reston.va.us Thu Apr 29 03:30:04 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 28 Apr 1999 22:30:04 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libcrypto.tex Message-ID: <199904290230.WAA05569@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: libcrypto.tex Log Message: Update starship URLs. From fdrake@weyr.cnri.reston.va.us Thu Apr 29 03:30:03 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 28 Apr 1999 22:30:03 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/ext ext.tex Message-ID: <199904290230.WAA05556@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 starship URLs. From fdrake@weyr.cnri.reston.va.us Thu Apr 29 03:30:05 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 28 Apr 1999 22:30:05 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/tut tut.tex Message-ID: <199904290230.WAA05579@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: Update starship URLs. From fdrake@weyr.cnri.reston.va.us Thu Apr 29 03:44:51 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 28 Apr 1999 22:44:51 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/ext ext.tex Message-ID: <199904290244.WAA05648@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: Clarify that the Modules/ directory is in an unpacked source distribution; this is not clear for Windows users. From fdrake@weyr.cnri.reston.va.us Thu Apr 29 03:47:40 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 28 Apr 1999 22:47:40 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/ext ext.tex Message-ID: <199904290247.WAA05684@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: Always use "section" when referring to sections of a document, not "Section". From fdrake@weyr.cnri.reston.va.us Thu Apr 29 03:47:41 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 28 Apr 1999 22:47:41 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libfm.tex libstdtypes.tex Message-ID: <199904290247.WAA05695@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 libstdtypes.tex Log Message: Always use "section" when referring to sections of a document, not "Section". From fdrake@weyr.cnri.reston.va.us Thu Apr 29 05:20:47 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 29 Apr 1999 00:20:47 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/api api.tex Message-ID: <199904290420.AAA06774@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: Fill in a few holes in the "Very High Level" chapter. From fdrake@weyr.cnri.reston.va.us Thu Apr 29 05:23:38 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 29 Apr 1999 00:23:38 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc TODO Message-ID: <199904290423.AAA06806@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: Annotate a couple of entries further. From guido@cnri.reston.va.us Thu Apr 29 13:50:37 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Thu, 29 Apr 1999 08:50:37 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Lib rfc822.py Message-ID: <199904291250.IAA28860@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory eric:/projects/python/develop/guido/src/Lib Modified Files: rfc822.py Log Message: Mike Meyer reports a bug in his patch (several months ago) that accepts long month names. One essential line was missing. Fixed now. From fdrake@weyr.cnri.reston.va.us Thu Apr 29 13:57:33 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 29 Apr 1999 08:57:33 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libos.tex Message-ID: <199904291257.IAA07527@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: Minor nits, partly in response to comments from Jonathan Black . From fdrake@weyr.cnri.reston.va.us Thu Apr 29 14:20:26 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 29 Apr 1999 09:20:26 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/tut tut.tex Message-ID: <199904291320.JAA07824@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: Explain comments at the start of chapter 3. This is needed since they appear in the examples without any further explanation, and the tutorial doesn't have this information explicit anywhere else. Omission reported by Jon Black . From fdrake@weyr.cnri.reston.va.us Thu Apr 29 14:41:17 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 29 Apr 1999 09:41:17 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libintro.tex Message-ID: <199904291341.JAA07902@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: libintro.tex Log Message: Don't point readers to rand, point to random! And make it a hyperlink while you're at it. Also, when discussing order of reading, make it clear that chapter 2 is assumed background material for the remainder of the manual. That's needed for terminology if nothing else! From fdrake@weyr.cnri.reston.va.us Thu Apr 29 16:32:28 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 29 Apr 1999 11:32:28 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc Makefile Message-ID: <199904291532.LAA09206@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: Constrain a wildcard a little more. From fdrake@weyr.cnri.reston.va.us Thu Apr 29 16:42:20 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 29 Apr 1999 11:42:20 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/html index.html.in .cvsignore Makefile index.html Message-ID: <199904291542.LAA09394@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 Makefile Added Files: index.html.in Removed Files: index.html Log Message: Generate index.html from index.html.in. This avoids having to modify the index to update the version number; boilerplate.tex remains the only document source for this information. From fdrake@weyr.cnri.reston.va.us Thu Apr 29 16:44:50 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 29 Apr 1999 11:44:50 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc Makefile Message-ID: <199904291544.LAA09491@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: Make sure the global module index is added to the HTML tarball. From fdrake@weyr.cnri.reston.va.us Thu Apr 29 17:43:43 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 29 Apr 1999 12:43:43 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/ref ref5.tex Message-ID: <199904291643.MAA10011@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 Log Message: Added index entries for operator precedence; suggestion from Randall Hopper . From fdrake@weyr.cnri.reston.va.us Thu Apr 29 18:04:22 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 29 Apr 1999 13:04:22 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/html Makefile Message-ID: <199904291704.NAA10137@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: Move index.html rules to the end since it wedges font-lock. Remember to delete index.html for clobber since it is now generated.. From fdrake@weyr.cnri.reston.va.us Thu Apr 29 19:28:49 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 29 Apr 1999 14:28:49 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/tools mkhtml.sh Message-ID: <199904291828.OAA11094@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: Nasty hack to add a --numeric parameter to skip the use of "logical" names. From fdrake@weyr.cnri.reston.va.us Thu Apr 29 19:29:38 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 29 Apr 1999 14:29:38 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/html Makefile Message-ID: <199904291829.OAA11118@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: For the tutorial, use numeric node names and split by chapter. From fdrake@weyr.cnri.reston.va.us Thu Apr 29 19:42:20 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 29 Apr 1999 14:42:20 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libfl.tex Message-ID: <199904291842.OAA11457@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: libfl.tex Log Message: Use the new module-key for the FL module when hyperlinking (the old one caused problems on case-insensitive file systems). From fdrake@weyr.cnri.reston.va.us Thu Apr 29 20:04:55 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 29 Apr 1999 15:04:55 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/html Makefile Message-ID: <199904291904.PAA11648@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: Added wcnew target to run the "wcnew" version of webchecker. From fdrake@weyr.cnri.reston.va.us Thu Apr 29 20:06:57 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 29 Apr 1999 15:06:57 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/perl l2hinit.perl Message-ID: <199904291906.PAA11674@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_nav_panel(): Remove the spurious NAME="tex2html\d+" attributes added to the anchors in the navigation bars. These are added somewhere deep with l2h, and are stupid. From fdrake@weyr.cnri.reston.va.us Thu Apr 29 20:54:09 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 29 Apr 1999 15:54:09 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/html index.html.in Message-ID: <199904291954.PAA12747@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: index.html.in Log Message: Added top navigation bar for consistency and color. There's not a lot there, but the "modules" icon is active. From guido@cnri.reston.va.us Fri Apr 30 16:14:06 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Fri, 30 Apr 1999 11:14:06 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Tools/idle PathBrowser.py Message-ID: <199904301514.LAA01367@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: PathBrowser.py Log Message: Avoid listing files more than once (e.g. foomodule.so has two hits: once for foo + module.so, once for foomodule + .so). From fdrake@weyr.cnri.reston.va.us Fri Apr 30 16:58:46 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 30 Apr 1999 11:58:46 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc Makefile Message-ID: <199904301558.LAA15344@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: Revert constraint on the GIF wildcard; we missed a few! From guido@cnri.reston.va.us Fri Apr 30 20:39:26 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Fri, 30 Apr 1999 15:39:26 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Tools/idle __init__.py Message-ID: <199904301939.PAA03601@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: __init__.py Log Message: Support for using idle as a package. From guido@cnri.reston.va.us Thu Apr 1 15:32:33 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Thu, 1 Apr 1999 10:32:33 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Lib/test test_cpickle.py Message-ID: <199904011532.KAA06517@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_cpickle.py Log Message: Jonathan Giddy write: In test_cpickle.py, the module os got imported, but the line to remove the temp file has gone missing. From guido@cnri.reston.va.us Fri Apr 2 22:18:28 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Fri, 2 Apr 1999 17:18:28 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Tools/scripts dutree.py Message-ID: <199904022218.RAA10392@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Tools/scripts In directory eric:/projects/python/develop/guido/src/Tools/scripts Modified Files: dutree.py Log Message: For reasons I dare not explain, this script should always execute main() when imported (in other words, it is not usable as a module). From fdrake@weyr.cnri.reston.va.us Mon Apr 5 19:33:43 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 5 Apr 1999 14:33:43 -0400 Subject: [Python-checkins] CVS: python/dist/src/Lib gzip.py Message-ID: <199904051833.OAA03208@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory weyr:/home/fdrake/projects/python/Lib Modified Files: gzip.py Log Message: Made the default mode 'rb' instead of 'r', for better cross-platform support. (Based on comment on the documentation by Bernhard Reiter ). From fdrake@weyr.cnri.reston.va.us Mon Apr 5 19:38:01 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 5 Apr 1999 14:38:01 -0400 Subject: [Python-checkins] CVS: python/dist/src/Lib gzip.py Message-ID: <199904051838.OAA03232@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory weyr:/home/fdrake/projects/python/Lib Modified Files: gzip.py Log Message: Oops, missed mode parameter to open(). From fdrake@weyr.cnri.reston.va.us Mon Apr 5 20:00:55 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 5 Apr 1999 15:00:55 -0400 Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libgzip.tex Message-ID: <199904051900.PAA03645@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: libgzip.tex Log Message: Made improvements based on changes just made and comments from Bernhard Reiter . From fdrake@weyr.cnri.reston.va.us Mon Apr 5 20:26:19 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 5 Apr 1999 15:26:19 -0400 Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libstat.tex Message-ID: <199904051926.PAA04036@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: libstat.tex Log Message: Removed bosities around example code; not sure where that stuff crept in! From fdrake@weyr.cnri.reston.va.us Mon Apr 5 20:28:30 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 5 Apr 1999 15:28:30 -0400 Subject: [Python-checkins] CVS: python/dist/src/Doc/html Makefile Message-ID: <199904051928.PAA04084@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: Added "doc" target to match the other document-prefix targets. From fdrake@weyr.cnri.reston.va.us Mon Apr 5 20:46:22 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 5 Apr 1999 15:46:22 -0400 Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libanydbm.tex libshelve.tex Message-ID: <199904051946.PAA04350@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 libshelve.tex Log Message: Added a few items to the "See also" sections at Guido's prompting. Made more references to other modules in the text hyperlinks for the HTML and PDF versions. From guido@cnri.reston.va.us Mon Apr 5 22:18:15 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 5 Apr 1999 17:18:15 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Misc ACKS Message-ID: <199904052118.RAA14007@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: Bunch of new contributors, including 9 who contributed to the Docs, reported by Fred. From fdrake@weyr.cnri.reston.va.us Mon Apr 5 22:22:43 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 5 Apr 1999 17:22:43 -0400 Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libfuncs.tex Message-ID: <199904052122.RAA04812@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: open() description: Made it more clear that 'b' should always be added to the mode value for binary files to improve portability. Fixed latex2html weirdness with a couple of footnotes. From fdrake@weyr.cnri.reston.va.us Mon Apr 5 22:26:39 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 5 Apr 1999 17:26:39 -0400 Subject: [Python-checkins] CVS: python/dist/src/Doc/ext ext.tex Message-ID: <199904052126.RAA04887@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: Fixed latex2html weirdness for a footnote. From fdrake@weyr.cnri.reston.va.us Mon Apr 5 22:32:53 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 5 Apr 1999 17:32:53 -0400 Subject: [Python-checkins] CVS: python/dist/src/Doc/ref ref4.tex ref5.tex ref7.tex Message-ID: <199904052132.RAA04979@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: ref4.tex ref5.tex ref7.tex Log Message: Fixed latex2html weirdness with footnotes. From fdrake@weyr.cnri.reston.va.us Mon Apr 5 22:39:19 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 5 Apr 1999 17:39:19 -0400 Subject: [Python-checkins] CVS: python/dist/src/Doc/tut tut.tex Message-ID: <199904052139.RAA05068@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: Fixed latex2html weirdness with footnotes. From guido@cnri.reston.va.us Mon Apr 5 22:54:17 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 5 Apr 1999 17:54:17 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Modules timemodule.c Message-ID: <199904052154.RAA14180@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: Jonathan Giddy notes, and Chris Lawrence agrees, that some comments on #else/#endif are wrong, and that #if HAVE_TM_ZONE should be #ifdef. From jhylton@cnri.reston.va.us Mon Apr 5 22:55:23 1999 From: jhylton@cnri.reston.va.us (Jeremy Hylton) Date: Mon, 5 Apr 1999 17:55:23 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libzlib.tex Message-ID: <199904052155.RAA01555@bitdiddle.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/lib In directory bitdiddle:/local/home/jhylton/local/python/src/Doc/lib Modified Files: libzlib.tex Log Message: correct version info for zlib. add note about module failing with old versions of the library. update comment that explains that this doc is *still* out of date From fdrake@weyr.cnri.reston.va.us Mon Apr 5 22:59:17 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 5 Apr 1999 17:59:17 -0400 Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libmarshal.tex libobjs.tex libprofile.tex libstdtypes.tex libstdwin.tex Message-ID: <199904052159.RAA05380@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 libobjs.tex libprofile.tex libstdtypes.tex libstdwin.tex Log Message: Fixed latex2html weirdness with footnotes. From fdrake@weyr.cnri.reston.va.us Mon Apr 5 23:18:14 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 5 Apr 1999 18:18:14 -0400 Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libanydbm.tex libdbm.tex libgdbm.tex Message-ID: <199904052218.SAA05775@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 libdbm.tex libgdbm.tex Log Message: Added more "See also" entries, + 1 inline hyperlink. From guido@cnri.reston.va.us Tue Apr 6 16:49:47 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Tue, 6 Apr 1999 11:49:47 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src acconfig.h config.h.in Message-ID: <199904061549.LAA19306@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src In directory eric:/projects/python/develop/guido/src Modified Files: acconfig.h config.h.in Log Message: For BeOS PowerPC. Chris Herborth. From guido@cnri.reston.va.us Tue Apr 6 16:50:54 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Tue, 6 Apr 1999 11:50:54 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src configure configure.in Message-ID: <199904061550.LAA19338@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src In directory eric:/projects/python/develop/guido/src Modified Files: configure configure.in Log Message: For BeOS PowerPC. Chris Herborth. From guido@cnri.reston.va.us Tue Apr 6 20:32:21 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Tue, 6 Apr 1999 15:32:21 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Lib ntpath.py Message-ID: <199904061932.PAA21442@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: Withdraw the UNC support from splitdrive(). Instead, a new function splitunc() parses UNC paths. The contributor of the UNC parsing in splitdrive() doesn't like it, but I haven't heard a good reason to keep it, and it causes some problems. (I think there's a philosophical problem -- to me, the split*() functions are purely syntactical, and the fact that \\foo is not a valid path doesn't mean that it shouldn't be considered an absolute path.) Also (quite separately, but strangely related to the philosophical issue above) fix abspath() so that if win32api exists, it doesn't fail when the path doesn't actually exist -- if GetFullPathName() fails, fall back on the old strategy (join with getcwd() if neccessary, and then use normpath()). From guido@cnri.reston.va.us Tue Apr 6 20:38:20 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Tue, 6 Apr 1999 15:38:20 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Lib/test test_ntpath.py Message-ID: <199904061938.PAA21480@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_ntpath.py Log Message: Fix the tests now that splitdrive() no longer treats UNC paths special. (Some tests converted to splitunc() tests.) From guido@cnri.reston.va.us Wed Apr 7 16:03:42 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Wed, 7 Apr 1999 11:03:42 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Lib smtplib.py Message-ID: <199904071503.LAA22655@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory eric:/projects/python/develop/guido/src/Lib Modified Files: smtplib.py Log Message: Changes by Per Cederquist and The Dragon. Per writes: """ The application where Signum Support uses smtplib needs to be able to report good error messages to the user when sending email fails. To help in diagnosing problems it is useful to be able to report the entire message sent by the server, not only the SMTP error code of the offending command. A lot of the functions in sendmail.py unfortunately discards the message, leaving only the code. The enclosed patch fixes that problem. The enclosed patch also introduces a base class for exceptions that include an SMTP error code and error message, and make the code and message available on separate attributes, so that surrounding code can deal with them in whatever way it sees fit. I've also added some documentation to the exception classes. The constructor will now raise an exception if it cannot connect to the SMTP server. The data() method will raise an SMTPDataError if it doesn't receive the expected 354 code in the middle of the exchange. According to section 5.2.10 of RFC 1123 a smtp client must accept "any text, including no text at all" after the error code. If the response of a HELO command contains no text self.helo_resp will be set to the empty string (""). The patch fixes the test in the sendmail() method so that helo_resp is tested against None; if it has the empty string as value the sendmail() method would invoke the helo() method again. The code no longer accepts a -1 reply from the ehlo() method in sendmail(). [Text about removing SMTPRecipientsRefused deleted --GvR] """ and also: """ smtplib.py appends an extra blank line to the outgoing mail if the `msg' argument to the sendmail method already contains a trailing newline. This patch should fix the problem. """ The Dragon writes: """ Mostly I just re-added the SMTPRecipientsRefused exception (the exeption object now has the appropriate info in it ) [Per had removed this in his patch --GvR] and tweaked the behavior of the sendmail method whence it throws the newly added SMTPHeloException (it was closing the connection, which it shouldn't. whatever catches the exception should do that. ) I pondered the change of the return values to tuples all around, and after some thinking I decided that regularizing the return values was too much of the Right Thing (tm) to not do. My one concern is that code expecting an integer & getting a tuple may fail silently. (i.e. if it's doing : x.somemethod() >= 400: expecting an integer, the expression will always be true if it gets a tuple instead. ) However, most smtplib code I've seen only really uses the sendmail() method, so this wouldn't bother it. Usually code I've seen that calls the other methods usually only calls helo() and ehlo() for doing ESMTP, a feature which was not in the smtplib included with 1.5.1, and thus I would think not much code uses it yet. """ From guido@cnri.reston.va.us Wed Apr 7 16:49:44 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Wed, 7 Apr 1999 11:49:44 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Modules posixmodule.c Message-ID: <199904071549.LAA22998@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 extern decl for fsync() for SunOS 4.x. From guido@cnri.reston.va.us Wed Apr 7 16:56:52 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Wed, 7 Apr 1999 11:56:52 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libsmtplib.tex Message-ID: <199904071556.LAA23109@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: libsmtplib.tex Log Message: Updated documentation by Per Cederqvist. I've added back the documentation sendmail() to reflect the changes by The Dragon (see smtplib.py checkin). From guido@cnri.reston.va.us Wed Apr 7 17:00:22 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Wed, 7 Apr 1999 12:00:22 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Include patchlevel.h Message-ID: <199904071600.MAA23133@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Include In directory eric:/projects/python/develop/guido/src/Include Modified Files: patchlevel.h Log Message: Add the possibility of a gamma release (release candidate). Add '+' to string version number to indicate we're beyond b2 now. From guido@cnri.reston.va.us Wed Apr 7 17:05:49 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Wed, 7 Apr 1999 12:05:49 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Python bltinmodule.c Message-ID: <199904071605.MAA23246@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: Remove unused variable from complex_from_string() code. From guido@cnri.reston.va.us Wed Apr 7 17:07:24 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Wed, 7 Apr 1999 12:07:24 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Python ceval.c import.c mystrtoul.c strtod.c thread.c Message-ID: <199904071607.MAA23291@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Python In directory eric:/projects/python/develop/guido/src/Python Modified Files: ceval.c import.c mystrtoul.c strtod.c thread.c Log Message: Changes by Mark Hammond for Windows CE. Mostly of the form #ifdef DONT_HAVE_header_H ... #endif around #include . From guido@cnri.reston.va.us Wed Apr 7 17:25:57 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Wed, 7 Apr 1999 12:25:57 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Lib/lib-tk Tkinter.py Message-ID: <199904071625.MAA23400@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: lower, tkraise/lift hide Misc.lower, Misc.tkraise/lift, so the preferred name for them is tag_lower, tag_raise (similar to tag_bind, and similar to the Text widget); unfortunately can't delete the old ones yet (maybe in 1.6) From guido@cnri.reston.va.us Wed Apr 7 18:23:11 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Wed, 7 Apr 1999 13:23:11 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Misc python.gif Message-ID: <199904071723.NAA23586@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Misc In directory eric:/projects/python/develop/guido/src/Misc Removed Files: python.gif Log Message: Removing an unused image of a snake. I don't know what its origins are but I think I've seen it once in a NeXT dictionary application -- not sure whether anyone owns copyright but I don't see why we should risk it. From guido@cnri.reston.va.us Wed Apr 7 19:27:31 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Wed, 7 Apr 1999 14:27:31 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Tools/idle idlever.py Message-ID: <199904071827.OAA23968@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: Version bump awaiting impending new release. (Not much has changed :-( ) From guido@cnri.reston.va.us Wed Apr 7 19:32:53 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Wed, 7 Apr 1999 14:32:53 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Python pythonrun.c Message-ID: <199904071832.OAA24002@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Python In directory eric:/projects/python/develop/guido/src/Python Modified Files: pythonrun.c Log Message: Alas, get rid of the Win specific hack to ask the user to press Return before exiting when an error happened. This didn't work right when Python is invoked from a daemon. From guido@cnri.reston.va.us Wed Apr 7 19:42:00 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Wed, 7 Apr 1999 14:42:00 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Tools/idle NEWS.txt README.txt Message-ID: <199904071842.OAA24166@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 README.txt Log Message: New version. From guido@cnri.reston.va.us Wed Apr 7 19:43:23 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Wed, 7 Apr 1999 14:43:23 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Tools/idle ChangeLog Message-ID: <199904071843.OAA24208@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: ChangeLog Log Message: New change log. From guido@cnri.reston.va.us Wed Apr 7 20:00:59 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Wed, 7 Apr 1999 15:00:59 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Lib/test test_gzip.py Message-ID: <199904071900.PAA24241@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_gzip.py Log Message: Use binary mode for all gzip files we open. From guido@cnri.reston.va.us Wed Apr 7 21:23:19 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Wed, 7 Apr 1999 16:23:19 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Modules zlibmodule.c Message-ID: <199904072023.QAA24780@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Modules In directory eric:/projects/python/develop/guido/src/Modules Modified Files: zlibmodule.c Log Message: Patch by Andrew Kuchling to unflush() (flush() for deflating). Without this, if inflate() returned Z_BUF_ERROR asking for more output space, we would report the error; now, we increase the buffer size and try again, just as for Z_OK. From guido@cnri.reston.va.us Thu Apr 8 14:57:09 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Thu, 8 Apr 1999 09:57:09 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Python thread_wince.h Message-ID: <199904081357.JAA25395@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Python In directory eric:/projects/python/develop/guido/src/Python Added Files: thread_wince.h Log Message: Win/CE thread support by Mark Hammond. From guido@cnri.reston.va.us Thu Apr 8 15:46:09 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Thu, 8 Apr 1999 10:46:09 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Lib/lib-tk Tkinter.py Message-ID: <199904081446.KAA25523@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: Delete an accidentally checked-in feature that actually broke more than was worth it: when deleting a canvas item, it would try to automatically delete the bindings for that item. Since there's nothing that says you can't reuse the tag and still have the bindings, this is not correct. Also, it broke at least one demo (Demo/tkinter/matt/rubber-band-box-demo-1.py). From guido@cnri.reston.va.us Thu Apr 8 16:18:13 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Thu, 8 Apr 1999 11:18:13 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Demo/tkinter/matt window-creation-w-location.py Message-ID: <199904081518.LAA29356@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Demo/tkinter/matt In directory eric:/projects/python/develop/guido/src/Demo/tkinter/matt Modified Files: window-creation-w-location.py Log Message: This demo imported some private code from Matt. Make it cripple along. From guido@cnri.reston.va.us Thu Apr 8 18:23:14 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Thu, 8 Apr 1999 13:23:14 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Lib/test test_strftime.py Message-ID: <199904081723.NAA29635@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_strftime.py Log Message: On Windows, we suddenly find, strftime() may return "" for an unsupported format string. (I guess this is because the logic for deciding whether to reallocate the buffer or not has been improved.) This caused the test code to crash on result[0]. Fix this by assuming an empty result also means the format is not supported. From guido@cnri.reston.va.us Thu Apr 8 21:18:01 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Thu, 8 Apr 1999 16:18:01 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Misc NEWS Message-ID: <199904082018.QAA03071@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: News for the 1.5.2c1 release. From guido@cnri.reston.va.us Thu Apr 8 21:22:48 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Thu, 8 Apr 1999 16:22:48 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Lib/test test_strftime.py Message-ID: <199904082022.QAA03110@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_strftime.py Log Message: # Bah. The same problem occurred a second time. From guido@cnri.reston.va.us Thu Apr 8 21:23:30 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Thu, 8 Apr 1999 16:23:30 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src README Message-ID: <199904082023.QAA03132@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: Release 1.5.2c1. From guido@cnri.reston.va.us Thu Apr 8 21:23:45 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Thu, 8 Apr 1999 16:23:45 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Include patchlevel.h Message-ID: <199904082023.QAA03150@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Include In directory eric:/projects/python/develop/guido/src/Include Modified Files: patchlevel.h Log Message: Release 1.5.2c1 From guido@cnri.reston.va.us Thu Apr 8 21:27:55 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Thu, 8 Apr 1999 16:27:55 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Lib/dos-8x3 test_cpi.py test_gzi.py test_pic.py test_pop.py test_use.py basehttp.py compilea.py exceptio.py mimetype.py nturl2pa.py posixfil.py test_bsd.py test_fcn.py test_ntp.py test_zli.py userdict.py userlist.py Message-ID: <199904082027.QAA03199@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: basehttp.py compilea.py exceptio.py mimetype.py nturl2pa.py posixfil.py test_bsd.py test_fcn.py test_ntp.py test_zli.py userdict.py userlist.py Added Files: test_cpi.py test_gzi.py test_pic.py test_pop.py test_use.py Log Message: The usual From guido@cnri.reston.va.us Thu Apr 8 21:28:28 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Thu, 8 Apr 1999 16:28:28 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Tools/idle ClassBrowser.py Message-ID: <199904082028.QAA03218@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: ClassBrowser.py Log Message: # TODO entries changed From guido@cnri.reston.va.us Thu Apr 8 21:28:43 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Thu, 8 Apr 1999 16:28:43 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Tools/idle TODO.txt Message-ID: <199904082028.QAA03236@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: # TODO entries changed From guido@cnri.reston.va.us Thu Apr 8 21:42:14 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Thu, 8 Apr 1999 16:42:14 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src README Message-ID: <199904082042.QAA03309@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: # File location for tut.tex and URL for Aaron Watters' tutorial have changed. From guido@cnri.reston.va.us Thu Apr 8 21:49:13 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Thu, 8 Apr 1999 16:49:13 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/PCbuild zlib.dsp Message-ID: <199904082049.QAA03344@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/PCbuild In directory eric:/projects/python/develop/guido/src/PCbuild Modified Files: zlib.dsp Log Message: Now using static zlib 1.1.3 From guido@cnri.reston.va.us Thu Apr 8 21:50:28 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Thu, 8 Apr 1999 16:50:28 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/PCbuild python15.wse Message-ID: <199904082050.QAA03364@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: Release 1.5.2c1. Add IDLE and Uninstall to program group. Don't distribute zlib.dll. Tweak some comments. From guido@cnri.reston.va.us Fri Apr 9 00:13:39 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Thu, 8 Apr 1999 19:13:39 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/PCbuild python15.wse Message-ID: <199904082313.TAA05181@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: Use the Tcl 8.0.5 installer. Add a variable %_TCL_% that makes it easier to switch to a different version. From guido@cnri.reston.va.us Fri Apr 9 15:49:06 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Fri, 9 Apr 1999 10:49:06 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Lib shlex.py netrc.py Message-ID: <199904091449.KAA00701@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory eric:/projects/python/develop/guido/src/Lib Modified Files: shlex.py netrc.py Log Message: Get rid of #! line From fdrake@weyr.cnri.reston.va.us Fri Apr 9 15:53:38 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 9 Apr 1999 10:53:38 -0400 Subject: [Python-checkins] CVS: python/dist/src/Doc/tools keywords.py Message-ID: <199904091453.KAA01033@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: keywords.py Log Message: Use #!/usr/bin/env python instead of #!/usr/local/bin/python. From guido@cnri.reston.va.us Fri Apr 9 15:56:37 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Fri, 9 Apr 1999 10:56:37 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Tools/scripts fixps.py Message-ID: <199904091456.KAA00769@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Tools/scripts In directory eric:/projects/python/develop/guido/src/Tools/scripts Modified Files: fixps.py Log Message: Use re instead of regex. Don't rewrite the file in place. (Reported by Andy Dustman.) From fdrake@weyr.cnri.reston.va.us Fri Apr 9 20:57:12 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 9 Apr 1999 15:57:12 -0400 Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libre.tex Message-ID: <199904091957.PAA01463@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: Misspellling: "occurance" --> "occurrence" From guido@cnri.reston.va.us Sat Apr 10 14:57:19 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Sat, 10 Apr 1999 09:57:19 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Tools/pynche __init__.py Message-ID: <199904101357.JAA02355@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Tools/pynche In directory eric:/projects/python/develop/guido/src/Tools/pynche Modified Files: __init__.py Log Message: Avoid totally empty files. From guido@cnri.reston.va.us Sat Apr 10 14:59:21 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Sat, 10 Apr 1999 09:59:21 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/PC/vc15_lib _.c Message-ID: <199904101359.JAA02386@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/PC/vc15_lib In directory eric:/projects/python/develop/guido/src/PC/vc15_lib Modified Files: _.c Log Message: Avoid totally empty files. From guido@cnri.reston.va.us Sat Apr 10 15:00:29 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Sat, 10 Apr 1999 10:00:29 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/PC/vc15_w31 _.c Message-ID: <199904101400.KAA02415@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/PC/vc15_w31 In directory eric:/projects/python/develop/guido/src/PC/vc15_w31 Modified Files: _.c Log Message: Avoid totally empty files. From guido@cnri.reston.va.us Sat Apr 10 16:46:02 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Sat, 10 Apr 1999 11:46:02 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Modules socketmodule.c Message-ID: <199904101546.LAA04146@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: 3-arg gethostbyname_r doesn't really work on OSF/1. From guido@cnri.reston.va.us Sat Apr 10 16:47:00 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Sat, 10 Apr 1999 11:47:00 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Modules regexpr.c shamodule.c Message-ID: <199904101547.LAA04165@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Modules In directory eric:/projects/python/develop/guido/src/Modules Modified Files: regexpr.c shamodule.c Log Message: casts for picky compilers. From guido@cnri.reston.va.us Sat Apr 10 16:48:25 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Sat, 10 Apr 1999 11:48:25 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Objects fileobject.c Message-ID: <199904101548.LAA04184@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: casts for picky compilers. From guido@cnri.reston.va.us Sat Apr 10 17:01:50 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Sat, 10 Apr 1999 12:01:50 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src configure.in Message-ID: <199904101601.MAA04339@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: Quote a bunch of shell variables used in test, related to long-long. From guido@cnri.reston.va.us Sat Apr 10 17:02:21 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Sat, 10 Apr 1999 12:02:21 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src configure Message-ID: <199904101602.MAA04365@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 Sat Apr 10 17:04:08 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Sat, 10 Apr 1999 12:04:08 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src README Message-ID: <199904101604.MAA04388@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: Add DEC Ultrix notes (from Donn Cave's email). From guido@cnri.reston.va.us Sat Apr 10 18:17:52 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Sat, 10 Apr 1999 13:17:52 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Misc ACKS Message-ID: <199904101717.NAA04538@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: Correct missed character in Andrew Dalke's name. From guido@cnri.reston.va.us Sat Apr 10 19:42:04 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Sat, 10 Apr 1999 14:42:04 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/PC _tkinter.def Message-ID: <199904101842.OAA04640@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/PC In directory eric:/projects/python/develop/guido/src/PC Removed Files: _tkinter.def Log Message: No longer needed. From guido@cnri.reston.va.us Mon Apr 12 15:34:18 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 12 Apr 1999 10:34:18 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Lib gzip.py Message-ID: <199904121434.KAA07343@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory eric:/projects/python/develop/guido/src/Lib Modified Files: gzip.py Log Message: Two different changes. 1. Jack Jansen reports that on the Mac, the time may be negative, and solves this by adding a write32u() function that writes an unsigned long. 2. On 64-bit platforms the CRC comparison fails; I've fixed this by casting both values to be compared to "unsigned long" i.e. modulo 0x100000000L. From guido@cnri.reston.va.us Mon Apr 12 15:34:51 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 12 Apr 1999 10:34:51 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Lib/plat-linux2 CDROM.py Message-ID: <199904121434.KAA07363@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib/plat-linux2 In directory eric:/projects/python/develop/guido/src/Lib/plat-linux2 Added Files: CDROM.py Log Message: Forgot to add this file. CDROM device parameters. From guido@cnri.reston.va.us Mon Apr 12 15:35:10 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 12 Apr 1999 10:35:10 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Lib/plat-sunos5 CDIO.py Message-ID: <199904121435.KAA07383@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib/plat-sunos5 In directory eric:/projects/python/develop/guido/src/Lib/plat-sunos5 Added Files: CDIO.py Log Message: Forgot to add this file. CDROM device parameters. From guido@cnri.reston.va.us Mon Apr 12 15:35:49 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 12 Apr 1999 10:35:49 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Modules zlibmodule.c Message-ID: <199904121435.KAA07404@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Modules In directory eric:/projects/python/develop/guido/src/Modules Modified Files: zlibmodule.c Log Message: Cast added by Jack Jansen (for Mac port). From guido@cnri.reston.va.us Mon Apr 12 15:47:32 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 12 Apr 1999 10:47:32 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src README Message-ID: <199904121447.KAA07472@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: Clarify PC build instructions (point to PCbuild). From guido@cnri.reston.va.us Mon Apr 12 15:49:05 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 12 Apr 1999 10:49:05 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/PC readme.txt vc40.mak Message-ID: <199904121449.KAA07496@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/PC In directory eric:/projects/python/develop/guido/src/PC Modified Files: readme.txt Removed Files: vc40.mak Log Message: Remove all VC++ info (except VC 1.5) from readme.txt; remove the VC++ 4.0 project file; remove the unused _tkinter extern defs. From fdrake@weyr.cnri.reston.va.us Mon Apr 12 16:41:46 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 12 Apr 1999 11:41:46 -0400 Subject: [Python-checkins] CVS: python/dist/src/Doc/html .cvsignore Message-ID: <199904121541.LAA05358@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 the doc/ directory ("Documenting Python"). From guido@cnri.reston.va.us Mon Apr 12 17:42:15 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 12 Apr 1999 12:42:15 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Modules Makefile.pre.in Message-ID: <199904121642.MAA07939@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Modules In directory eric:/projects/python/develop/guido/src/Modules Modified Files: Makefile.pre.in Log Message: 'clean' target should remove hassignal. From guido@cnri.reston.va.us Mon Apr 12 19:16:12 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 12 Apr 1999 14:16:12 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src README Message-ID: <199904121816.OAA08457@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: Add note about -D_REENTRANT for HP-UX 10.20. From guido@cnri.reston.va.us Mon Apr 12 20:01:47 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 12 Apr 1999 15:01:47 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src README Message-ID: <199904121901.PAA08572@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: Add note about popen2 problem on Linux noticed by Pablo Bleyer. From guido@cnri.reston.va.us Mon Apr 12 23:51:22 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 12 Apr 1999 18:51:22 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Modules cPickle.c Message-ID: <199904122251.SAA08962@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 accidentally reversed NULL test in load_mark(). Suggested by Tamito Kajiyama. (This caused a bug only on platforms where malloc(0) returns NULL.) From guido@cnri.reston.va.us Tue Apr 13 05:07:34 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Tue, 13 Apr 1999 00:07:34 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Modules socketmodule.c Message-ID: <199904130407.AAA12188@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: Put back __osf__ support for gethostbyname_r(); the real bug was that it was being used even without threads. This of course might be an all-platform problem so now we only use the _r variant when we are using threads. From guido@cnri.reston.va.us Tue Apr 13 05:20:50 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Tue, 13 Apr 1999 00:20:50 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Lib threading_api.py Message-ID: <199904130420.AAA12278@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory eric:/projects/python/develop/guido/src/Lib Removed Files: threading_api.py Log Message: Removed; since long subsumed in Doc/lib/libthreading.tex From guido@cnri.reston.va.us Tue Apr 13 05:24:24 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Tue, 13 Apr 1999 00:24:24 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Lib pstats.py Message-ID: <199904130424.AAA12307@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory eric:/projects/python/develop/guido/src/Lib Modified Files: pstats.py Log Message: Fix mysterious references to jprofile that were in the source since its creation. I'm assuming these were once valid references to "Jim Roskind's profile"... From guido@cnri.reston.va.us Tue Apr 13 15:23:48 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Tue, 13 Apr 1999 10:23:48 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/PC python_nt.rc Message-ID: <199904131423.KAA13555@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/PC In directory eric:/projects/python/develop/guido/src/PC Modified Files: python_nt.rc Log Message: Bump the myusterious M$ version number from 1,5,2,1 to 1,5,2,3. (I can't even display this on NT, maybe Win/98 can?) From guido@cnri.reston.va.us Tue Apr 13 15:25:53 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Tue, 13 Apr 1999 10:25:53 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Misc ACKS Message-ID: <199904131425.KAA13606@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: Bunch of new names who helped iron out the last wrinkles of 1.5.2. From guido@cnri.reston.va.us Tue Apr 13 15:32:14 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Tue, 13 Apr 1999 10:32:14 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Python thread_solaris.h Message-ID: <199904131432.KAA13654@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Python In directory eric:/projects/python/develop/guido/src/Python Modified Files: thread_solaris.h Log Message: While I can't really test this thoroughly, Pat Knight and the Solaris man pages suggest that the proper thing to do is to add THR_NEW_LWP to the flags on thr_create(), and that there really isn't a downside, so I'll do that. From guido@cnri.reston.va.us Tue Apr 13 15:32:43 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Tue, 13 Apr 1999 10:32:43 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Misc ACKS Message-ID: <199904131432.KAA13673@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: More (Cameron Laird is honorary; the others are 1.5.2c1 testers). From guido@cnri.reston.va.us Tue Apr 13 15:46:13 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Tue, 13 Apr 1999 10:46:13 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Include patchlevel.h Message-ID: <199904131446.KAA14078@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Include In directory eric:/projects/python/develop/guido/src/Include Modified Files: patchlevel.h Log Message: Prepare for final release. From guido@cnri.reston.va.us Tue Apr 13 15:47:28 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Tue, 13 Apr 1999 10:47:28 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src README Message-ID: <199904131447.KAA15467@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: Prepare for final release. From guido@cnri.reston.va.us Tue Apr 13 16:41:12 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Tue, 13 Apr 1999 11:41:12 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/PC config.c Message-ID: <199904131541.LAA17955@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: Added sha module! From guido@cnri.reston.va.us Tue Apr 13 16:44:22 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Tue, 13 Apr 1999 11:44:22 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/PCbuild python15.dsp Message-ID: <199904131544.LAA17983@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: Added shamodule.c From guido@cnri.reston.va.us Tue Apr 13 16:44:50 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Tue, 13 Apr 1999 11:44:50 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/PCbuild python15.wse Message-ID: <199904131544.LAA18003@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: Bump version to 1.5.2 (final) From guido@cnri.reston.va.us Tue Apr 13 16:52:48 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Tue, 13 Apr 1999 11:52:48 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Misc NEWS Message-ID: <199904131552.LAA18066@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: News for 1.5.2 (final). From fdrake@weyr.cnri.reston.va.us Tue Apr 13 22:22:48 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 13 Apr 1999 17:22:48 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/texinputs boilerplate.tex Message-ID: <199904132122.RAA14381@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: Just in case a copy of the documentation gets released somehow... From fdrake@weyr.cnri.reston.va.us Tue Apr 13 22:36:45 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 13 Apr 1999 17:36:45 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libpdb.tex Message-ID: <199904132136.RAA14787@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: libpdb.tex Log Message: Work around problems with HTML conversion by making the break and tbreak synopses be all on one line (each). Known problem, most recently reported by Barry Scott . From fdrake@weyr.cnri.reston.va.us Tue Apr 13 22:38:03 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 13 Apr 1999 17:38:03 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libstat.tex Message-ID: <199904132138.RAA14813@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: libstat.tex Log Message: Fix availability declaration for stat module; report by Barry Scott . From fdrake@weyr.cnri.reston.va.us Tue Apr 13 22:39:32 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 13 Apr 1999 17:39:32 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libbastion.tex Message-ID: <199904132139.RAA14843@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: libbastion.tex Log Message: Minor cleanup. From fdrake@weyr.cnri.reston.va.us Tue Apr 13 23:03:28 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 13 Apr 1999 18:03:28 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libpopen2.tex Message-ID: <199904132203.SAA15487@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: Fix availability declaration for popen2 module; report by Barry Scott . From fdrake@weyr.cnri.reston.va.us Tue Apr 13 23:09:00 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 13 Apr 1999 18:09:00 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/perl python.perl Message-ID: <199904132209.SAA15582@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 problem of LaTeX leakage in the module synopsis tables at the beginning of chapters. Known problem reported by Barry Scott . From fdrake@weyr.cnri.reston.va.us Tue Apr 13 23:17:56 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 13 Apr 1999 18:17:56 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/perl howto.perl manual.perl Message-ID: <199904132217.SAA15641@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: howto.perl manual.perl Log Message: Don't include the verbatim style; the default handling is better. From fdrake@weyr.cnri.reston.va.us Tue Apr 13 23:19:22 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 13 Apr 1999 18:19:22 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/mac mac.tex Message-ID: <199904132219.SAA15687@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: mac.tex Log Message: For now, comment out the \ignorePlatformAnnotation; the global index doesn't really work with this. From fdrake@weyr.cnri.reston.va.us Wed Apr 14 06:02:09 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 14 Apr 1999 01:02:09 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/tools mkdvi.sh Message-ID: <199904140502.BAA16911@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 some support for the module index, so this can be used to build the .aux file for any of the "manual" class documents. From fdrake@weyr.cnri.reston.va.us Wed Apr 14 13:52:16 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 14 Apr 1999 08:52:16 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/ref ref6.tex Message-ID: <199904141252.IAA17363@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: ref6.tex Log Message: Typo: "Otherwose" --> "Otherwise" (reported by Joakim Sernbrant ). Misc. small fixes to the logical markup. From fdrake@weyr.cnri.reston.va.us Wed Apr 14 14:13:34 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 14 Apr 1999 09:13:34 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/tools mkdvi.sh Message-ID: <199904141313.JAA17532@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: Further refinement, to allow this to handle the library reference as well as the other "manual" documents. From fdrake@weyr.cnri.reston.va.us Wed Apr 14 15:04:40 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 14 Apr 1999 10:04:40 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/paper-letter Makefile Message-ID: <199904141404.KAA18252@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/paper-letter In directory weyr:/home/fdrake/projects/python/Doc/paper-letter Modified Files: Makefile Log Message: Use the tools/mkdvi.sh script to generate DVI and PDF output for the library reference now that it's sufficiently capable. From fdrake@weyr.cnri.reston.va.us Wed Apr 14 15:28:49 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 14 Apr 1999 10:28:49 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/html index.html Message-ID: <199904141428.KAA19101@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: index.html Log Message: Use the standard stylesheet here as well. From fdrake@weyr.cnri.reston.va.us Wed Apr 14 15:31:54 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 14 Apr 1999 10:31:54 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libstdtypes.tex Message-ID: <199904141431.KAA19137@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: Correct documentation for .read(); Python makes a serious best-effort to return 'size' bytes. Point out that this may mean multiple fread() calls. Reported by Anders Hammarquist via the Debian crew. From fdrake@weyr.cnri.reston.va.us Thu Apr 15 16:11:42 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 15 Apr 1999 11:11:42 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libdbhash.tex lib.tex libanydbm.tex libshelve.tex Message-ID: <199904151511.LAA18576@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 libanydbm.tex libshelve.tex Added Files: libdbhash.tex Log Message: Document the dbhash module, and link to it from appropriate places. From fdrake@weyr.cnri.reston.va.us Thu Apr 15 16:12:38 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 15 Apr 1999 11:12:38 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc Makefile.deps Message-ID: <199904151512.LAA18608@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: Add libdbhash.tex. From fdrake@weyr.cnri.reston.va.us Thu Apr 15 17:05:31 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 15 Apr 1999 12:05:31 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libundoc.tex Message-ID: <199904151605.MAA19096@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: Removed dbhash from the undocumented list. From fdrake@weyr.cnri.reston.va.us Fri Apr 16 14:17:07 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 16 Apr 1999 09:17:07 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/tut tut.tex Message-ID: <199904161317.JAA24350@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: In list of sequence comparison examples, "=" should be "==". Reported by Mirko Liss . From fdrake@weyr.cnri.reston.va.us Fri Apr 16 15:03:33 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 16 Apr 1999 10:03:33 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libdbhash.tex Message-ID: <199904161403.KAA24706@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: libdbhash.tex Log Message: Minor nits, include author info. From fdrake@weyr.cnri.reston.va.us Fri Apr 16 19:26:24 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 16 Apr 1999 14:26:24 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libundoc.tex Message-ID: <199904161826.OAA29094@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 link to Fredrik Lundh's online Tkinter reference material. From fdrake@weyr.cnri.reston.va.us Fri Apr 16 20:00:49 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 16 Apr 1999 15:00:49 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libselect.tex Message-ID: <199904161900.PAA29233@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: libselect.tex Log Message: Remove superfluous index entry for posix.popen(); no longer appropriate since popen() is only documented in os. From guido@cnri.reston.va.us Mon Apr 19 17:23:17 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 19 Apr 1999 12:23:17 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Tools/idle AutoIndent.py Message-ID: <199904191623.MAA03245@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: AutoIndent.py Log Message: Tim Peters implements some of my wishes: o Makes the tab key intelligently insert spaces when appropriate (see Help list banter twixt David Ascher and me; idea stolen from every other editor on earth ). o newline_and_indent_event trims trailing whitespace on the old line (pymode and Codewright). o newline_and_indent_event no longer fooled by trailing whitespace or comment after ":" (pymode, PTUI). o newline_and_indent_event now reduces the new line's indentation after return, break, continue, raise and pass stmts (pymode). The last two are easy to fool in the presence of strings & continuations, but pymode requires Emacs's high-powered C parsing functions to avoid that in finite time. From guido@cnri.reston.va.us Mon Apr 19 17:26:04 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 19 Apr 1999 12:26:04 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Tools/idle TODO.txt Message-ID: <199904191626.MAA03266@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: A few wishes are now fulfilled. From guido@cnri.reston.va.us Mon Apr 19 17:50:28 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 19 Apr 1999 12:50:28 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Modules fpectlmodule.c Message-ID: <199904191650.MAA03435@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Modules In directory eric:/projects/python/develop/guido/src/Modules Modified Files: fpectlmodule.c Log Message: Avoid triggering Alpha OSF/1 specific code on Alpha NT or Linux. From guido@cnri.reston.va.us Mon Apr 19 18:16:14 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 19 Apr 1999 13:16:14 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Modules makesetup Message-ID: <199904191716.NAA03797@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Modules In directory eric:/projects/python/develop/guido/src/Modules Modified Files: makesetup Log Message: Patch by Drew Csillag for FreeBSD's sh, which doesn't automatically join \-terminated lines. From guido@cnri.reston.va.us Mon Apr 19 18:22:14 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 19 Apr 1999 13:22:14 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Lib/test test_fcntl.py Message-ID: <199904191722.NAA03821@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: Daniel Neri: OpenBSD is just as BSD'ish as the other BSD's ;-) From guido@cnri.reston.va.us Mon Apr 19 18:44:41 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 19 Apr 1999 13:44:41 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Objects listobject.c Message-ID: <199904191744.NAA03981@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Objects In directory eric:/projects/python/develop/guido/src/Objects Modified Files: listobject.c Log Message: Improve text of some error messages, as suggested by Sean Reifschneider. From guido@cnri.reston.va.us Mon Apr 19 18:54:21 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 19 Apr 1999 13:54:21 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Modules main.c Message-ID: <199904191754.NAA04237@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: Patch from Tim Peters to repare a the problem that tracebacks are off by a line when Python is run with -x. From guido@cnri.reston.va.us Mon Apr 19 18:58:20 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 19 Apr 1999 13:58:20 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Modules cPickle.c Message-ID: <199904191758.NAA04323@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 writes: I have attached a new cPickle that adds a new control attribute to unpicklers: Added new Unpickler attribute, find_global. If set to None, then global and instance pickles are disabled. Otherwise, it should be set to a callable object that takes two arguments, a module name and an object name, and returns an object. If the attribute is unset, then the default mechanism is used. This feature provides an additional mechanism for controlling which classes can be used for unpickling. From fdrake@weyr.cnri.reston.va.us Mon Apr 19 19:04:00 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 19 Apr 1999 14:04:00 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Lib turtle.py Message-ID: <199904191804.OAA03146@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory weyr:/home/fdrake/projects/python/Lib Removed Files: turtle.py Log Message: Relocating file to Lib/lib-tk. From guido@cnri.reston.va.us Mon Apr 19 19:04:40 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 19 Apr 1999 14:04:40 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Lib rfc822.py Message-ID: <199904191804.OAA04483@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory eric:/projects/python/develop/guido/src/Lib Modified Files: rfc822.py Log Message: Utility function that yields a properly formatted time string. (Idea by Jeff Bauer, code by Jeremy, renamed and "Date:" constant stripped from return value by GvR.) From fdrake@weyr.cnri.reston.va.us Mon Apr 19 22:19:23 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 19 Apr 1999 17:19:23 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libbsddb.tex libanydbm.tex libdbhash.tex Message-ID: <199904192119.RAA03924@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 libdbhash.tex Added Files: libbsddb.tex Log Message: bsddb docs from Skip Montanaro; added interesting links. From fdrake@weyr.cnri.reston.va.us Mon Apr 19 22:20:15 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 19 Apr 1999 17:20:15 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libcolorsys.tex Message-ID: <199904192120.RAA03951@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: libcolorsys.tex Log Message: colorsys docs from David Ascher. From fdrake@weyr.cnri.reston.va.us Mon Apr 19 22:20:52 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 19 Apr 1999 17:20:52 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib lib.tex libundoc.tex Message-ID: <199904192120.RAA03983@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 Log Message: Updated to reflect additions. From fdrake@weyr.cnri.reston.va.us Mon Apr 19 22:21:29 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 19 Apr 1999 17:21:29 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc Makefile.deps Message-ID: <199904192121.RAA04015@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: Updated to reflect additions. From bwarsaw@cnri.reston.va.us Mon Apr 19 23:34:58 1999 From: bwarsaw@cnri.reston.va.us (Barry A. Warsaw) Date: Mon, 19 Apr 1999 18:34:58 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Tools/ht2html - New directory Message-ID: <199904192234.SAA01976@anthem.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Tools/ht2html In directory anthem:/projects/python/develop/bwarsaw/src/Tools/ht2html Log Message: Directory /projects/cvsroot/python/dist/src/Tools/ht2html added to the repository From bwarsaw@cnri.reston.va.us Mon Apr 19 23:35:57 1999 From: bwarsaw@cnri.reston.va.us (Barry A. Warsaw) Date: Mon, 19 Apr 1999 18:35:57 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Tools/ht2html README Message-ID: <199904192235.SAA02004@anthem.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Tools/ht2html In directory anthem:/projects/python/develop/bwarsaw/src/Tools/ht2html Added Files: README Log Message: README for ht2html.py Python site generator scripts From bwarsaw@cnri.reston.va.us Mon Apr 19 23:43:31 1999 From: bwarsaw@cnri.reston.va.us (Barry A. Warsaw) Date: Mon, 19 Apr 1999 18:43:31 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Tools/ht2html README Message-ID: <199904192243.SAA02048@anthem.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Tools/ht2html In directory anthem:/projects/python/develop/bwarsaw/src/Tools/ht2html Modified Files: Tag: stringmeth README Log Message: Add some examples From bwarsaw@cnri.reston.va.us Mon Apr 19 23:46:30 1999 From: bwarsaw@cnri.reston.va.us (Barry A. Warsaw) Date: Mon, 19 Apr 1999 18:46:30 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Tools/ht2html README Message-ID: <199904192246.SAA02075@anthem.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Tools/ht2html In directory anthem:/projects/python/develop/bwarsaw/python/dist/src/Tools/ht2html Modified Files: README Log Message: Add some examples, with elaboration From guido@cnri.reston.va.us Tue Apr 20 13:27:33 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Tue, 20 Apr 1999 08:27:33 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Lib popen2.py Message-ID: <199904201227.IAA05720@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory eric:/projects/python/develop/guido/src/Lib Modified Files: popen2.py Log Message: Calling _cleanup() does not guarantee that all processes have terminated; this makes the final assert in the self-test code fail if the parent runs faster than the children. Fix this by calling wait() on the remaining children instead. From fdrake@weyr.cnri.reston.va.us Tue Apr 20 14:41:16 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 20 Apr 1999 09:41:16 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libxdrlib.tex Message-ID: <199904201341.JAA09805@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: libxdrlib.tex Log Message: Added example use of pack_list() to help explain the pack_item parameter. Lack of clarity reported by Matthew Gallagher . From guido@cnri.reston.va.us Tue Apr 20 16:00:01 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Tue, 20 Apr 1999 11:00:01 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Tools/idle SearchEngine.py Message-ID: <199904201500.LAA06049@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: SearchEngine.py Log Message: Patch by Mark Favas: it fixes the search engine behaviour where an unsuccessful search wraps around and re-searches that part of the file between the start of the search and the end of the file - only really an issue for very large files, but... (also removes a redundant m.span() call). From guido@cnri.reston.va.us Tue Apr 20 16:45:32 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Tue, 20 Apr 1999 11:45:32 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Tools/idle IdlePrefs.py ColorDelegator.py EditorWindow.py PyShell.py Message-ID: <199904201545.LAA06328@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: ColorDelegator.py EditorWindow.py PyShell.py Added Files: IdlePrefs.py Log Message: Color preferences code by Loren Luke (massaged by me somewhat) From guido@cnri.reston.va.us Tue Apr 20 16:58:30 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Tue, 20 Apr 1999 11:58:30 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Tools/idle IdlePrefs.py Message-ID: <199904201558.LAA06396@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: IdlePrefs.py Log Message: Restored the original IDLE color scheme. From guido@cnri.reston.va.us Tue Apr 20 18:32:54 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Tue, 20 Apr 1999 13:32:54 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Tools/idle extend.txt Message-ID: <199904201732.NAA10586@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: extend.txt Log Message: For an event 'foo-bar', the corresponding method must be called foo_bar_event(). Therefore, fix the references to zoom_height() in the example. From fdrake@weyr.cnri.reston.va.us Tue Apr 20 19:18:56 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 20 Apr 1999 14:18:56 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libpyclbr.tex Message-ID: <199904201818.OAA11565@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: libpyclbr.tex Log Message: Added doc for the "module" attribute on the class descriptor objects; omission repoorted by Glyn Webster . From fdrake@weyr.cnri.reston.va.us Wed Apr 21 14:58:20 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 21 Apr 1999 09:58:20 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libstdtypes.tex Message-ID: <199904211358.JAA14719@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: Added index entry for "file objects"; this is appearantly referenced somewhere in the Reference Manual, and someone tried to locate it via the index. Report on the omission by Stefan Franke . From fdrake@weyr.cnri.reston.va.us Wed Apr 21 15:00:31 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 21 Apr 1999 10:00:31 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/perl python.perl Message-ID: <199904211400.KAA14755@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 some remaining index & consistency nits. (Many data member references were being omitted from the general index.) From guido@cnri.reston.va.us Wed Apr 21 16:27:33 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Wed, 21 Apr 1999 11:27:33 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Python errors.c Message-ID: <199904211527.LAA12267@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Python In directory eric:/projects/python/develop/guido/src/Python Modified Files: errors.c Log Message: Patch by Christian Tismer for Win32, to use FormatMessage() instead of strerror(). This improves the quality of the error messages. From guido@cnri.reston.va.us Wed Apr 21 16:49:35 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Wed, 21 Apr 1999 11:49:35 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Tools/idle ColorDelegator.py Message-ID: <199904211549.LAA12616@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: ColorDelegator.py Log Message: Patch by Tim Peters to speed up colorizing of big multiline strings. From fdrake@weyr.cnri.reston.va.us Wed Apr 21 16:57:30 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 21 Apr 1999 11:57:30 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libstruct.tex Message-ID: <199904211557.LAA16083@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 link to xdrlib module in "See also" section. From fdrake@weyr.cnri.reston.va.us Wed Apr 21 16:59:00 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 21 Apr 1999 11:59:00 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/perl python.perl Message-ID: <199904211559.LAA16106@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_funcline(): Remove some bogus generated stuff from the output (some text was only intended for the index). From fdrake@weyr.cnri.reston.va.us Wed Apr 21 17:00:25 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 21 Apr 1999 12:00:25 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libstruct.tex Message-ID: <199904211600.MAA16141@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: Oops; minor nit in example: none of the other interactive examples show the "trailing" prompt, so don't show it here! From guido@cnri.reston.va.us Wed Apr 21 17:06:28 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Wed, 21 Apr 1999 12:06:28 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Demo/classes bitvec.py Message-ID: <199904211606.MAA12687@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Demo/classes In directory eric:/projects/python/develop/guido/src/Demo/classes Modified Files: bitvec.py Log Message: Correct spelling of length, discovered by Christian Tismer. From guido@cnri.reston.va.us Wed Apr 21 17:19:18 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Wed, 21 Apr 1999 12:19:18 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libsmtplib.tex Message-ID: <199904211619.MAA14187@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: libsmtplib.tex Log Message: Important fix mentioned by The Dragon De Monsyne: the sendmail() method does _not_ disconnect the connection when it throws a SMTPHeloError! From fdrake@weyr.cnri.reston.va.us Wed Apr 21 17:29:19 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 21 Apr 1999 12:29:19 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libcmath.tex Message-ID: <199904211629.MAA16489@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: libcmath.tex Log Message: Mark the references to module names use \module or \refmodule (the closing paragraph used \code). From fdrake@weyr.cnri.reston.va.us Wed Apr 21 17:29:58 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 21 Apr 1999 12:29:58 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libmath.tex Message-ID: <199904211629.MAA16519@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: libmath.tex Log Message: Markup nits. From fdrake@weyr.cnri.reston.va.us Wed Apr 21 17:38:55 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 21 Apr 1999 12:38:55 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libarray.tex Message-ID: <199904211638.MAA16926@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: libarray.tex Log Message: Added "See also" reference to xdrlib. Markup nits. From fdrake@weyr.cnri.reston.va.us Wed Apr 21 17:41:41 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 21 Apr 1999 12:41:41 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libcfgparser.tex Message-ID: <199904211641.MAA16970@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: Markup nits. From guido@cnri.reston.va.us Wed Apr 21 17:52:21 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Wed, 21 Apr 1999 12:52:21 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Lib smtplib.py Message-ID: <199904211652.MAA14238@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory eric:/projects/python/develop/guido/src/Lib Modified Files: smtplib.py Log Message: Patch by Per Cederqvist, seemingly approved by The Dragon: Two problems: The SMTPRecipientsRefused class should not inherit SMTPResponseException, since it doesn't provide the smtp_code and smtp_error attributes. My patch for not adding an extra CRLF was apparently forgotten. The enclosed patch fixes these two problems. From fdrake@weyr.cnri.reston.va.us Wed Apr 21 18:01:16 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 21 Apr 1999 13:01:16 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libtempfile.tex Message-ID: <199904211701.NAA17058@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: libtempfile.tex Log Message: Markup nit to fixed dropped space in HTML output. From guido@cnri.reston.va.us Wed Apr 21 18:03:15 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Wed, 21 Apr 1999 13:03:15 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src configure configure.in Message-ID: <199904211703.NAA14352@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src In directory eric:/projects/python/develop/guido/src Modified Files: configure configure.in Log Message: FreeBSD/[34]* change, Dom Mitchell. From fdrake@weyr.cnri.reston.va.us Wed Apr 21 18:04:45 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 21 Apr 1999 13:04:45 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libfnmatch.tex Message-ID: <199904211704.NAA17289@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: libfnmatch.tex Log Message: Textual references to the glob module can be hyperlinks. From fdrake@weyr.cnri.reston.va.us Wed Apr 21 18:08:52 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 21 Apr 1999 13:08:52 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libshutil.tex Message-ID: <199904211708.NAA17336@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: Explain *why* the copytree() implementation is presented as the example! From fdrake@weyr.cnri.reston.va.us Wed Apr 21 18:18:05 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 21 Apr 1999 13:18:05 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib liblocale.tex Message-ID: <199904211718.NAA17390@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: liblocale.tex Log Message: Logical markup & other small nits. From fdrake@weyr.cnri.reston.va.us Wed Apr 21 18:29:15 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 21 Apr 1999 13:29:15 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libsocket.tex Message-ID: <199904211729.NAA17663@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: Logical markup nits. Make references to other modules hyperlinks. From fdrake@weyr.cnri.reston.va.us Wed Apr 21 18:57:16 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 21 Apr 1999 13:57:16 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libselect.tex Message-ID: <199904211757.NAA17978@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: libselect.tex Log Message: Work around LaTeX2HTML comment-handling bug. From fdrake@weyr.cnri.reston.va.us Wed Apr 21 19:01:15 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 21 Apr 1999 14:01:15 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libthread.tex Message-ID: <199904211801.OAA18029@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: libthread.tex Log Message: Nits. Reference to signal module becomes a hyperlink. From fdrake@weyr.cnri.reston.va.us Wed Apr 21 19:10:09 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 21 Apr 1999 14:10:09 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libwhichdb.tex Message-ID: <199904211810.OAA18284@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: libwhichdb.tex Log Message: Make the names of the referenced modules hyperlinks; they had not been marked at all. From fdrake@weyr.cnri.reston.va.us Wed Apr 21 19:13:33 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 21 Apr 1999 14:13:33 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libos.tex Message-ID: <199904211813.OAA18332@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: Small markup nits. From fdrake@weyr.cnri.reston.va.us Wed Apr 21 19:14:24 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 21 Apr 1999 14:14:24 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib librandom.tex Message-ID: <199904211814.OAA18396@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: librandom.tex Log Message: Make references to whrandom hyperlinks. From fdrake@weyr.cnri.reston.va.us Wed Apr 21 19:15:25 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 21 Apr 1999 14:15:25 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libstringio.tex Message-ID: <199904211815.OAA18495@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: Small nits, more hyperlinks. Added more information for cStringIO. From fdrake@weyr.cnri.reston.va.us Wed Apr 21 19:17:13 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 21 Apr 1999 14:17:13 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libstdtypes.tex Message-ID: <199904211817.OAA18591@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: Reflow paragraph to work around LaTeX2HTML dropping a space. From fdrake@weyr.cnri.reston.va.us Wed Apr 21 19:33:49 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 21 Apr 1999 14:33:49 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libposix.tex Message-ID: <199904211833.OAA18841@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: Reflow paragraph to work around LaTeX2HTML dropping a space. Make all references to the os module hyperlinks. From fdrake@weyr.cnri.reston.va.us Wed Apr 21 19:44:42 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 21 Apr 1999 14:44:42 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libzlib.tex Message-ID: <199904211844.OAA18916@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: libzlib.tex Log Message: The version information here was checked good in 1999, not 199. ;-) Added "See also" reference to zlib home page, even though it's mentioned in the text. From fdrake@weyr.cnri.reston.va.us Wed Apr 21 22:15:37 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 21 Apr 1999 17:15:37 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libposixfile.tex Message-ID: <199904212115.RAA19448@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: libposixfile.tex Log Message: Mark the "Notes:" sections under tables the same way it's done elsewhere in the library reference. From fdrake@weyr.cnri.reston.va.us Wed Apr 21 22:33:25 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 21 Apr 1999 17:33:25 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libarray.tex Message-ID: <199904212133.RAA19820@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: libarray.tex Log Message: Fix markup typo. From fdrake@weyr.cnri.reston.va.us Wed Apr 21 22:43:19 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 21 Apr 1999 17:43:19 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libprofile.tex Message-ID: <199904212143.RAA20034@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: libprofile.tex Log Message: Misc. markup nits. All sections get reasonable file names in the HTML output. From guido@cnri.reston.va.us Thu Apr 22 13:03:42 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Thu, 22 Apr 1999 08:03:42 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Python getversion.c Message-ID: <199904221203.IAA16036@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Python In directory eric:/projects/python/develop/guido/src/Python Modified Files: getversion.c Log Message: Allow longer strings (up to 80 chars each) for version, build, compiler info. From fdrake@weyr.cnri.reston.va.us Thu Apr 22 14:03:50 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 22 Apr 1999 09:03:50 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/texinputs ltxmarkup.sty Message-ID: <199904221303.JAA00871@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: ltxmarkup.sty Log Message: Added support for adding environment/macro parameters more cleanly: \op adds an optional parameter, and \p adds a required parameter. These are only defined in the context of the parameter list parameter of the envdesc and macrodesc environments. From fdrake@weyr.cnri.reston.va.us Thu Apr 22 14:05:28 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 22 Apr 1999 09:05:28 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/doc doc.tex Message-ID: <199904221305.JAA00894@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/doc In directory weyr:/home/fdrake/projects/python/Doc/doc Modified Files: doc.tex Log Message: Fill in a lot of the blanks. Add a start to the LaTeX primer section. Use Python-traditional XXX comments instead of square brackets that aren't as obvious or usefully grepable. From fdrake@weyr.cnri.reston.va.us Thu Apr 22 14:05:53 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 22 Apr 1999 09:05:53 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc TODO Message-ID: <199904221305.JAA00923@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: Add a couple of items. From fdrake@weyr.cnri.reston.va.us Thu Apr 22 14:08:09 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 22 Apr 1999 09:08:09 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/tools findmodrefs Message-ID: <199904221308.JAA00950@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: findmodrefs Log Message: Script to locate uses of \module where the module referred to is not the module being documented at that point in the documentation; these are candidates for conversion to \refmodule, which produces a hyperlink in the HTML and PDF versions of the output. From guido@cnri.reston.va.us Thu Apr 22 14:38:41 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Thu, 22 Apr 1999 09:38:41 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Tools/idle ColorDelegator.py Message-ID: <199904221338.JAA16223@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: ColorDelegator.py Log Message: Super-elegant patch by Tim Peters that speeds up colorization dramatically (up to 15 times he claims). Works by reading more than one line at a time, up to 100-line chunks (starting with one line and then doubling up to the limit). On a typical machine (e.g. Tim's P5-166) this doesn't reduce interactive responsiveness in a noticeable way. From fdrake@weyr.cnri.reston.va.us Thu Apr 22 15:06:36 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 22 Apr 1999 10:06:36 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libbsddb.tex Message-ID: <199904221406.KAA01548@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: libbsddb.tex Log Message: Add warning that last() and previous() don't work for hashtable databases (opened using hashopen()), as noted by Skip Montanaro on comp.lang.python. From guido@cnri.reston.va.us Thu Apr 22 15:07:34 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Thu, 22 Apr 1999 10:07:34 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Tools/idle TODO.txt Message-ID: <199904221407.KAA16286@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: Some more TODO items. Made up my mind about command line args, Run/Import, __main__. From fdrake@weyr.cnri.reston.va.us Thu Apr 22 15:16:15 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 22 Apr 1999 10:16:15 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc Makefile Message-ID: <199904221416.KAA01670@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: Updated a comment and the release number. From fdrake@weyr.cnri.reston.va.us Thu Apr 22 15:17:00 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 22 Apr 1999 10:17:00 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/texinputs boilerplate.tex Message-ID: <199904221417.KAA01694@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: Make an assertion. From fdrake@weyr.cnri.reston.va.us Thu Apr 22 15:55:44 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 22 Apr 1999 10:55:44 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libstat.tex Message-ID: <199904221455.KAA01981@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: libstat.tex Log Message: Don't refer to the system documentation as "man pages"; too Unix-centric. Note that this can be used with the output of os.fstat() as well as os.stat() and os.lstat(). From fdrake@weyr.cnri.reston.va.us Thu Apr 22 16:01:45 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 22 Apr 1999 11:01:45 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib lib.tex Message-ID: <199904221501.LAA02026@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: Move stat to the Generic chapter. From fdrake@weyr.cnri.reston.va.us Thu Apr 22 16:14:13 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 22 Apr 1999 11:14:13 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libstat.tex Message-ID: <199904221514.LAA02080@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: libstat.tex Log Message: Remove \platform declaration; this module is generic. From fdrake@weyr.cnri.reston.va.us Thu Apr 22 16:19:02 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 22 Apr 1999 11:19:02 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libcommands.tex Message-ID: <199904221519.LAA02118@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: libcommands.tex Log Message: Don't describe this module as being a popen() wrapper; that's a little confusing. This is clearly Unix-specific; label it as such. From fdrake@weyr.cnri.reston.va.us Thu Apr 22 16:53:36 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 22 Apr 1999 11:53:36 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libcommands.tex Message-ID: <199904221553.LAA02764@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: libcommands.tex Log Message: Shorten the section title. From fdrake@weyr.cnri.reston.va.us Thu Apr 22 17:03:32 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 22 Apr 1999 12:03:32 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib internet.tex Message-ID: <199904221603.MAA03025@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: internet.tex Log Message: Make reference to the socket module a hyperlink. From fdrake@weyr.cnri.reston.va.us Thu Apr 22 17:15:35 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 22 Apr 1999 12:15:35 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libftplib.tex Message-ID: <199904221615.MAA03085@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: libftplib.tex Log Message: Fix dropped space in the HTML output. From fdrake@weyr.cnri.reston.va.us Thu Apr 22 17:17:45 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 22 Apr 1999 12:17:45 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libgopherlib.tex Message-ID: <199904221617.MAA03108@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: libgopherlib.tex Log Message: Reference to urllib module can be a hyperlink. From fdrake@weyr.cnri.reston.va.us Thu Apr 22 17:21:10 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 22 Apr 1999 12:21:10 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libpoplib.tex Message-ID: <199904221621.MAA03334@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: libpoplib.tex Log Message: Fix minor (English) usage nits. From fdrake@weyr.cnri.reston.va.us Thu Apr 22 17:45:27 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 22 Apr 1999 12:45:27 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libnntplib.tex Message-ID: <199904221645.MAA03871@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: libnntplib.tex Log Message: Clean up some mark up. From fdrake@weyr.cnri.reston.va.us Thu Apr 22 17:46:18 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 22 Apr 1999 12:46:18 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libimaplib.tex Message-ID: <199904221646.MAA03895@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: libimaplib.tex Log Message: Minor logical markup nits. Make some module references hyperlinks. From fdrake@weyr.cnri.reston.va.us Thu Apr 22 17:47:28 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 22 Apr 1999 12:47:28 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libhttplib.tex Message-ID: <199904221647.MAA03923@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: libhttplib.tex Log Message: Make some module references hyperlinks. From fdrake@weyr.cnri.reston.va.us Thu Apr 22 17:50:41 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 22 Apr 1999 12:50:41 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libpdb.tex Message-ID: <199904221650.MAA03966@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: libpdb.tex Log Message: Logical markup and small nits. Don't refer to the STDWIN chapter; chances are really good it wasn't included. ;-) From fdrake@weyr.cnri.reston.va.us Thu Apr 22 18:23:35 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 22 Apr 1999 13:23:35 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libsmtplib.tex Message-ID: <199904221723.NAA04306@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: libsmtplib.tex Log Message: Added descriptions of the various exceptions, based on the docstrings. Various small cleanups. From fdrake@weyr.cnri.reston.va.us Thu Apr 22 18:53:37 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 22 Apr 1999 13:53:37 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libtelnetlib.tex Message-ID: <199904221753.NAA04682@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: libtelnetlib.tex Log Message: Clean up lots of mark up. From fdrake@weyr.cnri.reston.va.us Thu Apr 22 19:25:33 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 22 Apr 1999 14:25:33 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libsgmllib.tex Message-ID: <199904221825.OAA05373@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: libsgmllib.tex Log Message: Markup nits. Make module references hyperlinks. From fdrake@weyr.cnri.reston.va.us Thu Apr 22 19:25:48 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 22 Apr 1999 14:25:48 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libhtmllib.tex Message-ID: <199904221825.OAA05392@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: libhtmllib.tex Log Message: Markup nits. Make module references hyperlinks. From fdrake@weyr.cnri.reston.va.us Thu Apr 22 21:16:03 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 22 Apr 1999 16:16:03 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libxmllib.tex Message-ID: <199904222016.QAA06081@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 a "See also" section with some external references. From fdrake@weyr.cnri.reston.va.us Thu Apr 22 21:32:22 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 22 Apr 1999 16:32:22 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/tools findmodrefs Message-ID: <199904222032.QAA06143@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: findmodrefs Log Message: Add command line flags to just list the files that contain the offending lines or to include line numbers in the output. From guido@cnri.reston.va.us Thu Apr 22 21:49:36 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Thu, 22 Apr 1999 16:49:36 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Tools/idle PyShell.py Message-ID: <199904222049.QAA16986@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: A lot of changes to make the command line more useful. You can now do: idle.py -e file ... -- to edit files idle.py script arg ... -- to run a script idle.py -c cmd arg ... -- to run a command Other options, see also the usage message (also new!) for more details: -d -- enable debugger -s -- run $IDLESTARTUP or $PYTHONSTARTUP -t title -- set Python Shell window's title sys.argv is set accordingly, unless -e is used. sys.path is absolutized, and all relevant paths are inserted into it. Other changes: - the environment in which commands are executed is now the __main__ module - explicitly save sys.stdout etc., don't restore from sys.__stdout__ - new interpreter methods execsource(), execfile(), stuffsource() - a few small nits From guido@cnri.reston.va.us Thu Apr 22 21:50:34 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Thu, 22 Apr 1999 16:50:34 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Tools/idle OutputWindow.py Message-ID: <199904222050.QAA17019@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: OutputWindow.py Log Message: Added flush(), for completeness. From guido@cnri.reston.va.us Thu Apr 22 21:50:53 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Thu, 22 Apr 1999 16:50:53 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Tools/idle idlever.py Message-ID: <199904222050.QAA17036@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: New version to celebrate new command line From fdrake@weyr.cnri.reston.va.us Thu Apr 22 21:52:45 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 22 Apr 1999 16:52:45 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libimp.tex Message-ID: <199904222052.QAA06286@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: libimp.tex Log Message: Shorten the section title. From fdrake@weyr.cnri.reston.va.us Thu Apr 22 21:56:00 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 22 Apr 1999 16:56:00 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libmpz.tex Message-ID: <199904222056.QAA06318@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: Work around LaTeX2HTML comment-handling bug. From guido@cnri.reston.va.us Thu Apr 22 21:56:23 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Thu, 22 Apr 1999 16:56:23 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Tools/idle PyShell.py Message-ID: <199904222056.QAA17067@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: Nits: document use of $IDLESTARTUP; display idle version From fdrake@weyr.cnri.reston.va.us Thu Apr 22 22:19:54 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 22 Apr 1999 17:19:54 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libsunaudio.tex Message-ID: <199904222119.RAA06397@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: libsunaudio.tex Log Message: Remove bogus characters in code sample. From fdrake@weyr.cnri.reston.va.us Thu Apr 22 22:23:23 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 22 Apr 1999 17:23:23 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libal.tex libaudioop.tex libbinascii.tex libcopyreg.tex libexcs.tex libformatter.tex libgetpass.tex libimageop.tex libmarshal.tex libparser.tex libpickle.tex libprofile.tex libquopri.tex libregsub.tex librexec.tex librfc822.tex libshelve.tex libstdwin.tex libstring.tex libsys.tex libthreading.tex Message-ID: <199904222123.RAA06464@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: libal.tex libaudioop.tex libbinascii.tex libcopyreg.tex libexcs.tex libformatter.tex libgetpass.tex libimageop.tex libmarshal.tex libparser.tex libpickle.tex libprofile.tex libquopri.tex libregsub.tex librexec.tex librfc822.tex libshelve.tex libstdwin.tex libstring.tex libsys.tex libthreading.tex Log Message: Make internal module references hyperlinks wherever it makes sense. From guido@cnri.reston.va.us Thu Apr 22 23:27:41 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Thu, 22 Apr 1999 18:27:41 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Tools/idle ScriptBinding.py Message-ID: <199904222227.SAA17256@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: Mostly rewritten. Instead of the old Run module and Debug module, there are two new commands: Import module (F5) imports or reloads the module and also adds its name to the __main__ namespace. This gets executed in the PyShell window under control of its debug settings. Run script (Control-F5) is similar but executes the contents of the file directly in the __main__ namespace. From guido@cnri.reston.va.us Thu Apr 22 23:28:42 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Thu, 22 Apr 1999 18:28:42 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Tools/idle OutputWindow.py Message-ID: <199904222228.SAA17275@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: OutputWindow.py Log Message: Moved classes OnDemandOutputWindow and PseudoFile here, from ScriptBinding.py where they are no longer needed. From guido@cnri.reston.va.us Thu Apr 22 23:32:33 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Thu, 22 Apr 1999 18:32:33 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Tools/idle TODO.txt Message-ID: <199904222232.SAA17295@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: Several wishes fulfilled. From guido@cnri.reston.va.us Fri Apr 23 00:09:23 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Thu, 22 Apr 1999 19:09:23 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Tools/idle Bindings.py Message-ID: <199904222309.TAA17586@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: Remove obsolete 'script' menu. From guido@cnri.reston.va.us Fri Apr 23 00:20:17 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Thu, 22 Apr 1999 19:20:17 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Tools/idle help.txt Message-ID: <199904222320.TAA17617@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: help.txt Log Message: Bunch of updates necessary due to recent changes; added docs for File menu, command line and color preferences. From guido@cnri.reston.va.us Fri Apr 23 15:01:26 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Fri, 23 Apr 1999 10:01:26 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Tools/idle EditorWindow.py Message-ID: <199904231401.KAA18580@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: Provide full arguments to __import__ so it works in packagized IDLE. From fdrake@weyr.cnri.reston.va.us Fri Apr 23 15:41:46 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 23 Apr 1999 10:41:46 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/doc doc.tex Message-ID: <199904231441.KAA08879@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/doc In directory weyr:/home/fdrake/projects/python/Doc/doc Modified Files: doc.tex Log Message: General small improvements and fixes. From fdrake@weyr.cnri.reston.va.us Fri Apr 23 15:44:54 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 23 Apr 1999 10:44:54 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/texinputs ltxmarkup.sty Message-ID: <199904231444.KAA08966@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: ltxmarkup.sty Log Message: Fix square brackets around optional parameters to macros. From fdrake@weyr.cnri.reston.va.us Fri Apr 23 15:46:18 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 23 Apr 1999 10:46:18 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libmultifile.tex Message-ID: <199904231446.KAA09000@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: libmultifile.tex Log Message: Hack places where '--' should appear as literal output but the -- was (properly) converted to - by LaTeX2HTML. From fdrake@weyr.cnri.reston.va.us Fri Apr 23 16:15:59 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 23 Apr 1999 11:15:59 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc TODO Message-ID: <199904231515.LAA09147@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 a couple more requests from users. From fdrake@weyr.cnri.reston.va.us Fri Apr 23 16:41:55 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 23 Apr 1999 11:41:55 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libbinhex.tex Message-ID: <199904231541.LAA09707@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: libbinhex.tex Log Message: Fix some glaring markup consistency problems (presentation was broken). Added a "See also" section. From fdrake@weyr.cnri.reston.va.us Fri Apr 23 16:42:38 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 23 Apr 1999 11:42:38 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libbinascii.tex Message-ID: <199904231542.LAA09774@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: libbinascii.tex Log Message: Refer to the binhex module, not the non-existent hexbin module. Added a "See also" section. From fdrake@weyr.cnri.reston.va.us Fri Apr 23 16:52:19 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 23 Apr 1999 11:52:19 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libbase64.tex libuu.tex Message-ID: <199904231552.LAA10019@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 libuu.tex Log Message: Added "See also" sections linking to binascii. From fdrake@weyr.cnri.reston.va.us Fri Apr 23 16:57:24 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 23 Apr 1999 11:57:24 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libuu.tex Message-ID: <199904231557.LAA10055@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: libuu.tex Log Message: Work around a space-dropping problem in LaTeX2HTML. Clarify the usage of a parameter. From fdrake@weyr.cnri.reston.va.us Fri Apr 23 17:02:30 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 23 Apr 1999 12:02:30 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libmimetypes.tex Message-ID: <199904231602.MAA10084@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: libmimetypes.tex Log Message: Shorten the section title. Fix a couple of grammatical errors. From fdrake@weyr.cnri.reston.va.us Fri Apr 23 17:07:38 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 23 Apr 1999 12:07:38 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libmhlib.tex Message-ID: <199904231607.MAA10116@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: libmhlib.tex Log Message: Shorten the section title. From bwarsaw@cnri.reston.va.us Fri Apr 23 17:24:00 1999 From: bwarsaw@cnri.reston.va.us (Barry A. Warsaw) Date: Fri, 23 Apr 1999 12:24:00 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Tools/pynche Main.py Message-ID: <199904231624.MAA06514@anthem.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Tools/pynche In directory anthem:/projects/python/develop/bwarsaw/python/dist/src/Tools/pynche Modified Files: Main.py Log Message: Added /usr/lib/X11/rgb.txt in front of X/rgb.txt for Linuxers From fdrake@weyr.cnri.reston.va.us Fri Apr 23 17:44:54 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 23 Apr 1999 12:44:54 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libmimify.tex Message-ID: <199904231644.MAA10568@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: libmimify.tex Log Message: Shorten the section title. Adjust markup to be a little more consistent with the rest of the document. From fdrake@weyr.cnri.reston.va.us Fri Apr 23 18:03:22 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 23 Apr 1999 13:03:22 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libnetrc.tex Message-ID: <199904231703.NAA10651@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: libnetrc.tex Log Message: No, __repr__() does not accept a parameter other than self. From fdrake@weyr.cnri.reston.va.us Fri Apr 23 18:11:54 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 23 Apr 1999 13:11:54 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libbltin.tex Message-ID: <199904231711.NAA10711@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: libbltin.tex Log Message: Logical markup. From fdrake@weyr.cnri.reston.va.us Fri Apr 23 18:26:25 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 23 Apr 1999 13:26:25 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib librestricted.tex Message-ID: <199904231726.NAA10994@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: librestricted.tex Log Message: Fixed some logical markup nits. Added a pointer to Grail in the see-also section, since it's used as an example. From fdrake@weyr.cnri.reston.va.us Fri Apr 23 18:30:40 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 23 Apr 1999 13:30:40 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libaudioop.tex Message-ID: <199904231730.NAA11035@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: libaudioop.tex Log Message: Work-around LaTeX2HTML space-dropping bug. From fdrake@weyr.cnri.reston.va.us Fri Apr 23 21:00:54 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 23 Apr 1999 16:00:54 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libtokenize.tex Message-ID: <199904232000.QAA12959@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: libtokenize.tex Log Message: Fix a couple of grammatical errors reported by Detlef Lannert . From fdrake@weyr.cnri.reston.va.us Fri Apr 23 21:01:17 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 23 Apr 1999 16:01:17 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/doc doc.tex Message-ID: <199904232001.QAA12978@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/doc In directory weyr:/home/fdrake/projects/python/Doc/doc Modified Files: doc.tex Log Message: Fix a couple of typos reported by Detlef Lannert . From fdrake@weyr.cnri.reston.va.us Fri Apr 23 21:07:03 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 23 Apr 1999 16:07:03 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libthreading.tex Message-ID: <199904232007.QAA16492@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: libthreading.tex Log Message: Fix a grammatical error reported by Detlef Lannert . From fdrake@weyr.cnri.reston.va.us Fri Apr 23 21:32:59 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 23 Apr 1999 16:32:59 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libbsddb.tex Message-ID: <199904232032.QAA16637@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: libbsddb.tex Log Message: Clarifications on the first(), next(), and previous() functions, based on comments from Detlef Lannert . From fdrake@weyr.cnri.reston.va.us Fri Apr 23 21:34:00 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 23 Apr 1999 16:34:00 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libsite.tex Message-ID: <199904232034.QAA16661@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: libsite.tex Log Message: Fixed typo and font-control problem reported by Detlef Lannert . From fdrake@weyr.cnri.reston.va.us Fri Apr 23 21:54:58 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 23 Apr 1999 16:54:58 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libstat.tex Message-ID: <199904232054.QAA16779@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: libstat.tex Log Message: Patch from Greg Ward adding descriptions of S_IMODE() and S_IFMT(), and an explanation of why any of stat.S_*() would be used instead of os.path.is*(). (With some really small enhancements by me.) From guido@cnri.reston.va.us Fri Apr 23 21:59:06 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Fri, 23 Apr 1999 16:59:06 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Modules timemodule.c Message-ID: <199904232059.QAA20101@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: Apparently __GNU_LIBRARY__ is defined for glibc as well as for libc5. The test really wanted to distinguish between the two. So now we test for __GLIBC__ instead. I have confirmed that this works for glibc and I have an email from Christian Tanzer confirming that it works for libc5, so it should be fine. From fdrake@weyr.cnri.reston.va.us Fri Apr 23 23:03:01 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 23 Apr 1999 18:03:01 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libmd5.tex Message-ID: <199904232203.SAA17807@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: libmd5.tex Log Message: Nits. From fdrake@weyr.cnri.reston.va.us Fri Apr 23 22:52:19 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 23 Apr 1999 17:52:19 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libsha.tex lib.tex Message-ID: <199904232152.RAA17749@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 Added Files: libsha.tex Log Message: Add section for the sha module. From fdrake@weyr.cnri.reston.va.us Fri Apr 23 23:22:27 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 23 Apr 1999 18:22:27 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libsunaudio.tex Message-ID: <199904232222.SAA18092@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: libsunaudio.tex Log Message: Markup consistency. From fdrake@weyr.cnri.reston.va.us Fri Apr 23 23:24:13 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 23 Apr 1999 18:24:13 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libundoc.tex Message-ID: <199904232224.SAA18117@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: mhlib is now documented. From guido@cnri.reston.va.us Mon Apr 26 23:20:40 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 26 Apr 1999 18:20:40 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Tools/idle ChangeLog ColorDelegator.py PyShell.py Message-ID: <199904262220.SAA23132@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: ChangeLog ColorDelegator.py PyShell.py Log Message: Tim Peters strikes again: Ho ho ho -- that's trickier than it sounded! The colorizer is working with "line.col" strings instead of Text marks, and the absolute coordinates of the point of interest can change across the self.update call (voice of baffled experience, when two quick backspaces no longer fooled it, but a backspace followed by a quick ENTER did ). Anyway, the attached appears to do the trick. CPU usage goes way up when typing quickly into a long triple-quoted string, but the latency is fine for me (a relatively fast typist on a relatively slow machine). Most of the changes here are left over from reducing the # of vrbl names to help me reason about the logic better; I hope the code is a *little* easier to From guido@cnri.reston.va.us Tue Apr 27 00:11:47 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 26 Apr 1999 19:11:47 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Tools/webchecker webchecker.py Message-ID: <199904262311.TAA23227@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Tools/webchecker In directory eric:/projects/python/develop/guido/src/Tools/webchecker Modified Files: webchecker.py Log Message: Some changes (maybe not enough?) to make it work on Windows with local file URLs. From bwarsaw@cnri.reston.va.us Tue Apr 27 00:17:16 1999 From: bwarsaw@cnri.reston.va.us (Barry A. Warsaw) Date: Mon, 26 Apr 1999 19:17:16 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Tools/pynche ChipViewer.py ColorDB.py ListViewer.py Main.py PyncheWidget.py Switchboard.py Message-ID: <199904262317.TAA12186@anthem.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Tools/pynche In directory anthem:/projects/python/develop/bwarsaw/python/dist/src/Tools/pynche Modified Files: ChipViewer.py ColorDB.py ListViewer.py Main.py PyncheWidget.py Switchboard.py Log Message: Lots of changes to support loading alternative color name database. You can switch database by just loading the new one; the list window and nearest colors adapt to the new database. Some reorganizing of code. Also, the name of the database file is stored in the ~/.pynche pickle. If it can't be loaded, fallbacks are used. From bwarsaw@cnri.reston.va.us Tue Apr 27 00:18:08 1999 From: bwarsaw@cnri.reston.va.us (Barry A. Warsaw) Date: Mon, 26 Apr 1999 19:18:08 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Tools/pynche Main.py Message-ID: <199904262318.TAA12202@anthem.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Tools/pynche In directory anthem:/projects/python/develop/bwarsaw/python/dist/src/Tools/pynche Modified Files: Main.py Log Message: Set the version number to 1.0 -- I think it's stable enough From bwarsaw@cnri.reston.va.us Tue Apr 27 00:26:24 1999 From: bwarsaw@cnri.reston.va.us (Barry A. Warsaw) Date: Mon, 26 Apr 1999 19:26:24 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Tools/pynche html40colors.txt Message-ID: <199904262326.TAA12222@anthem.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Tools/pynche In directory anthem:/projects/python/develop/bwarsaw/python/dist/src/Tools/pynche Added Files: html40colors.txt Log Message: The HTML 4.0 guaranteed colors. From bwarsaw@cnri.reston.va.us Tue Apr 27 00:26:43 1999 From: bwarsaw@cnri.reston.va.us (Barry A. Warsaw) Date: Mon, 26 Apr 1999 19:26:43 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Tools/pynche websafe.txt Message-ID: <199904262326.TAA12236@anthem.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Tools/pynche In directory anthem:/projects/python/develop/bwarsaw/python/dist/src/Tools/pynche Added Files: websafe.txt Log Message: The "Web-safe" colors (all #rrggbb style) From bwarsaw@cnri.reston.va.us Tue Apr 27 00:27:39 1999 From: bwarsaw@cnri.reston.va.us (Barry A. Warsaw) Date: Mon, 26 Apr 1999 19:27:39 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Tools/pynche webcolors.txt Message-ID: <199904262327.TAA12250@anthem.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Tools/pynche In directory anthem:/projects/python/develop/bwarsaw/python/dist/src/Tools/pynche Added Files: webcolors.txt Log Message: Tim Peter's sister's 140 named colors that NS and MSIE understand (with some controversy surrounding AliceBlue :-) From bwarsaw@cnri.reston.va.us Tue Apr 27 00:36:48 1999 From: bwarsaw@cnri.reston.va.us (Barry A. Warsaw) Date: Mon, 26 Apr 1999 19:36:48 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Tools/pynche PyncheWidget.py Message-ID: <199904262336.TAA12296@anthem.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Tools/pynche In directory anthem:/projects/python/develop/bwarsaw/python/dist/src/Tools/pynche Modified Files: PyncheWidget.py Log Message: Put the 'File' menu on the menubar even when modal, so users can get to the 'load palette' entry. Just don't put the quit button on there. From bwarsaw@cnri.reston.va.us Tue Apr 27 00:46:26 1999 From: bwarsaw@cnri.reston.va.us (Barry A. Warsaw) Date: Mon, 26 Apr 1999 19:46:26 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Tools/pynche README Message-ID: <199904262346.TAA12327@anthem.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Tools/pynche In directory anthem:/projects/python/develop/bwarsaw/python/dist/src/Tools/pynche Modified Files: README Log Message: Describe the Color database files From bwarsaw@cnri.reston.va.us Tue Apr 27 00:48:18 1999 From: bwarsaw@cnri.reston.va.us (Barry A. Warsaw) Date: Mon, 26 Apr 1999 19:48:18 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Tools/pynche README Message-ID: <199904262348.TAA12342@anthem.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Tools/pynche In directory anthem:/projects/python/develop/bwarsaw/python/dist/src/Tools/pynche Modified Files: README Log Message: Describe how to load a new database From bwarsaw@cnri.reston.va.us Tue Apr 27 00:49:24 1999 From: bwarsaw@cnri.reston.va.us (Barry A. Warsaw) Date: Mon, 26 Apr 1999 19:49:24 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Tools/pynche namedcolors.txt Message-ID: <199904262349.TAA12362@anthem.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Tools/pynche In directory anthem:/projects/python/develop/bwarsaw/python/dist/src/Tools/pynche Added Files: namedcolors.txt Log Message: An alternative Netscape database From bwarsaw@cnri.reston.va.us Tue Apr 27 00:50:04 1999 From: bwarsaw@cnri.reston.va.us (Barry A. Warsaw) Date: Mon, 26 Apr 1999 19:50:04 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Tools/pynche README Message-ID: <199904262350.TAA12380@anthem.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Tools/pynche In directory anthem:/projects/python/develop/bwarsaw/python/dist/src/Tools/pynche Modified Files: README Log Message: Describe namedcolors.txt From guido@cnri.reston.va.us Tue Apr 27 13:21:18 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Tue, 27 Apr 1999 08:21:18 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Lib dumbdbm.py Message-ID: <199904271221.IAA23707@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory eric:/projects/python/develop/guido/src/Lib Modified Files: dumbdbm.py Log Message: Cast f.tell() result to int() in _addval(), so it works even on platforms where tell() returns a long. (Perhaps tell() should be fixed too?) Reported by Greg Humphreys. From bwarsaw@cnri.reston.va.us Tue Apr 27 16:56:02 1999 From: bwarsaw@cnri.reston.va.us (Barry A. Warsaw) Date: Tue, 27 Apr 1999 11:56:02 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Tools/pynche StripViewer.py Message-ID: <199904271556.LAA25198@anthem.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Tools/pynche In directory anthem:/projects/python/develop/bwarsaw/python/dist/src/Tools/pynche Modified Files: StripViewer.py Log Message: Change Black/White button labels to not include the arrow From bwarsaw@cnri.reston.va.us Tue Apr 27 16:56:54 1999 From: bwarsaw@cnri.reston.va.us (Barry A. Warsaw) Date: Tue, 27 Apr 1999 11:56:54 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Tools/pynche TextViewer.py Message-ID: <199904271556.LAA25213@anthem.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Tools/pynche In directory anthem:/projects/python/develop/bwarsaw/python/dist/src/Tools/pynche Modified Files: TextViewer.py Log Message: When selecting a radio button in the TextViewer (to change a specific text widget attribute), the color the attribute currently has is set in the main widget. From fdrake@weyr.cnri.reston.va.us Tue Apr 27 19:05:07 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 27 Apr 1999 14:05:07 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libgl.tex Message-ID: <199904271805.OAA24360@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: Added "See also" reference to PyOpenGL. From bwarsaw@cnri.reston.va.us Tue Apr 27 19:43:48 1999 From: bwarsaw@cnri.reston.va.us (Barry A. Warsaw) Date: Tue, 27 Apr 1999 14:43:48 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Tools/pynche Main.py Message-ID: <199904271843.OAA25453@anthem.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Tools/pynche In directory anthem:/projects/python/develop/bwarsaw/python/dist/src/Tools/pynche Modified Files: Main.py Log Message: add a comment From bwarsaw@cnri.reston.va.us Tue Apr 27 19:53:30 1999 From: bwarsaw@cnri.reston.va.us (Barry A. Warsaw) Date: Tue, 27 Apr 1999 14:53:30 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Tools/pynche Switchboard.py Message-ID: <199904271853.OAA25477@anthem.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Tools/pynche In directory anthem:/projects/python/develop/bwarsaw/python/dist/src/Tools/pynche Modified Files: Switchboard.py Log Message: Added docstring describing Viewer interface. set_colordb(): Call Viewers' colordb_changed() method if they have them. Notifies them of changes to the color name database. From bwarsaw@cnri.reston.va.us Tue Apr 27 19:54:13 1999 From: bwarsaw@cnri.reston.va.us (Barry A. Warsaw) Date: Tue, 27 Apr 1999 14:54:13 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Tools/pynche DetailsViewer.py ListViewer.py TextViewer.py Message-ID: <199904271854.OAA25496@anthem.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Tools/pynche In directory anthem:/projects/python/develop/bwarsaw/python/dist/src/Tools/pynche Modified Files: DetailsViewer.py ListViewer.py TextViewer.py Log Message: Add a module global variable ADDTOVIEW to conform to dynamic viewer lookup protocol. From bwarsaw@cnri.reston.va.us Tue Apr 27 19:55:48 1999 From: bwarsaw@cnri.reston.va.us (Barry A. Warsaw) Date: Tue, 27 Apr 1999 14:55:48 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Tools/pynche PyncheWidget.py Message-ID: <199904271855.OAA25517@anthem.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Tools/pynche In directory anthem:/projects/python/develop/bwarsaw/python/dist/src/Tools/pynche Modified Files: PyncheWidget.py Log Message: Implement dynamic external Viewer discovery. PyncheWidget.__init__(): Add the extrapath argument which can be used to pass in additional directories to search for Viewers. From bwarsaw@cnri.reston.va.us Tue Apr 27 19:56:35 1999 From: bwarsaw@cnri.reston.va.us (Barry A. Warsaw) Date: Tue, 27 Apr 1999 14:56:35 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Tools/pynche pyColorChooser.py Message-ID: <199904271856.OAA25533@anthem.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Tools/pynche In directory anthem:/projects/python/develop/bwarsaw/python/dist/src/Tools/pynche Modified Files: pyColorChooser.py Log Message: askcolor(): databasefile and wantspec can now be set on every invocation, instead of just the first. From bwarsaw@cnri.reston.va.us Tue Apr 27 19:57:01 1999 From: bwarsaw@cnri.reston.va.us (Barry A. Warsaw) Date: Tue, 27 Apr 1999 14:57:01 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Tools/pynche README Message-ID: <199904271857.OAA25549@anthem.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Tools/pynche In directory anthem:/projects/python/develop/bwarsaw/python/dist/src/Tools/pynche Modified Files: README Log Message: Document that for askcolor(), databasefile and wantspec can now be set on every invocation, instead of just the first. From bwarsaw@cnri.reston.va.us Tue Apr 27 20:51:56 1999 From: bwarsaw@cnri.reston.va.us (Barry A. Warsaw) Date: Tue, 27 Apr 1999 15:51:56 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Tools/pynche PyncheWidget.py Message-ID: <199904271951.PAA25701@anthem.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Tools/pynche In directory anthem:/projects/python/develop/bwarsaw/python/dist/src/Tools/pynche Modified Files: PyncheWidget.py Log Message: Use the much nicer tkFileDialog for loading color name database files (thanks Fred!) From guido@cnri.reston.va.us Tue Apr 27 23:06:09 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Tue, 27 Apr 1999 18:06:09 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src configure configure.in Message-ID: <199904272206.SAA26556@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src In directory eric:/projects/python/develop/guido/src Modified Files: configure configure.in Log Message: Need to double the macro brackets in FreeBSD check. (My fault, not Dom's -- he submitted a correct patch to configure.) From guido@cnri.reston.va.us Wed Apr 28 13:21:48 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Wed, 28 Apr 1999 08:21:48 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Lib CGIHTTPServer.py Message-ID: <199904281221.IAA26966@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory eric:/projects/python/develop/guido/src/Lib Modified Files: CGIHTTPServer.py Log Message: Two changes suggested by Jan Pieter Riegel: (1) Fix reference to pwd.error to be KeyError -- there is no pwd.error and pwd.getpwnam() raises KeyError on failure. (2) Add cookie support, by placing the 'Cookie:' header, if present, in the HTTP_COOKIE environment variable. From fdrake@weyr.cnri.reston.va.us Wed Apr 28 14:54:32 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 28 Apr 1999 09:54:32 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/perl python.perl Message-ID: <199904281354.JAA29735@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_seetext(): Clean up so we get proper nesting of
s. This fixes a rendering problem on IE5. General adjustments to the table* environments, including using and . Attempt to adjust the vertical alignment of the table cells so that the baseline of the first cell matches the baseline of the remaining cells: When the first cell is small and the second cell of the same row is multi-line, the first cell was vertically centered by default. Specifying valign=baseline fixes the problem on IE, but Netscape seems to ignore both valign=top and valign=baseline (even though valign is NS's fault!). Make the horizontal alignment of 'p' columns left instead of center (for the headings). From fdrake@weyr.cnri.reston.va.us Wed Apr 28 15:04:37 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 28 Apr 1999 10:04:37 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/mac libmac.tex Message-ID: <199904281404.KAA29918@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: Point to the library reference manual for os.path documentation (in macpath section). From fdrake@weyr.cnri.reston.va.us Wed Apr 28 15:58:49 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 28 Apr 1999 10:58:49 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/perl python.perl Message-ID: <199904281458.KAA00673@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: Control the layout of output tables a little better so they're easier to debug. Small code cleanup around tables. From fdrake@weyr.cnri.reston.va.us Wed Apr 28 15:59:45 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 28 Apr 1999 10:59:45 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/texinputs python.sty Message-ID: <199904281459.KAA00691@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: \filenq: Like \file, but don't use single-quotes; this looks better in tables. From fdrake@weyr.cnri.reston.va.us Wed Apr 28 16:06:09 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 28 Apr 1999 11:06:09 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/html Makefile Message-ID: <199904281506.LAA00733@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: Adjust the message that gets added to the bottom of each page about where to send comments. From fdrake@weyr.cnri.reston.va.us Wed Apr 28 17:33:05 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 28 Apr 1999 12:33:05 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/perl ltxmarkup.perl Message-ID: <199904281633.MAA01472@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: ltxmarkup.perl Log Message: Handle \p and \op in parameter lists for the environment and macro description environments. From fdrake@weyr.cnri.reston.va.us Wed Apr 28 17:42:30 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 28 Apr 1999 12:42:30 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/perl ltxmarkup.perl Message-ID: <199904281642.MAA01692@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: ltxmarkup.perl Log Message: Fix up the HTML generated for envdesc and macrodesc environments. Make it possible for the user to tell the difference. ;-) From fdrake@weyr.cnri.reston.va.us Wed Apr 28 17:43:12 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 28 Apr 1999 12:43:12 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/doc doc.tex Message-ID: <199904281643.MAA01720@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/doc In directory weyr:/home/fdrake/projects/python/Doc/doc Modified Files: doc.tex Log Message: Fill in a few holes. From fdrake@weyr.cnri.reston.va.us Wed Apr 28 17:54:00 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 28 Apr 1999 12:54:00 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/doc doc.tex Message-ID: <199904281654.MAA01781@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/doc In directory weyr:/home/fdrake/projects/python/Doc/doc Modified Files: doc.tex Log Message: Removed (empty) description of \optional from the "Inline Markup" section; that's not really the right place for it. From fdrake@weyr.cnri.reston.va.us Wed Apr 28 17:57:02 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 28 Apr 1999 12:57:02 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/texinputs boilerplate.tex Message-ID: <199904281657.MAA01817@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: Let's try again: new assertion. From fdrake@weyr.cnri.reston.va.us Wed Apr 28 18:11:21 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 28 Apr 1999 13:11:21 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/perl python.perl Message-ID: <199904281711.NAA02121@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: setup_column_alignments(): Adding valign=baseline to the tag makes the alignment work on Navigator as well as IE. Uglier HTML, but it looks right. From fdrake@weyr.cnri.reston.va.us Wed Apr 28 18:38:32 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 28 Apr 1999 13:38:32 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Lib/test test_rfc822.py Message-ID: <199904281738.NAA03949@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib/test In directory weyr:/home/fdrake/projects/python/Lib/test Modified Files: test_rfc822.py Log Message: Added test case that includes a comma in the full name. This tests for an old bug that's been gone a while, but was still documented until a few minutes from now. From fdrake@weyr.cnri.reston.va.us Wed Apr 28 19:11:10 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 28 Apr 1999 14:11:10 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib librfc822.tex Message-ID: <199904281811.OAA04270@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: librfc822.tex Log Message: Use \rfc to mark some remaining RFC references. Remove comment about full name bug in getaddrlist(); this has been fixed for a while now. Work around LaTeX2HTML space-dropping bug. Mention that the fp attribute can be used to read the message body. From fdrake@weyr.cnri.reston.va.us Wed Apr 28 19:24:03 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 28 Apr 1999 14:24:03 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/doc doc.tex Message-ID: <199904281824.OAA04435@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/doc In directory weyr:/home/fdrake/projects/python/Doc/doc Modified Files: doc.tex Log Message: Remove the \date macro; just pick it up from boilerplate.tex. From bwarsaw@cnri.reston.va.us Wed Apr 28 20:32:48 1999 From: bwarsaw@cnri.reston.va.us (Barry A. Warsaw) Date: Wed, 28 Apr 1999 15:32:48 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Tools/audiopy README audiopy Message-ID: <199904281932.PAA01047@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 audiopy Log Message: Add a scale widget and command line options to set the output volume. Bump version number 1.0 From fdrake@weyr.cnri.reston.va.us Wed Apr 28 22:17:39 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 28 Apr 1999 17:17:39 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Lib rfc822.py Message-ID: <199904282117.RAA05012@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory weyr:/home/fdrake/projects/python/Lib Modified Files: rfc822.py Log Message: Message.getheader(): Fixed grammatical error in docstring. Message.getheaders(): Method to get list of all values for each instance of a named header. See docstring for more. From fdrake@weyr.cnri.reston.va.us Thu Apr 29 03:30:04 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 28 Apr 1999 22:30:04 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libcrypto.tex Message-ID: <199904290230.WAA05569@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: libcrypto.tex Log Message: Update starship URLs. From fdrake@weyr.cnri.reston.va.us Thu Apr 29 03:30:03 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 28 Apr 1999 22:30:03 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/ext ext.tex Message-ID: <199904290230.WAA05556@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 starship URLs. From fdrake@weyr.cnri.reston.va.us Thu Apr 29 03:30:05 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 28 Apr 1999 22:30:05 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/tut tut.tex Message-ID: <199904290230.WAA05579@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: Update starship URLs. From fdrake@weyr.cnri.reston.va.us Thu Apr 29 03:44:51 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 28 Apr 1999 22:44:51 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/ext ext.tex Message-ID: <199904290244.WAA05648@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: Clarify that the Modules/ directory is in an unpacked source distribution; this is not clear for Windows users. From fdrake@weyr.cnri.reston.va.us Thu Apr 29 03:47:40 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 28 Apr 1999 22:47:40 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/ext ext.tex Message-ID: <199904290247.WAA05684@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: Always use "section" when referring to sections of a document, not "Section". From fdrake@weyr.cnri.reston.va.us Thu Apr 29 03:47:41 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 28 Apr 1999 22:47:41 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libfm.tex libstdtypes.tex Message-ID: <199904290247.WAA05695@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 libstdtypes.tex Log Message: Always use "section" when referring to sections of a document, not "Section". From fdrake@weyr.cnri.reston.va.us Thu Apr 29 05:20:47 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 29 Apr 1999 00:20:47 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/api api.tex Message-ID: <199904290420.AAA06774@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: Fill in a few holes in the "Very High Level" chapter. From fdrake@weyr.cnri.reston.va.us Thu Apr 29 05:23:38 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 29 Apr 1999 00:23:38 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc TODO Message-ID: <199904290423.AAA06806@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: Annotate a couple of entries further. From guido@cnri.reston.va.us Thu Apr 29 13:50:37 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Thu, 29 Apr 1999 08:50:37 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Lib rfc822.py Message-ID: <199904291250.IAA28860@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory eric:/projects/python/develop/guido/src/Lib Modified Files: rfc822.py Log Message: Mike Meyer reports a bug in his patch (several months ago) that accepts long month names. One essential line was missing. Fixed now. From fdrake@weyr.cnri.reston.va.us Thu Apr 29 13:57:33 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 29 Apr 1999 08:57:33 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libos.tex Message-ID: <199904291257.IAA07527@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: Minor nits, partly in response to comments from Jonathan Black . From fdrake@weyr.cnri.reston.va.us Thu Apr 29 14:20:26 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 29 Apr 1999 09:20:26 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/tut tut.tex Message-ID: <199904291320.JAA07824@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: Explain comments at the start of chapter 3. This is needed since they appear in the examples without any further explanation, and the tutorial doesn't have this information explicit anywhere else. Omission reported by Jon Black . From fdrake@weyr.cnri.reston.va.us Thu Apr 29 14:41:17 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 29 Apr 1999 09:41:17 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libintro.tex Message-ID: <199904291341.JAA07902@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: libintro.tex Log Message: Don't point readers to rand, point to random! And make it a hyperlink while you're at it. Also, when discussing order of reading, make it clear that chapter 2 is assumed background material for the remainder of the manual. That's needed for terminology if nothing else! From fdrake@weyr.cnri.reston.va.us Thu Apr 29 16:32:28 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 29 Apr 1999 11:32:28 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc Makefile Message-ID: <199904291532.LAA09206@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: Constrain a wildcard a little more. From fdrake@weyr.cnri.reston.va.us Thu Apr 29 16:42:20 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 29 Apr 1999 11:42:20 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/html index.html.in .cvsignore Makefile index.html Message-ID: <199904291542.LAA09394@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 Makefile Added Files: index.html.in Removed Files: index.html Log Message: Generate index.html from index.html.in. This avoids having to modify the index to update the version number; boilerplate.tex remains the only document source for this information. From fdrake@weyr.cnri.reston.va.us Thu Apr 29 16:44:50 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 29 Apr 1999 11:44:50 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc Makefile Message-ID: <199904291544.LAA09491@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: Make sure the global module index is added to the HTML tarball. From fdrake@weyr.cnri.reston.va.us Thu Apr 29 17:43:43 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 29 Apr 1999 12:43:43 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/ref ref5.tex Message-ID: <199904291643.MAA10011@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 Log Message: Added index entries for operator precedence; suggestion from Randall Hopper . From fdrake@weyr.cnri.reston.va.us Thu Apr 29 18:04:22 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 29 Apr 1999 13:04:22 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/html Makefile Message-ID: <199904291704.NAA10137@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: Move index.html rules to the end since it wedges font-lock. Remember to delete index.html for clobber since it is now generated.. From fdrake@weyr.cnri.reston.va.us Thu Apr 29 19:28:49 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 29 Apr 1999 14:28:49 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/tools mkhtml.sh Message-ID: <199904291828.OAA11094@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: Nasty hack to add a --numeric parameter to skip the use of "logical" names. From fdrake@weyr.cnri.reston.va.us Thu Apr 29 19:29:38 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 29 Apr 1999 14:29:38 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/html Makefile Message-ID: <199904291829.OAA11118@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: For the tutorial, use numeric node names and split by chapter. From fdrake@weyr.cnri.reston.va.us Thu Apr 29 19:42:20 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 29 Apr 1999 14:42:20 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libfl.tex Message-ID: <199904291842.OAA11457@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: libfl.tex Log Message: Use the new module-key for the FL module when hyperlinking (the old one caused problems on case-insensitive file systems). From fdrake@weyr.cnri.reston.va.us Thu Apr 29 20:04:55 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 29 Apr 1999 15:04:55 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/html Makefile Message-ID: <199904291904.PAA11648@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: Added wcnew target to run the "wcnew" version of webchecker. From fdrake@weyr.cnri.reston.va.us Thu Apr 29 20:06:57 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 29 Apr 1999 15:06:57 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/perl l2hinit.perl Message-ID: <199904291906.PAA11674@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_nav_panel(): Remove the spurious NAME="tex2html\d+" attributes added to the anchors in the navigation bars. These are added somewhere deep with l2h, and are stupid. From fdrake@weyr.cnri.reston.va.us Thu Apr 29 20:54:09 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 29 Apr 1999 15:54:09 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/html index.html.in Message-ID: <199904291954.PAA12747@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: index.html.in Log Message: Added top navigation bar for consistency and color. There's not a lot there, but the "modules" icon is active. From guido@cnri.reston.va.us Fri Apr 30 16:14:06 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Fri, 30 Apr 1999 11:14:06 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Tools/idle PathBrowser.py Message-ID: <199904301514.LAA01367@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: PathBrowser.py Log Message: Avoid listing files more than once (e.g. foomodule.so has two hits: once for foo + module.so, once for foomodule + .so). From fdrake@weyr.cnri.reston.va.us Fri Apr 30 16:58:46 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 30 Apr 1999 11:58:46 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc Makefile Message-ID: <199904301558.LAA15344@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: Revert constraint on the GIF wildcard; we missed a few! From guido@cnri.reston.va.us Fri Apr 30 20:39:26 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Fri, 30 Apr 1999 15:39:26 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Tools/idle __init__.py Message-ID: <199904301939.PAA03601@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: __init__.py Log Message: Support for using idle as a package.