From bwarsaw@cnri.reston.va.us Sat May 1 17:27:24 1999 From: bwarsaw@cnri.reston.va.us (Barry A. Warsaw) Date: Sat, 1 May 1999 12:27:24 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Tools/audiopy README Message-ID: <199905011627.MAA24455@anthem.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Tools/audiopy In directory anthem:/projects/python/develop/bwarsaw/python/dist/src/Tools/audiopy Modified Files: README Log Message: updates for latest release From fdrake@weyr.cnri.reston.va.us Mon May 3 15:27:45 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 3 May 1999 10:27:45 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/tools mkhtml.sh Message-ID: <199905031427.KAA05744@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/tools In directory weyr:/home/fdrake/projects/python/Doc/tools Modified Files: mkhtml.sh Log Message: Make sure latex2html doesn't produce a hard link from $part/$part.html and $part/index.html. Make a copy instead. (Appearantly some tar openers on non-Unixlike systems can't handle hard links.) From fdrake@weyr.cnri.reston.va.us Mon May 3 15:29:08 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 3 May 1999 10:29:08 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/tools mkhowto Message-ID: <199905031429.KAA05777@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/tools In directory weyr:/home/fdrake/projects/python/Doc/tools Modified Files: mkhowto Log Message: Make sure latex2html doesn't produce a hard link between foo/foo.html and foo/index.html. Make a copy instead. (Appearantly some tar openers on non-Unixlike systems can't handle hard links.) From guido@cnri.reston.va.us Mon May 3 16:23:25 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 3 May 1999 11:23:25 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Lib os.py Message-ID: <199905031523.LAA05584@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory eric:/projects/python/develop/guido/src/Lib Modified Files: os.py Log Message: The case-insensitive _Environ class was lacking a case-insensitive has_key(). From guido@cnri.reston.va.us Mon May 3 16:38:56 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 3 May 1999 11:38:56 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Tools/idle WidgetRedirector.py Message-ID: <199905031538.LAA05668@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: WidgetRedirector.py Log Message: Tim Peters writes: [W]hile trying to dope out how redirection works, stumbled into two possible glitches. In the first, it doesn't appear to make sense to try to rename a command that's already been destroyed; in the second, the name "previous" doesn't really bring to mind "ignore the previous value" . From guido@cnri.reston.va.us Mon May 3 16:49:53 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 3 May 1999 11:49:53 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Tools/idle AutoIndent.py EditorWindow.py FormatParagraph.py UndoDelegator.py Message-ID: <199905031549.LAA05747@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 EditorWindow.py FormatParagraph.py UndoDelegator.py Log Message: Tim Peters writes: I'm still unsure, but couldn't stand the virtual event trickery so tried a different sin (adding undo_block_start/stop methods to the Text instance in EditorWindow.py). Like it or not, it's efficient and works . Better idea? Give the attached a whirl. Even if you hate the implementation, I think you'll like the results. Think I caught all the "block edit" cmds, including Format Paragraph, plus subtler ones involving smart indents and backspacing. From guido@cnri.reston.va.us Mon May 3 19:00:21 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 3 May 1999 14:00:21 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Lib BaseHTTPServer.py Message-ID: <199905031800.OAA06096@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory eric:/projects/python/develop/guido/src/Lib Modified Files: BaseHTTPServer.py Log Message: No need to import rfc822. (Andrew Dalke & kjpylint) From guido@cnri.reston.va.us Mon May 3 19:00:49 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 3 May 1999 14:00:49 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Lib CGIHTTPServer.py Message-ID: <199905031800.OAA06115@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: No need to import sys, time, or socket. (Andrew Dalke & kjpylint) From guido@cnri.reston.va.us Mon May 3 19:01:32 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 3 May 1999 14:01:32 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Lib SimpleHTTPServer.py Message-ID: <199905031801.OAA06134@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory eric:/projects/python/develop/guido/src/Lib Modified Files: SimpleHTTPServer.py Log Message: No need to import sys, time, socket or SocketServer. (Andrew Dalke & kjpylint) From guido@cnri.reston.va.us Mon May 3 19:02:45 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 3 May 1999 14:02:45 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Lib aifc.py Message-ID: <199905031802.OAA06153@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory eric:/projects/python/develop/guido/src/Lib Modified Files: aifc.py Log Message: The _comp_data() function never worked, it contained a reference to undefined 'nframes'. Should be self._nframes. (Andrew Dalke & kjpylint) From guido@cnri.reston.va.us Mon May 3 19:04:08 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 3 May 1999 14:04:08 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Lib audiodev.py Message-ID: <199905031804.OAA06172@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory eric:/projects/python/develop/guido/src/Lib Modified Files: audiodev.py Log Message: Clarify why there are dynamic imports in AudioDev(). This will enlighten Andrew Dalke; I don't know about kjpylint. :-) From guido@cnri.reston.va.us Mon May 3 19:07:41 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 3 May 1999 14:07:41 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Lib calendar.py Message-ID: <199905031807.OAA06198@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory eric:/projects/python/develop/guido/src/Lib Modified Files: calendar.py Log Message: No need to import gmtime, ctime, asctime. Make error an alias for ValueError. (Andrew Dalke & kjpylint) From guido@cnri.reston.va.us Mon May 3 19:08:16 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 3 May 1999 14:08:16 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Lib cmd.py Message-ID: <199905031808.OAA06217@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory eric:/projects/python/develop/guido/src/Lib Modified Files: cmd.py Log Message: No need to import sys or linecache. (Andrew Dalke & kjpylint) From guido@cnri.reston.va.us Mon May 3 19:09:26 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 3 May 1999 14:09:26 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Lib dbhash.py Message-ID: <199905031809.OAA06236@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory eric:/projects/python/develop/guido/src/Lib Modified Files: dbhash.py Log Message: Clarify why we define error. Suggested by Andrew Dalke. From guido@cnri.reston.va.us Mon May 3 19:09:53 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 3 May 1999 14:09:53 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Lib dis.py Message-ID: <199905031809.OAA06255@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory eric:/projects/python/develop/guido/src/Lib Modified Files: dis.py Log Message: Clarify why we define disco. Suggested by Andrew Dalke. From guido@cnri.reston.va.us Mon May 3 19:10:15 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 3 May 1999 14:10:15 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Lib htmllib.py Message-ID: <199905031810.OAA06274@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory eric:/projects/python/develop/guido/src/Lib Modified Files: htmllib.py Log Message: No need to import sys. (Andrew Dalke & kjpylint) From guido@cnri.reston.va.us Mon May 3 19:10:38 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 3 May 1999 14:10:38 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Lib netrc.py Message-ID: <199905031810.OAA06293@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory eric:/projects/python/develop/guido/src/Lib Modified Files: netrc.py Log Message: No need to import sys or string. (Andrew Dalke & kjpylint) From guido@cnri.reston.va.us Mon May 3 19:12:09 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 3 May 1999 14:12:09 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Lib pdb.py Message-ID: <199905031812.OAA06317@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory eric:/projects/python/develop/guido/src/Lib Modified Files: pdb.py Log Message: Get rid of confusing 'global' statement in global code. (Andrew Dalke & kjpylint) From guido@cnri.reston.va.us Mon May 3 19:12:36 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 3 May 1999 14:12:36 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Lib pipes.py Message-ID: <199905031812.OAA06336@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory eric:/projects/python/develop/guido/src/Lib Modified Files: pipes.py Log Message: No need to import os in test(). (Andrew Dalke & kjpylint) From guido@cnri.reston.va.us Mon May 3 19:13:00 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 3 May 1999 14:13:00 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Lib profile.py Message-ID: <199905031813.OAA06354@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory eric:/projects/python/develop/guido/src/Lib Modified Files: profile.py Log Message: No need to import string. (Andrew Dalke & kjpylint) From guido@cnri.reston.va.us Mon May 3 19:13:29 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 3 May 1999 14:13:29 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Lib profile.py Message-ID: <199905031813.OAA06372@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory eric:/projects/python/develop/guido/src/Lib Modified Files: profile.py Log Message: Typo. (Andrew Dalke, without kjpylint) From guido@cnri.reston.va.us Mon May 3 19:13:51 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 3 May 1999 14:13:51 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Lib pty.py Message-ID: <199905031813.OAA06390@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory eric:/projects/python/develop/guido/src/Lib Modified Files: pty.py Log Message: No need to import sys. (Andrew Dalke & kjpylint) From guido@cnri.reston.va.us Mon May 3 19:14:16 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 3 May 1999 14:14:16 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Lib shlex.py Message-ID: <199905031814.OAA06409@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 Log Message: No need to import os or string. (Andrew Dalke & kjpylint) From guido@cnri.reston.va.us Mon May 3 19:16:23 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 3 May 1999 14:16:23 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Lib urlparse.py Message-ID: <199905031816.OAA06428@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory eric:/projects/python/develop/guido/src/Lib Modified Files: urlparse.py Log Message: No need to import find(). (Andrew Dalke & kjpylint) From guido@cnri.reston.va.us Mon May 3 20:57:01 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 3 May 1999 15:57:01 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Lib/test test_rfc822.py Message-ID: <199905031957.PAA06707@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_rfc822.py Log Message: Regression test for date format code, by Mike Meyer. (I tweaked it slightly so examples are allowed to have no date too.) From guido@cnri.reston.va.us Thu May 6 00:03:49 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Wed, 5 May 1999 19:03:49 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Lib/lib-tk Tkinter.py Message-ID: <199905052303.TAA11538@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: Nathan Paul Simons noticed that the grid_remove() method was missing. (The difference between grid_remove() and grid_forget() is that the former remembers the options for the slave.) From guido@cnri.reston.va.us Thu May 6 15:26:35 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Thu, 6 May 1999 10:26:35 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Objects floatobject.c Message-ID: <199905061426.KAA12448@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Objects In directory eric:/projects/python/develop/guido/src/Objects Modified Files: floatobject.c Log Message: Tim Peters writes: 1. Fixes float divmod so that the quotient it returns is always an integral value. 2. Fixes float % and float divmod so that the remainder always gets the right sign (the current code uses a "are the signs different?" test that doesn't work half the time when the product of the divisor and the remainder underflows to 0). From fdrake@weyr.cnri.reston.va.us Thu May 6 15:46:35 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 6 May 1999 10:46:35 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libfuncs.tex Message-ID: <199905061446.KAA02162@weyr.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: Reflect recent patch for float % and divmod() by Tim Peters. Content updates by Tim Peters, markup by FLD. From fdrake@weyr.cnri.reston.va.us Thu May 6 15:46:36 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 6 May 1999 10:46:36 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/ref ref5.tex Message-ID: <199905061446.KAA02173@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: Reflect recent patch for float % and divmod() by Tim Peters. Content updates by Tim Peters, markup by FLD. From fdrake@weyr.cnri.reston.va.us Thu May 6 20:37:39 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 6 May 1999 15:37:39 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/tools mkhowto Message-ID: <199905061937.PAA06387@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/tools In directory weyr:/home/fdrake/projects/python/Doc/tools Modified Files: mkhowto Log Message: Make it work for "manual" documents as well as "howto" documents. This still doesn't understand anything about multiple source files or checking time dependencies. From fdrake@weyr.cnri.reston.va.us Thu May 6 23:03:51 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 6 May 1999 18:03:51 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libsocket.tex Message-ID: <199905062203.SAA07513@weyr.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: Updated connect_ex() documentation based on comments in the newgroup (M.-A. Lemburg and GvR). From fdrake@weyr.cnri.reston.va.us Fri May 7 20:59:03 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 7 May 1999 15:59:03 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/tools/sgmlconv latex2esis.py Message-ID: <199905071959.PAA14585@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/tools/sgmlconv In directory weyr:/home/fdrake/projects/python/Doc/tools/sgmlconv Modified Files: latex2esis.py Log Message: Define & use a Conversion object. It's still really ugly, but at least there's a token object in here now! ;-) From fdrake@weyr.cnri.reston.va.us Fri May 7 22:12:23 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 7 May 1999 17:12:23 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/tools/sgmlconv latex2esis.py Message-ID: <199905072112.RAA15035@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/tools/sgmlconv In directory weyr:/home/fdrake/projects/python/Doc/tools/sgmlconv Modified Files: latex2esis.py Log Message: Fix some bugs introduced in the previous checkin. From fdrake@weyr.cnri.reston.va.us Fri May 7 22:14:29 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 7 May 1999 17:14:29 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/tools/sgmlconv esistools.py Message-ID: <199905072114.RAA15394@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/tools/sgmlconv In directory weyr:/home/fdrake/projects/python/Doc/tools/sgmlconv Modified Files: esistools.py Log Message: ExtendedEsisBuilder.push(): Override inherited definition. We don't want to push nodes into the document, but into a document fragment, since we're not necesarily working with something that's well-formed. From fdrake@weyr.cnri.reston.va.us Mon May 10 14:43:23 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 10 May 1999 09:43:23 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/ref ref3.tex Message-ID: <199905101343.JAA19985@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/ref In directory weyr:/home/fdrake/projects/python/Doc/ref Modified Files: ref3.tex Log Message: Fixed some index entries. In the __coerce__ description, None should be returned if the conversion is *impossible*, not *possible*. Reported by Robert Kern . From fdrake@weyr.cnri.reston.va.us Mon May 10 20:36:04 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 10 May 1999 15:36:04 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/tools/sgmlconv latex2esis.py Message-ID: <199905101936.PAA22047@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/tools/sgmlconv In directory weyr:/home/fdrake/projects/python/Doc/tools/sgmlconv Modified Files: latex2esis.py Log Message: Some more fixes. Add controls for some of the esoteric indexing macros. From fdrake@weyr.cnri.reston.va.us Mon May 10 20:36:53 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 10 May 1999 15:36:53 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/tools/sgmlconv docfixer.py Message-ID: <199905101936.PAA22070@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/tools/sgmlconv In directory weyr:/home/fdrake/projects/python/Doc/tools/sgmlconv Modified Files: docfixer.py Log Message: Lots of adjustments to deal with the document content now being stored in a fragment rather than the main document object. From fdrake@weyr.cnri.reston.va.us Tue May 11 14:45:38 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 11 May 1999 09:45:38 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib liballos.tex Message-ID: <199905111345.JAA23558@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/lib In directory weyr:/home/fdrake/projects/python/Doc/lib Modified Files: liballos.tex Log Message: Added missing comma, reported by Eric Raymond. From fdrake@weyr.cnri.reston.va.us Tue May 11 16:14:15 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 11 May 1999 11:14:15 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libcfgparser.tex libftplib.tex libshlex.tex Message-ID: <199905111514.LAA24923@weyr.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 libftplib.tex libshlex.tex Log Message: Added module references; minor grammatical fixes. All suggested by Eric Raymond. From fdrake@weyr.cnri.reston.va.us Tue May 11 16:15:54 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 11 May 1999 11:15:54 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libparser.tex Message-ID: <199905111515.LAA24960@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/lib In directory weyr:/home/fdrake/projects/python/Doc/lib Modified Files: libparser.tex Log Message: Move the "See also:" section so it appears are part of the top HTML page of the section. From fdrake@weyr.cnri.reston.va.us Tue May 11 16:42:51 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 11 May 1999 11:42:51 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/perl python.perl Message-ID: <199905111542.LAA25239@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: Change the look of \seemodule output to fit in better. From fdrake@weyr.cnri.reston.va.us Tue May 11 16:42:51 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 11 May 1999 11:42:51 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/texinputs python.sty Message-ID: <199905111542.LAA25252@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: Change the look of \seemodule output to fit in better. From fdrake@weyr.cnri.reston.va.us Thu May 13 17:20:31 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 13 May 1999 12:20:31 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libgdbm.tex Message-ID: <199905131620.MAA02020@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/lib In directory weyr:/home/fdrake/projects/python/Doc/lib Modified Files: libgdbm.tex Log Message: Removed old comments. From fdrake@weyr.cnri.reston.va.us Thu May 13 17:41:19 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 13 May 1999 12:41:19 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/perl l2hinit.perl Message-ID: <199905131641.MAA02122@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_index_entry(): Remove. This is overridden in python.perl and was never called in this incarnation. The other version is simpler as well. From fdrake@weyr.cnri.reston.va.us Thu May 13 19:36:55 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 13 May 1999 14:36:55 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/perl python.perl Message-ID: <199905131836.OAA03466@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/perl In directory weyr:/home/fdrake/projects/python/Doc/perl Modified Files: python.perl Log Message: make_index_entry(): Remove. Not only did this override the l2hinit.perl version of the function (which overrode a version in latex2html), but do_cmd_index() was overridden. Since do_cmd_index() was the only caller, we can trash this. define_indexing_macro(): New function used during setup to support more dynamic dispatch for indexing. process_index_macros(): New function; implement dynamic dispatching of indexing support functions, allowing many targets used in indexing to be shared by multiple index entries. I.e., something like \index{foo}\bifuncindex{bar} can now share a single target anchor. These indexing changes reduce the amount of clutter in the generated HTML files. In the reference manual, this cuts the number of targets by 44%. Targets are less affected when generated by environments rather than macros. From fdrake@weyr.cnri.reston.va.us Thu May 13 19:38:12 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 13 May 1999 14:38:12 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/ref ref4.tex Message-ID: <199905131838.OAA03494@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 Log Message: Small nits around some of the index entries. When refering to chapters, use \ref, don't hardcode the chapter number. From fdrake@weyr.cnri.reston.va.us Thu May 13 19:41:15 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 13 May 1999 14:41:15 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/api api.tex Message-ID: <199905131841.OAA03526@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: PyCObject_FromVoidPtr(): Clarify that the destr function will only be called on destruction is non-NULL. From fdrake@weyr.cnri.reston.va.us Thu May 13 19:47:26 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 13 May 1999 14:47:26 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Lib poplib.py Message-ID: <199905131847.OAA03578@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory weyr:/home/fdrake/projects/python/Lib Modified Files: poplib.py Log Message: POP3.uidl(): Update docstring based on comments from Piers Lauder . From fdrake@weyr.cnri.reston.va.us Thu May 13 19:48:15 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 13 May 1999 14:48:15 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libpoplib.tex Message-ID: <199905131848.OAA03642@weyr.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: POP3.uidl(): Update description based on comments from Piers Lauder . From fdrake@weyr.cnri.reston.va.us Thu May 13 19:57:29 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 13 May 1999 14:57:29 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc .cvsignore Message-ID: <199905131857.OAA03883@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc In directory weyr:/home/fdrake/projects/python/Doc Modified Files: .cvsignore Log Message: The conversion temporary files should not be ignored here anymore, since they shouldn't be here. Only ignore the output tarballs in this directory. From fdrake@weyr.cnri.reston.va.us Mon May 17 15:47:11 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 17 May 1999 10:47:11 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/texinputs python.sty Message-ID: <199905171447.KAA13595@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: \declaremodule: Make this more robust. Only attempt to add an index entry based on the module type if the type is known. Otherwise, spit out a warning the the module type parameter was bad and generate a "plain" index entry. Without this, the bad module type was emitted as text. Problem noticed by processing Michael Hudson's docs for bytecodehacks. From fdrake@weyr.cnri.reston.va.us Mon May 17 15:57:27 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 17 May 1999 10:57:27 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/texinputs python.sty Message-ID: <199905171457.KAA13696@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: \declaremodule: Typo. From fdrake@weyr.cnri.reston.va.us Mon May 17 16:00:33 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 17 May 1999 11:00:33 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/perl python.perl Message-ID: <199905171500.LAA13747@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: define_module(): Check the module type for validity before using. This reflects the changes made in ../texinputs/python.sty. From fdrake@weyr.cnri.reston.va.us Mon May 17 16:22:45 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 17 May 1999 11:22:45 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/doc doc.tex Message-ID: <199905171522.LAA13861@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: Attempted to clarify usage of the \declaremodule macro somewhat; Michael Hudson's documentation for bytecodehacks exhibits incorrect usage. Added some comments about how to set up the mkhowto script for use with documents not contained in the documentation source tree. From fdrake@weyr.cnri.reston.va.us Mon May 17 17:02:39 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 17 May 1999 12:02:39 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/templates manual.tex Message-ID: <199905171602.MAA14334@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/templates In directory weyr:/home/fdrake/projects/python/Doc/templates Modified Files: manual.tex Log Message: Don't \input boilerplate.tex, fill in the real stuff. 3rd party documents probably aren't written by Guido. ;-) From fdrake@weyr.cnri.reston.va.us Mon May 17 17:33:54 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 17 May 1999 12:33:54 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/doc doc.tex Message-ID: <199905171633.MAA14490@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: Document \e, \url. Add a few more comments about mkhowto. Based on comments from Albert . From fdrake@weyr.cnri.reston.va.us Mon May 17 17:35:15 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 17 May 1999 12:35:15 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libftplib.tex Message-ID: <199905171635.MAA14520@weyr.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: Added paragraph explaininng the text/binary flavors of some methods, to make it easier for people to find what they're looking for. From fdrake@weyr.cnri.reston.va.us Mon May 17 20:35:02 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 17 May 1999 15:35:02 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src README Message-ID: <199905171935.PAA14721@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src In directory weyr:/home/fdrake/projects/python Modified Files: README Log Message: Added "Learning Python" to the books section. Updated comments on the documentation. From fdrake@weyr.cnri.reston.va.us Mon May 17 21:57:08 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 17 May 1999 16:57:08 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libdis.tex Message-ID: <199905172057.QAA15254@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/lib In directory weyr:/home/fdrake/projects/python/Doc/lib Modified Files: libdis.tex Log Message: SET_LINE_NO ==> SET_LINENO Reported by Corran Webster . From fdrake@weyr.cnri.reston.va.us Tue May 18 18:33:01 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 18 May 1999 13:33:01 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/tools/sgmlconv fixgenents.sh Message-ID: <199905181733.NAA18749@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/tools/sgmlconv In directory weyr:/home/fdrake/projects/python/Doc/tools/sgmlconv Modified Files: fixgenents.sh Log Message: Remove the "---" to "—" conversion; this is wrong in verbatim environments. Move the conversion to esis2sgml.py. From fdrake@weyr.cnri.reston.va.us Tue May 18 18:34:52 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 18 May 1999 13:34:52 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/tools/sgmlconv esis2sgml.py Message-ID: <199905181734.NAA18772@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/tools/sgmlconv In directory weyr:/home/fdrake/projects/python/Doc/tools/sgmlconv Modified Files: esis2sgml.py Log Message: Modify to perform "---" to "—" conversion outside of verbatim-like environments. The list of verbatim-like environments is a defined by a variable in main(). From fdrake@weyr.cnri.reston.va.us Wed May 19 18:37:38 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 19 May 1999 13:37:38 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/tools/sgmlconv latex2esis.py Message-ID: <199905191737.NAA22540@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/tools/sgmlconv In directory weyr:/home/fdrake/projects/python/Doc/tools/sgmlconv Modified Files: latex2esis.py Log Message: Enhanced docstring and some comments. _begin_macro_rx: Fixed RE that didn't properly allow a space after the name of the macro. This affects the conversion of the tutorial. From fdrake@weyr.cnri.reston.va.us Thu May 20 13:52:06 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 20 May 1999 08:52:06 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Lib mimetypes.py Message-ID: <199905201252.IAA26147@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory weyr:/home/fdrake/projects/python/Lib Modified Files: mimetypes.py Log Message: Map .js to application/x-javascript. From guido@cnri.reston.va.us Fri May 21 05:38:28 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Fri, 21 May 1999 00:38:28 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Tools/idle AutoIndent.py PyShell.py EditorWindow.py Message-ID: <199905210438.AAA08328@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 PyShell.py EditorWindow.py Log Message: Much improved autoindent and handling of tabs, by Tim Peters. From guido@cnri.reston.va.us Fri May 21 05:45:21 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Fri, 21 May 1999 00:45:21 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Tools/idle TODO.txt Message-ID: <199905210445.AAA08387@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: New wishes From guido@cnri.reston.va.us Fri May 21 05:45:46 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Fri, 21 May 1999 00:45:46 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Tools/idle StackViewer.py Message-ID: <199905210445.AAA08404@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Tools/idle In directory eric:/projects/python/develop/guido/src/Tools/idle Modified Files: StackViewer.py Log Message: Make initial stack viewer wider From guido@cnri.reston.va.us Fri May 21 05:46:18 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Fri, 21 May 1999 00:46:18 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Tools/idle PyShell.py History.py Message-ID: <199905210446.AAA08421@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 Removed Files: History.py Log Message: Rename History to IdleHistory. Add isatty() to pseudo files. From guido@cnri.reston.va.us Fri May 21 17:12:31 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Fri, 21 May 1999 12:12:31 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Lib SocketServer.py Message-ID: <199905211612.MAA09305@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory eric:/projects/python/develop/guido/src/Lib Modified Files: SocketServer.py Log Message: Andy Dustman writes: I noticed while watching (with lsof) my forking SocketServer app running that I would get multiple processes listening to the socket. For the most part, this doesn't hurt things, but if you terminate the server, this can prevent it from restarting because it cannot bind to the port due to any running children which also have the socket open. The following one-liner fixes this. From guido@cnri.reston.va.us Fri May 21 20:18:50 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Fri, 21 May 1999 15:18:50 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Modules makesetup Message-ID: <199905211918.PAA09864@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: On HP-UX, -rpath is another option taking an argument that needs to go to the libs variable. Reported by Albert Chin-A-Young. From bwarsaw@cnri.reston.va.us Mon May 24 19:37:59 1999 From: bwarsaw@cnri.reston.va.us (Barry A. Warsaw) Date: Mon, 24 May 1999 14:37:59 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Misc python-mode.el Message-ID: <199905241837.OAA26327@anthem.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Misc In directory anthem:/projects/python/develop/bwarsaw/src/Misc Modified Files: python-mode.el Log Message: (py-statement-closes-block-p): Add a py-goto-initial-line which fixes indentation when the return value is a multiline sexp: def bug(): try: if 2>1: return (11+ 12) else: #XXX return 12 except: return 13 From bwarsaw@cnri.reston.va.us Mon May 24 20:57:33 1999 From: bwarsaw@cnri.reston.va.us (Barry A. Warsaw) Date: Mon, 24 May 1999 15:57:33 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Misc python-mode.el Message-ID: <199905241957.PAA26436@anthem.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Misc In directory anthem:/projects/python/develop/bwarsaw/src/Misc Modified Files: python-mode.el Log Message: (py-parse-state): When running under Emacs -- which doesn't have buffer-syntactic-context -- just short circuit the TQS test by jumping to point-min and doing the test from there. For long files, this will be faster than looping with a re-search-backwards. From bwarsaw@cnri.reston.va.us Mon May 24 22:43:38 1999 From: bwarsaw@cnri.reston.va.us (Barry A. Warsaw) Date: Mon, 24 May 1999 17:43:38 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Misc python-mode.el Message-ID: <199905242143.RAA26588@anthem.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Misc In directory anthem:/projects/python/develop/bwarsaw/src/Misc Modified Files: python-mode.el Log Message: (py-electric-backspace): I'm not sure this function should be special casing when py-honor-comment-indentation is nil, but this could be a religious issue with some. Seems to me we should still be dedenting such comment lines one level. From fdrake@weyr.cnri.reston.va.us Tue May 25 14:42:27 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 25 May 1999 09:42:27 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libos.tex Message-ID: <199905251342.JAA09503@weyr.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: "proces" --> "process"; reported by Gerry Wiener . Added some index entries. From bwarsaw@cnri.reston.va.us Wed May 26 05:02:19 1999 From: bwarsaw@cnri.reston.va.us (Barry A. Warsaw) Date: Wed, 26 May 1999 00:02:19 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Tools/world world Message-ID: <199905260402.AAA07206@anthem.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Tools/world In directory anthem:/projects/python/develop/bwarsaw/python/dist/src/Tools/world Modified Files: world Log Message: Eugene Dvurechenski says: there is "su" top level domain still maintained in ex-USSR. at least "*.msk.su" zone (Moscow, USSR) is still in use. From fdrake@weyr.cnri.reston.va.us Wed May 26 14:03:35 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 26 May 1999 09:03:35 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libposix.tex Message-ID: <199905261303.JAA14019@weyr.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: Change the example of configuring for large file support under Solaris to use `getconf LFS_CFLAGS`. Steve Clift (the author of the section and large file support) agrees that this is the right thing to do. From fdrake@weyr.cnri.reston.va.us Wed May 26 17:15:18 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 26 May 1999 12:15:18 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libtime.tex Message-ID: <199905261615.MAA15418@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/lib In directory weyr:/home/fdrake/projects/python/Doc/lib Modified Files: libtime.tex Log Message: Move some \index entries around so we can avoid using empty comments; empty comments trigger a bug in LaTeX2HTML. Problem reported by Gerry Wiener . From fdrake@weyr.cnri.reston.va.us Thu May 27 18:18:09 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 27 May 1999 13:18:09 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libstring.tex Message-ID: <199905271718.NAA19577@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/lib In directory weyr:/home/fdrake/projects/python/Doc/lib Modified Files: libstring.tex Log Message: Typo reported by Gerry Wiener : items -> item The returned list will then have one more items than the number of non-overlapping occurrences of the separator in the string. From fdrake@weyr.cnri.reston.va.us Thu May 27 18:50:59 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 27 May 1999 13:50:59 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libpopen2.tex Message-ID: <199905271750.NAA19799@weyr.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: Document the "pid" attribute of the Popen3 class. Use memberdesc instead of datadesc to document object attributes. This gets the index right. From fdrake@weyr.cnri.reston.va.us Thu May 27 22:45:55 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 27 May 1999 17:45:55 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/doc doc.tex Message-ID: <199905272145.RAA24180@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: Hack: make sure LaTeX2HTML doesn't change -- to - in mkhowto description. From fdrake@weyr.cnri.reston.va.us Thu May 27 22:52:52 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 27 May 1999 17:52:52 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/html index.html.in Message-ID: <199905272152.RAA24371@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: Add
after top navigation bar; now looks more like the rest of the navigation bars in the HTML output. From fdrake@weyr.cnri.reston.va.us Thu May 27 22:56:12 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 27 May 1999 17:56:12 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/html index.html.in Message-ID: <199905272156.RAA24420@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: Oops, forgot to remove the individual module indexes for lib & mac now that there's a Global Module Index; there can be only one! From bwarsaw@cnri.reston.va.us Fri May 28 00:13:22 1999 From: bwarsaw@cnri.reston.va.us (Barry A. Warsaw) Date: Thu, 27 May 1999 19:13:22 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Modules posixmodule.c Message-ID: <199905272313.TAA14778@anthem.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Modules In directory anthem:/projects/python/develop/bwarsaw/python/dist/src/Modules Modified Files: posixmodule.c Log Message: posix_listdir(): When an error occurs, call posix_error_with_filename() instead of posix_error(), passing in the name argument, so you get information on which directory was being listed. From bwarsaw@cnri.reston.va.us Sat May 1 17:27:24 1999 From: bwarsaw@cnri.reston.va.us (Barry A. Warsaw) Date: Sat, 1 May 1999 12:27:24 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Tools/audiopy README Message-ID: <199905011627.MAA24455@anthem.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Tools/audiopy In directory anthem:/projects/python/develop/bwarsaw/python/dist/src/Tools/audiopy Modified Files: README Log Message: updates for latest release From fdrake@weyr.cnri.reston.va.us Mon May 3 15:27:45 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 3 May 1999 10:27:45 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/tools mkhtml.sh Message-ID: <199905031427.KAA05744@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/tools In directory weyr:/home/fdrake/projects/python/Doc/tools Modified Files: mkhtml.sh Log Message: Make sure latex2html doesn't produce a hard link from $part/$part.html and $part/index.html. Make a copy instead. (Appearantly some tar openers on non-Unixlike systems can't handle hard links.) From fdrake@weyr.cnri.reston.va.us Mon May 3 15:29:08 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 3 May 1999 10:29:08 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/tools mkhowto Message-ID: <199905031429.KAA05777@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/tools In directory weyr:/home/fdrake/projects/python/Doc/tools Modified Files: mkhowto Log Message: Make sure latex2html doesn't produce a hard link between foo/foo.html and foo/index.html. Make a copy instead. (Appearantly some tar openers on non-Unixlike systems can't handle hard links.) From guido@cnri.reston.va.us Mon May 3 16:23:25 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 3 May 1999 11:23:25 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Lib os.py Message-ID: <199905031523.LAA05584@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory eric:/projects/python/develop/guido/src/Lib Modified Files: os.py Log Message: The case-insensitive _Environ class was lacking a case-insensitive has_key(). From guido@cnri.reston.va.us Mon May 3 16:38:56 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 3 May 1999 11:38:56 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Tools/idle WidgetRedirector.py Message-ID: <199905031538.LAA05668@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: WidgetRedirector.py Log Message: Tim Peters writes: [W]hile trying to dope out how redirection works, stumbled into two possible glitches. In the first, it doesn't appear to make sense to try to rename a command that's already been destroyed; in the second, the name "previous" doesn't really bring to mind "ignore the previous value" . From guido@cnri.reston.va.us Mon May 3 16:49:53 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 3 May 1999 11:49:53 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Tools/idle AutoIndent.py EditorWindow.py FormatParagraph.py UndoDelegator.py Message-ID: <199905031549.LAA05747@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 EditorWindow.py FormatParagraph.py UndoDelegator.py Log Message: Tim Peters writes: I'm still unsure, but couldn't stand the virtual event trickery so tried a different sin (adding undo_block_start/stop methods to the Text instance in EditorWindow.py). Like it or not, it's efficient and works . Better idea? Give the attached a whirl. Even if you hate the implementation, I think you'll like the results. Think I caught all the "block edit" cmds, including Format Paragraph, plus subtler ones involving smart indents and backspacing. From guido@cnri.reston.va.us Mon May 3 19:00:21 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 3 May 1999 14:00:21 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Lib BaseHTTPServer.py Message-ID: <199905031800.OAA06096@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory eric:/projects/python/develop/guido/src/Lib Modified Files: BaseHTTPServer.py Log Message: No need to import rfc822. (Andrew Dalke & kjpylint) From guido@cnri.reston.va.us Mon May 3 19:00:49 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 3 May 1999 14:00:49 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Lib CGIHTTPServer.py Message-ID: <199905031800.OAA06115@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: No need to import sys, time, or socket. (Andrew Dalke & kjpylint) From guido@cnri.reston.va.us Mon May 3 19:01:32 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 3 May 1999 14:01:32 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Lib SimpleHTTPServer.py Message-ID: <199905031801.OAA06134@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory eric:/projects/python/develop/guido/src/Lib Modified Files: SimpleHTTPServer.py Log Message: No need to import sys, time, socket or SocketServer. (Andrew Dalke & kjpylint) From guido@cnri.reston.va.us Mon May 3 19:02:45 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 3 May 1999 14:02:45 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Lib aifc.py Message-ID: <199905031802.OAA06153@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory eric:/projects/python/develop/guido/src/Lib Modified Files: aifc.py Log Message: The _comp_data() function never worked, it contained a reference to undefined 'nframes'. Should be self._nframes. (Andrew Dalke & kjpylint) From guido@cnri.reston.va.us Mon May 3 19:04:08 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 3 May 1999 14:04:08 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Lib audiodev.py Message-ID: <199905031804.OAA06172@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory eric:/projects/python/develop/guido/src/Lib Modified Files: audiodev.py Log Message: Clarify why there are dynamic imports in AudioDev(). This will enlighten Andrew Dalke; I don't know about kjpylint. :-) From guido@cnri.reston.va.us Mon May 3 19:07:41 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 3 May 1999 14:07:41 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Lib calendar.py Message-ID: <199905031807.OAA06198@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory eric:/projects/python/develop/guido/src/Lib Modified Files: calendar.py Log Message: No need to import gmtime, ctime, asctime. Make error an alias for ValueError. (Andrew Dalke & kjpylint) From guido@cnri.reston.va.us Mon May 3 19:08:16 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 3 May 1999 14:08:16 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Lib cmd.py Message-ID: <199905031808.OAA06217@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory eric:/projects/python/develop/guido/src/Lib Modified Files: cmd.py Log Message: No need to import sys or linecache. (Andrew Dalke & kjpylint) From guido@cnri.reston.va.us Mon May 3 19:09:26 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 3 May 1999 14:09:26 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Lib dbhash.py Message-ID: <199905031809.OAA06236@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory eric:/projects/python/develop/guido/src/Lib Modified Files: dbhash.py Log Message: Clarify why we define error. Suggested by Andrew Dalke. From guido@cnri.reston.va.us Mon May 3 19:09:53 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 3 May 1999 14:09:53 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Lib dis.py Message-ID: <199905031809.OAA06255@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory eric:/projects/python/develop/guido/src/Lib Modified Files: dis.py Log Message: Clarify why we define disco. Suggested by Andrew Dalke. From guido@cnri.reston.va.us Mon May 3 19:10:15 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 3 May 1999 14:10:15 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Lib htmllib.py Message-ID: <199905031810.OAA06274@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory eric:/projects/python/develop/guido/src/Lib Modified Files: htmllib.py Log Message: No need to import sys. (Andrew Dalke & kjpylint) From guido@cnri.reston.va.us Mon May 3 19:10:38 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 3 May 1999 14:10:38 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Lib netrc.py Message-ID: <199905031810.OAA06293@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory eric:/projects/python/develop/guido/src/Lib Modified Files: netrc.py Log Message: No need to import sys or string. (Andrew Dalke & kjpylint) From guido@cnri.reston.va.us Mon May 3 19:12:09 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 3 May 1999 14:12:09 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Lib pdb.py Message-ID: <199905031812.OAA06317@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory eric:/projects/python/develop/guido/src/Lib Modified Files: pdb.py Log Message: Get rid of confusing 'global' statement in global code. (Andrew Dalke & kjpylint) From guido@cnri.reston.va.us Mon May 3 19:12:36 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 3 May 1999 14:12:36 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Lib pipes.py Message-ID: <199905031812.OAA06336@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory eric:/projects/python/develop/guido/src/Lib Modified Files: pipes.py Log Message: No need to import os in test(). (Andrew Dalke & kjpylint) From guido@cnri.reston.va.us Mon May 3 19:13:00 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 3 May 1999 14:13:00 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Lib profile.py Message-ID: <199905031813.OAA06354@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory eric:/projects/python/develop/guido/src/Lib Modified Files: profile.py Log Message: No need to import string. (Andrew Dalke & kjpylint) From guido@cnri.reston.va.us Mon May 3 19:13:29 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 3 May 1999 14:13:29 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Lib profile.py Message-ID: <199905031813.OAA06372@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory eric:/projects/python/develop/guido/src/Lib Modified Files: profile.py Log Message: Typo. (Andrew Dalke, without kjpylint) From guido@cnri.reston.va.us Mon May 3 19:13:51 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 3 May 1999 14:13:51 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Lib pty.py Message-ID: <199905031813.OAA06390@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory eric:/projects/python/develop/guido/src/Lib Modified Files: pty.py Log Message: No need to import sys. (Andrew Dalke & kjpylint) From guido@cnri.reston.va.us Mon May 3 19:14:16 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 3 May 1999 14:14:16 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Lib shlex.py Message-ID: <199905031814.OAA06409@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 Log Message: No need to import os or string. (Andrew Dalke & kjpylint) From guido@cnri.reston.va.us Mon May 3 19:16:23 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 3 May 1999 14:16:23 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Lib urlparse.py Message-ID: <199905031816.OAA06428@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory eric:/projects/python/develop/guido/src/Lib Modified Files: urlparse.py Log Message: No need to import find(). (Andrew Dalke & kjpylint) From guido@cnri.reston.va.us Mon May 3 20:57:01 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 3 May 1999 15:57:01 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Lib/test test_rfc822.py Message-ID: <199905031957.PAA06707@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_rfc822.py Log Message: Regression test for date format code, by Mike Meyer. (I tweaked it slightly so examples are allowed to have no date too.) From guido@cnri.reston.va.us Thu May 6 00:03:49 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Wed, 5 May 1999 19:03:49 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Lib/lib-tk Tkinter.py Message-ID: <199905052303.TAA11538@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: Nathan Paul Simons noticed that the grid_remove() method was missing. (The difference between grid_remove() and grid_forget() is that the former remembers the options for the slave.) From guido@cnri.reston.va.us Thu May 6 15:26:35 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Thu, 6 May 1999 10:26:35 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Objects floatobject.c Message-ID: <199905061426.KAA12448@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Objects In directory eric:/projects/python/develop/guido/src/Objects Modified Files: floatobject.c Log Message: Tim Peters writes: 1. Fixes float divmod so that the quotient it returns is always an integral value. 2. Fixes float % and float divmod so that the remainder always gets the right sign (the current code uses a "are the signs different?" test that doesn't work half the time when the product of the divisor and the remainder underflows to 0). From fdrake@weyr.cnri.reston.va.us Thu May 6 15:46:35 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 6 May 1999 10:46:35 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libfuncs.tex Message-ID: <199905061446.KAA02162@weyr.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: Reflect recent patch for float % and divmod() by Tim Peters. Content updates by Tim Peters, markup by FLD. From fdrake@weyr.cnri.reston.va.us Thu May 6 15:46:36 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 6 May 1999 10:46:36 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/ref ref5.tex Message-ID: <199905061446.KAA02173@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: Reflect recent patch for float % and divmod() by Tim Peters. Content updates by Tim Peters, markup by FLD. From fdrake@weyr.cnri.reston.va.us Thu May 6 20:37:39 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 6 May 1999 15:37:39 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/tools mkhowto Message-ID: <199905061937.PAA06387@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/tools In directory weyr:/home/fdrake/projects/python/Doc/tools Modified Files: mkhowto Log Message: Make it work for "manual" documents as well as "howto" documents. This still doesn't understand anything about multiple source files or checking time dependencies. From fdrake@weyr.cnri.reston.va.us Thu May 6 23:03:51 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 6 May 1999 18:03:51 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libsocket.tex Message-ID: <199905062203.SAA07513@weyr.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: Updated connect_ex() documentation based on comments in the newgroup (M.-A. Lemburg and GvR). From fdrake@weyr.cnri.reston.va.us Fri May 7 20:59:03 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 7 May 1999 15:59:03 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/tools/sgmlconv latex2esis.py Message-ID: <199905071959.PAA14585@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/tools/sgmlconv In directory weyr:/home/fdrake/projects/python/Doc/tools/sgmlconv Modified Files: latex2esis.py Log Message: Define & use a Conversion object. It's still really ugly, but at least there's a token object in here now! ;-) From fdrake@weyr.cnri.reston.va.us Fri May 7 22:12:23 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 7 May 1999 17:12:23 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/tools/sgmlconv latex2esis.py Message-ID: <199905072112.RAA15035@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/tools/sgmlconv In directory weyr:/home/fdrake/projects/python/Doc/tools/sgmlconv Modified Files: latex2esis.py Log Message: Fix some bugs introduced in the previous checkin. From fdrake@weyr.cnri.reston.va.us Fri May 7 22:14:29 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 7 May 1999 17:14:29 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/tools/sgmlconv esistools.py Message-ID: <199905072114.RAA15394@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/tools/sgmlconv In directory weyr:/home/fdrake/projects/python/Doc/tools/sgmlconv Modified Files: esistools.py Log Message: ExtendedEsisBuilder.push(): Override inherited definition. We don't want to push nodes into the document, but into a document fragment, since we're not necesarily working with something that's well-formed. From fdrake@weyr.cnri.reston.va.us Mon May 10 14:43:23 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 10 May 1999 09:43:23 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/ref ref3.tex Message-ID: <199905101343.JAA19985@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/ref In directory weyr:/home/fdrake/projects/python/Doc/ref Modified Files: ref3.tex Log Message: Fixed some index entries. In the __coerce__ description, None should be returned if the conversion is *impossible*, not *possible*. Reported by Robert Kern . From fdrake@weyr.cnri.reston.va.us Mon May 10 20:36:04 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 10 May 1999 15:36:04 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/tools/sgmlconv latex2esis.py Message-ID: <199905101936.PAA22047@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/tools/sgmlconv In directory weyr:/home/fdrake/projects/python/Doc/tools/sgmlconv Modified Files: latex2esis.py Log Message: Some more fixes. Add controls for some of the esoteric indexing macros. From fdrake@weyr.cnri.reston.va.us Mon May 10 20:36:53 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 10 May 1999 15:36:53 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/tools/sgmlconv docfixer.py Message-ID: <199905101936.PAA22070@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/tools/sgmlconv In directory weyr:/home/fdrake/projects/python/Doc/tools/sgmlconv Modified Files: docfixer.py Log Message: Lots of adjustments to deal with the document content now being stored in a fragment rather than the main document object. From fdrake@weyr.cnri.reston.va.us Tue May 11 14:45:38 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 11 May 1999 09:45:38 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib liballos.tex Message-ID: <199905111345.JAA23558@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/lib In directory weyr:/home/fdrake/projects/python/Doc/lib Modified Files: liballos.tex Log Message: Added missing comma, reported by Eric Raymond. From fdrake@weyr.cnri.reston.va.us Tue May 11 16:14:15 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 11 May 1999 11:14:15 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libcfgparser.tex libftplib.tex libshlex.tex Message-ID: <199905111514.LAA24923@weyr.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 libftplib.tex libshlex.tex Log Message: Added module references; minor grammatical fixes. All suggested by Eric Raymond. From fdrake@weyr.cnri.reston.va.us Tue May 11 16:15:54 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 11 May 1999 11:15:54 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libparser.tex Message-ID: <199905111515.LAA24960@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/lib In directory weyr:/home/fdrake/projects/python/Doc/lib Modified Files: libparser.tex Log Message: Move the "See also:" section so it appears are part of the top HTML page of the section. From fdrake@weyr.cnri.reston.va.us Tue May 11 16:42:51 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 11 May 1999 11:42:51 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/perl python.perl Message-ID: <199905111542.LAA25239@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: Change the look of \seemodule output to fit in better. From fdrake@weyr.cnri.reston.va.us Tue May 11 16:42:51 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 11 May 1999 11:42:51 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/texinputs python.sty Message-ID: <199905111542.LAA25252@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: Change the look of \seemodule output to fit in better. From fdrake@weyr.cnri.reston.va.us Thu May 13 17:20:31 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 13 May 1999 12:20:31 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libgdbm.tex Message-ID: <199905131620.MAA02020@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/lib In directory weyr:/home/fdrake/projects/python/Doc/lib Modified Files: libgdbm.tex Log Message: Removed old comments. From fdrake@weyr.cnri.reston.va.us Thu May 13 17:41:19 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 13 May 1999 12:41:19 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/perl l2hinit.perl Message-ID: <199905131641.MAA02122@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_index_entry(): Remove. This is overridden in python.perl and was never called in this incarnation. The other version is simpler as well. From fdrake@weyr.cnri.reston.va.us Thu May 13 19:36:55 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 13 May 1999 14:36:55 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/perl python.perl Message-ID: <199905131836.OAA03466@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/perl In directory weyr:/home/fdrake/projects/python/Doc/perl Modified Files: python.perl Log Message: make_index_entry(): Remove. Not only did this override the l2hinit.perl version of the function (which overrode a version in latex2html), but do_cmd_index() was overridden. Since do_cmd_index() was the only caller, we can trash this. define_indexing_macro(): New function used during setup to support more dynamic dispatch for indexing. process_index_macros(): New function; implement dynamic dispatching of indexing support functions, allowing many targets used in indexing to be shared by multiple index entries. I.e., something like \index{foo}\bifuncindex{bar} can now share a single target anchor. These indexing changes reduce the amount of clutter in the generated HTML files. In the reference manual, this cuts the number of targets by 44%. Targets are less affected when generated by environments rather than macros. From fdrake@weyr.cnri.reston.va.us Thu May 13 19:38:12 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 13 May 1999 14:38:12 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/ref ref4.tex Message-ID: <199905131838.OAA03494@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 Log Message: Small nits around some of the index entries. When refering to chapters, use \ref, don't hardcode the chapter number. From fdrake@weyr.cnri.reston.va.us Thu May 13 19:41:15 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 13 May 1999 14:41:15 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/api api.tex Message-ID: <199905131841.OAA03526@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: PyCObject_FromVoidPtr(): Clarify that the destr function will only be called on destruction is non-NULL. From fdrake@weyr.cnri.reston.va.us Thu May 13 19:47:26 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 13 May 1999 14:47:26 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Lib poplib.py Message-ID: <199905131847.OAA03578@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory weyr:/home/fdrake/projects/python/Lib Modified Files: poplib.py Log Message: POP3.uidl(): Update docstring based on comments from Piers Lauder . From fdrake@weyr.cnri.reston.va.us Thu May 13 19:48:15 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 13 May 1999 14:48:15 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libpoplib.tex Message-ID: <199905131848.OAA03642@weyr.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: POP3.uidl(): Update description based on comments from Piers Lauder . From fdrake@weyr.cnri.reston.va.us Thu May 13 19:57:29 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 13 May 1999 14:57:29 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc .cvsignore Message-ID: <199905131857.OAA03883@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc In directory weyr:/home/fdrake/projects/python/Doc Modified Files: .cvsignore Log Message: The conversion temporary files should not be ignored here anymore, since they shouldn't be here. Only ignore the output tarballs in this directory. From fdrake@weyr.cnri.reston.va.us Mon May 17 15:47:11 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 17 May 1999 10:47:11 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/texinputs python.sty Message-ID: <199905171447.KAA13595@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: \declaremodule: Make this more robust. Only attempt to add an index entry based on the module type if the type is known. Otherwise, spit out a warning the the module type parameter was bad and generate a "plain" index entry. Without this, the bad module type was emitted as text. Problem noticed by processing Michael Hudson's docs for bytecodehacks. From fdrake@weyr.cnri.reston.va.us Mon May 17 15:57:27 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 17 May 1999 10:57:27 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/texinputs python.sty Message-ID: <199905171457.KAA13696@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: \declaremodule: Typo. From fdrake@weyr.cnri.reston.va.us Mon May 17 16:00:33 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 17 May 1999 11:00:33 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/perl python.perl Message-ID: <199905171500.LAA13747@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: define_module(): Check the module type for validity before using. This reflects the changes made in ../texinputs/python.sty. From fdrake@weyr.cnri.reston.va.us Mon May 17 16:22:45 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 17 May 1999 11:22:45 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/doc doc.tex Message-ID: <199905171522.LAA13861@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: Attempted to clarify usage of the \declaremodule macro somewhat; Michael Hudson's documentation for bytecodehacks exhibits incorrect usage. Added some comments about how to set up the mkhowto script for use with documents not contained in the documentation source tree. From fdrake@weyr.cnri.reston.va.us Mon May 17 17:02:39 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 17 May 1999 12:02:39 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/templates manual.tex Message-ID: <199905171602.MAA14334@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/templates In directory weyr:/home/fdrake/projects/python/Doc/templates Modified Files: manual.tex Log Message: Don't \input boilerplate.tex, fill in the real stuff. 3rd party documents probably aren't written by Guido. ;-) From fdrake@weyr.cnri.reston.va.us Mon May 17 17:33:54 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 17 May 1999 12:33:54 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/doc doc.tex Message-ID: <199905171633.MAA14490@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: Document \e, \url. Add a few more comments about mkhowto. Based on comments from Albert . From fdrake@weyr.cnri.reston.va.us Mon May 17 17:35:15 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 17 May 1999 12:35:15 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libftplib.tex Message-ID: <199905171635.MAA14520@weyr.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: Added paragraph explaininng the text/binary flavors of some methods, to make it easier for people to find what they're looking for. From fdrake@weyr.cnri.reston.va.us Mon May 17 20:35:02 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 17 May 1999 15:35:02 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src README Message-ID: <199905171935.PAA14721@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src In directory weyr:/home/fdrake/projects/python Modified Files: README Log Message: Added "Learning Python" to the books section. Updated comments on the documentation. From fdrake@weyr.cnri.reston.va.us Mon May 17 21:57:08 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 17 May 1999 16:57:08 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libdis.tex Message-ID: <199905172057.QAA15254@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/lib In directory weyr:/home/fdrake/projects/python/Doc/lib Modified Files: libdis.tex Log Message: SET_LINE_NO ==> SET_LINENO Reported by Corran Webster . From fdrake@weyr.cnri.reston.va.us Tue May 18 18:33:01 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 18 May 1999 13:33:01 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/tools/sgmlconv fixgenents.sh Message-ID: <199905181733.NAA18749@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/tools/sgmlconv In directory weyr:/home/fdrake/projects/python/Doc/tools/sgmlconv Modified Files: fixgenents.sh Log Message: Remove the "---" to "—" conversion; this is wrong in verbatim environments. Move the conversion to esis2sgml.py. From fdrake@weyr.cnri.reston.va.us Tue May 18 18:34:52 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 18 May 1999 13:34:52 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/tools/sgmlconv esis2sgml.py Message-ID: <199905181734.NAA18772@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/tools/sgmlconv In directory weyr:/home/fdrake/projects/python/Doc/tools/sgmlconv Modified Files: esis2sgml.py Log Message: Modify to perform "---" to "—" conversion outside of verbatim-like environments. The list of verbatim-like environments is a defined by a variable in main(). From fdrake@weyr.cnri.reston.va.us Wed May 19 18:37:38 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 19 May 1999 13:37:38 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/tools/sgmlconv latex2esis.py Message-ID: <199905191737.NAA22540@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/tools/sgmlconv In directory weyr:/home/fdrake/projects/python/Doc/tools/sgmlconv Modified Files: latex2esis.py Log Message: Enhanced docstring and some comments. _begin_macro_rx: Fixed RE that didn't properly allow a space after the name of the macro. This affects the conversion of the tutorial. From fdrake@weyr.cnri.reston.va.us Thu May 20 13:52:06 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 20 May 1999 08:52:06 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Lib mimetypes.py Message-ID: <199905201252.IAA26147@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory weyr:/home/fdrake/projects/python/Lib Modified Files: mimetypes.py Log Message: Map .js to application/x-javascript. From guido@cnri.reston.va.us Fri May 21 05:38:28 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Fri, 21 May 1999 00:38:28 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Tools/idle AutoIndent.py PyShell.py EditorWindow.py Message-ID: <199905210438.AAA08328@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 PyShell.py EditorWindow.py Log Message: Much improved autoindent and handling of tabs, by Tim Peters. From guido@cnri.reston.va.us Fri May 21 05:45:21 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Fri, 21 May 1999 00:45:21 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Tools/idle TODO.txt Message-ID: <199905210445.AAA08387@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: New wishes From guido@cnri.reston.va.us Fri May 21 05:45:46 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Fri, 21 May 1999 00:45:46 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Tools/idle StackViewer.py Message-ID: <199905210445.AAA08404@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Tools/idle In directory eric:/projects/python/develop/guido/src/Tools/idle Modified Files: StackViewer.py Log Message: Make initial stack viewer wider From guido@cnri.reston.va.us Fri May 21 05:46:18 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Fri, 21 May 1999 00:46:18 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Tools/idle PyShell.py History.py Message-ID: <199905210446.AAA08421@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 Removed Files: History.py Log Message: Rename History to IdleHistory. Add isatty() to pseudo files. From guido@cnri.reston.va.us Fri May 21 17:12:31 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Fri, 21 May 1999 12:12:31 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Lib SocketServer.py Message-ID: <199905211612.MAA09305@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory eric:/projects/python/develop/guido/src/Lib Modified Files: SocketServer.py Log Message: Andy Dustman writes: I noticed while watching (with lsof) my forking SocketServer app running that I would get multiple processes listening to the socket. For the most part, this doesn't hurt things, but if you terminate the server, this can prevent it from restarting because it cannot bind to the port due to any running children which also have the socket open. The following one-liner fixes this. From guido@cnri.reston.va.us Fri May 21 20:18:50 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Fri, 21 May 1999 15:18:50 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Modules makesetup Message-ID: <199905211918.PAA09864@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: On HP-UX, -rpath is another option taking an argument that needs to go to the libs variable. Reported by Albert Chin-A-Young. From bwarsaw@cnri.reston.va.us Mon May 24 19:37:59 1999 From: bwarsaw@cnri.reston.va.us (Barry A. Warsaw) Date: Mon, 24 May 1999 14:37:59 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Misc python-mode.el Message-ID: <199905241837.OAA26327@anthem.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Misc In directory anthem:/projects/python/develop/bwarsaw/src/Misc Modified Files: python-mode.el Log Message: (py-statement-closes-block-p): Add a py-goto-initial-line which fixes indentation when the return value is a multiline sexp: def bug(): try: if 2>1: return (11+ 12) else: #XXX return 12 except: return 13 From bwarsaw@cnri.reston.va.us Mon May 24 20:57:33 1999 From: bwarsaw@cnri.reston.va.us (Barry A. Warsaw) Date: Mon, 24 May 1999 15:57:33 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Misc python-mode.el Message-ID: <199905241957.PAA26436@anthem.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Misc In directory anthem:/projects/python/develop/bwarsaw/src/Misc Modified Files: python-mode.el Log Message: (py-parse-state): When running under Emacs -- which doesn't have buffer-syntactic-context -- just short circuit the TQS test by jumping to point-min and doing the test from there. For long files, this will be faster than looping with a re-search-backwards. From bwarsaw@cnri.reston.va.us Mon May 24 22:43:38 1999 From: bwarsaw@cnri.reston.va.us (Barry A. Warsaw) Date: Mon, 24 May 1999 17:43:38 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Misc python-mode.el Message-ID: <199905242143.RAA26588@anthem.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Misc In directory anthem:/projects/python/develop/bwarsaw/src/Misc Modified Files: python-mode.el Log Message: (py-electric-backspace): I'm not sure this function should be special casing when py-honor-comment-indentation is nil, but this could be a religious issue with some. Seems to me we should still be dedenting such comment lines one level. From fdrake@weyr.cnri.reston.va.us Tue May 25 14:42:27 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 25 May 1999 09:42:27 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libos.tex Message-ID: <199905251342.JAA09503@weyr.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: "proces" --> "process"; reported by Gerry Wiener . Added some index entries. From bwarsaw@cnri.reston.va.us Wed May 26 05:02:19 1999 From: bwarsaw@cnri.reston.va.us (Barry A. Warsaw) Date: Wed, 26 May 1999 00:02:19 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Tools/world world Message-ID: <199905260402.AAA07206@anthem.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Tools/world In directory anthem:/projects/python/develop/bwarsaw/python/dist/src/Tools/world Modified Files: world Log Message: Eugene Dvurechenski says: there is "su" top level domain still maintained in ex-USSR. at least "*.msk.su" zone (Moscow, USSR) is still in use. From fdrake@weyr.cnri.reston.va.us Wed May 26 14:03:35 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 26 May 1999 09:03:35 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libposix.tex Message-ID: <199905261303.JAA14019@weyr.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: Change the example of configuring for large file support under Solaris to use `getconf LFS_CFLAGS`. Steve Clift (the author of the section and large file support) agrees that this is the right thing to do. From fdrake@weyr.cnri.reston.va.us Wed May 26 17:15:18 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 26 May 1999 12:15:18 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libtime.tex Message-ID: <199905261615.MAA15418@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/lib In directory weyr:/home/fdrake/projects/python/Doc/lib Modified Files: libtime.tex Log Message: Move some \index entries around so we can avoid using empty comments; empty comments trigger a bug in LaTeX2HTML. Problem reported by Gerry Wiener . From fdrake@weyr.cnri.reston.va.us Thu May 27 18:18:09 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 27 May 1999 13:18:09 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libstring.tex Message-ID: <199905271718.NAA19577@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/lib In directory weyr:/home/fdrake/projects/python/Doc/lib Modified Files: libstring.tex Log Message: Typo reported by Gerry Wiener : items -> item The returned list will then have one more items than the number of non-overlapping occurrences of the separator in the string. From fdrake@weyr.cnri.reston.va.us Thu May 27 18:50:59 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 27 May 1999 13:50:59 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libpopen2.tex Message-ID: <199905271750.NAA19799@weyr.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: Document the "pid" attribute of the Popen3 class. Use memberdesc instead of datadesc to document object attributes. This gets the index right. From fdrake@weyr.cnri.reston.va.us Thu May 27 22:45:55 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 27 May 1999 17:45:55 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/doc doc.tex Message-ID: <199905272145.RAA24180@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: Hack: make sure LaTeX2HTML doesn't change -- to - in mkhowto description. From fdrake@weyr.cnri.reston.va.us Thu May 27 22:52:52 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 27 May 1999 17:52:52 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/html index.html.in Message-ID: <199905272152.RAA24371@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: Add
after top navigation bar; now looks more like the rest of the navigation bars in the HTML output. From fdrake@weyr.cnri.reston.va.us Thu May 27 22:56:12 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 27 May 1999 17:56:12 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Doc/html index.html.in Message-ID: <199905272156.RAA24420@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: Oops, forgot to remove the individual module indexes for lib & mac now that there's a Global Module Index; there can be only one! From bwarsaw@cnri.reston.va.us Fri May 28 00:13:22 1999 From: bwarsaw@cnri.reston.va.us (Barry A. Warsaw) Date: Thu, 27 May 1999 19:13:22 -0400 (EDT) Subject: [Python-checkins] CVS: python/dist/src/Modules posixmodule.c Message-ID: <199905272313.TAA14778@anthem.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Modules In directory anthem:/projects/python/develop/bwarsaw/python/dist/src/Modules Modified Files: posixmodule.c Log Message: posix_listdir(): When an error occurs, call posix_error_with_filename() instead of posix_error(), passing in the name argument, so you get information on which directory was being listed.