From guido@cnri.reston.va.us Tue Nov 2 13:28:20 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Tue, 2 Nov 1999 08:28:20 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Lib posixpath.py Message-ID: <199911021328.IAA07769@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory eric:/projects/python/develop/guido/src/Lib Modified Files: posixpath.py Log Message: Correct typo in walk.__doc__ reported by Francois Pinard. From guido@cnri.reston.va.us Tue Nov 2 13:29:09 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Tue, 2 Nov 1999 08:29:09 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Lib ntpath.py Message-ID: <199911021329.IAA07787@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory eric:/projects/python/develop/guido/src/Lib Modified Files: ntpath.py Log Message: Correct typo in walk.__doc__ reported by Francois Pinard. From guido@cnri.reston.va.us Tue Nov 2 13:27:33 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Tue, 2 Nov 1999 08:27:33 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Lib os.py Message-ID: <199911021327.IAA07752@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: Checking in a bunch of spawn functions. These are only defined if we have fork and execv (and friends) but not spawnv. They operate exactly like the spawn functions on Windows. A limited set of needed constants is also defined (P_WAIT, P_NOWAIT etc.). Also add getenv() as a familiar alias for environ.get(). From guido@cnri.reston.va.us Tue Nov 2 15:44:41 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Tue, 2 Nov 1999 10:44:41 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Tools/freeze checkextensions_win32.py makefreeze.py winmakemakefile.py Message-ID: <199911021544.KAA08040@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Tools/freeze In directory eric:/projects/python/develop/guido/src/Tools/freeze Modified Files: checkextensions_win32.py makefreeze.py winmakemakefile.py Log Message: Sjoerd Mullender: Added some declarations to shut up compiler. From guido@cnri.reston.va.us Tue Nov 2 15:46:44 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Tue, 2 Nov 1999 10:46:44 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Tools/freeze modulefinder.py Message-ID: <199911021546.KAA08069@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Tools/freeze In directory eric:/projects/python/develop/guido/src/Tools/freeze Modified Files: modulefinder.py Log Message: Fix a bug reported by Toby Dickenson (on 18 May 1999). Sometimes there's no parent, so don't try to get its __name__. From guido@cnri.reston.va.us Tue Nov 2 20:44:08 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Tue, 2 Nov 1999 15:44:08 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Lib os.py Message-ID: <199911022044.PAA08870@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: Oops. spawnl() and spawnle() should be implemented on Windows too. Also added a comment that the 'p' variants (spawnvp() etc.) are *not* supported on Windows. (They could be by adding them to posixmodule.c) From guido@cnri.reston.va.us Wed Nov 3 13:10:07 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Wed, 3 Nov 1999 08:10:07 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Lib pdb.py Message-ID: <199911031310.IAA09693@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: Sjoerd Mullender writes: I regularly find that pdb sets the breakpoint on the wrong line when I try to set a breakpoint on a function. This fixes the problem somewhat. The real problem is that pdb tries to parse the Python source code to find the first executable line. A better way might be to inspect the code object, or even have a variable in the code object co_firstexecutablelineno, but that's too much work. The patch fixes the problem when the first code line after the def statement contains the start *and* end of a triple-quoted string. The code assumed that the end of a triple-quoted string is not on the same line as the start, and so it would skip to the end of the *next* triple-quoted string. From bwarsaw@cnri.reston.va.us Wed Nov 3 16:43:43 1999 From: bwarsaw@cnri.reston.va.us (Barry A. Warsaw) Date: Wed, 3 Nov 1999 11:43:43 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Tools/i18n - New directory Message-ID: <199911031643.LAA12570@anthem.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Tools/i18n In directory anthem:/home/bwarsaw/projects/python/Tools/i18n Log Message: Directory /projects/cvsroot/python/dist/src/Tools/i18n added to the repository From bwarsaw@cnri.reston.va.us Wed Nov 3 16:46:06 1999 From: bwarsaw@cnri.reston.va.us (Barry A. Warsaw) Date: Wed, 3 Nov 1999 11:46:06 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Tools/i18n pygettext.py Message-ID: <199911031646.LAA12608@anthem.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Tools/i18n In directory anthem:/home/bwarsaw/projects/python/Tools/i18n Modified Files: pygettext.py Log Message: Python equivalent of xgettext(1). This was originally released separately but now is included in the standard Python distribution. From bwarsaw@cnri.reston.va.us Wed Nov 3 18:47:53 1999 From: bwarsaw@cnri.reston.va.us (Barry A. Warsaw) Date: Wed, 3 Nov 1999 13:47:53 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Tools/i18n pygettext.py Message-ID: <199911031847.NAA00440@anthem.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Tools/i18n In directory anthem:/home/bwarsaw/projects/python/Tools/i18n Modified Files: pygettext.py Log Message: Several improvements, some of where were contributed by Bernhard Herzog . Specifically, --verbose/-v flag added pot_header added to make msgmerge and Emacs po-mode work better normalize(), escape(), safe_eval(): Improved normalization of strings for more .po file compatibility (e.g. C style). Handles emmbedded newlines better. Also added an identity function called _() and use it in the file where messages are printed. This allows us to selftest pygettext.py with itself as input. From fdrake@weyr.cnri.reston.va.us Thu Nov 4 18:04:41 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 4 Nov 1999 13:04:41 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libfileinput.tex Message-ID: <199911041804.NAA29942@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/lib In directory weyr:/home/fdrake/projects/python/Doc-152p1/lib Modified Files: Tag: release152p1-patches libfileinput.tex Log Message: Don't use "iff"; there are people unfamiliar with the word. From fdrake@weyr.cnri.reston.va.us Thu Nov 4 18:07:15 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 4 Nov 1999 13:07:15 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Doc/api api.tex Message-ID: <199911041807.NAA29977@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/api In directory weyr:/home/fdrake/projects/python/Doc-152p1/api Modified Files: Tag: release152p1-patches api.tex Log Message: Don't use "iff"; there are people unfamiliar with the word. From guido@cnri.reston.va.us Thu Nov 4 18:22:32 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Thu, 4 Nov 1999 13:22:32 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Modules socketmodule.c Message-ID: <199911041822.NAA14790@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Modules In directory eric:/projects/python/develop/guido/src/Modules Modified Files: socketmodule.c Log Message: Bugfix by Jack Jansen for Macintosh (for the inet_ntoa/aton changes): doesn't exist and isn't needed; and inet_addr() returns a structure containing a long rather than a long. From fdrake@weyr.cnri.reston.va.us Thu Nov 4 19:18:45 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 4 Nov 1999 14:18:45 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Lib string.py Message-ID: <199911041918.OAA00380@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory weyr:/home/fdrake/projects/python/Lib Modified Files: string.py Log Message: split() docstring: Made signature and description for the first parameter match. Error pointed out by François Pinard on c.l.py. From fdrake@weyr.cnri.reston.va.us Thu Nov 4 19:19:49 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 4 Nov 1999 14:19:49 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Modules stropmodule.c Message-ID: <199911041919.OAA00397@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Modules In directory weyr:/home/fdrake/projects/python/Modules Modified Files: stropmodule.c Log Message: split() docstring: Made signature and description for the first parameter match. Error pointed out by François Pinard on c.l.py. From guido@cnri.reston.va.us Fri Nov 5 15:21:08 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Fri, 5 Nov 1999 10:21:08 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Misc bugrelease.txt legalfaq.txt wetsign.txt Message-ID: <199911051521.KAA16606@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Misc In directory eric:/projects/python/develop/guido/src/Misc Added Files: bugrelease.txt legalfaq.txt wetsign.txt Log Message: Checking in text versions of release forms and explanation. From guido@cnri.reston.va.us Fri Nov 5 18:09:57 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Fri, 5 Nov 1999 13:09:57 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Modules _tkinter.c Message-ID: <199911051809.NAA17058@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Modules In directory eric:/projects/python/develop/guido/src/Modules Modified Files: _tkinter.c Log Message: Patch by Dieter Maurer to make things work for Tcl/Tk 8.1 (tested with 8.1.1). His approach doesn't work with Tcl/Tk 8.2, so I've placed it inside #if TKMAJORMINOR == 8001 and #endif. See also his patch for tkappinit.c. From guido@cnri.reston.va.us Fri Nov 5 18:11:24 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Fri, 5 Nov 1999 13:11:24 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Modules tkappinit.c Message-ID: <199911051811.NAA17079@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Modules In directory eric:/projects/python/develop/guido/src/Modules Modified Files: tkappinit.c Log Message: Patch by Dieter Maurer to make things work for Tcl/Tk 8.1. This simply moves the call to Tk_MainWindow() after the Tcl/Tk initialization calls. The patch is unconditional, it works with earlier and later versions as well. From fdrake@weyr.cnri.reston.va.us Fri Nov 5 20:45:14 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 5 Nov 1999 15:45:14 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libexcs.tex Message-ID: <199911052045.PAA06175@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/lib In directory weyr:/home/fdrake/projects/python/Doc-152p1/lib Modified Files: Tag: release152p1-patches libexcs.tex Log Message: Try to make an index target land at the start of AssertionError rather than at the end. Based on comments from Skip Montanaro . From fdrake@weyr.cnri.reston.va.us Fri Nov 5 22:51:01 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 5 Nov 1999 17:51:01 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libxmllib.tex Message-ID: <199911052251.RAA07011@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/lib In directory weyr:/home/fdrake/projects/python/Doc-152p1/lib Modified Files: Tag: release152p1-patches libxmllib.tex Log Message: Fixed the seriously broken description of handle_doctype(), added references to the XML specification and the W3C's XML area. From guido@cnri.reston.va.us Mon Nov 8 15:32:29 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 8 Nov 1999 10:32:29 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Modules timemodule.c Message-ID: <199911081532.KAA18720@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Modules In directory eric:/projects/python/develop/guido/src/Modules Modified Files: timemodule.c Log Message: Jack Jansen: Mac has no EINTR. From fdrake@weyr.cnri.reston.va.us Mon Nov 8 16:19:12 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 8 Nov 1999 11:19:12 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libos.tex Message-ID: <199911081619.LAA09548@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/lib In directory weyr:/home/fdrake/projects/python/Doc-152p1/lib Modified Files: Tag: release152p1-patches libos.tex Log Message: Clarify documentation of access(). Documented constants F_OK, R_OK, W_OK, and X_OK. From fdrake@weyr.cnri.reston.va.us Mon Nov 8 17:21:53 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 8 Nov 1999 12:21:53 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libcompileall.tex Message-ID: <199911081721.MAA09700@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/lib In directory weyr:/home/fdrake/projects/python/Doc-152p1/lib Modified Files: Tag: release152p1-patches libcompileall.tex Log Message: Added force parameter to compile_dir() and compile_path(); omission noted by Randall Hopper . From guido@cnri.reston.va.us Tue Nov 9 16:36:46 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Tue, 9 Nov 1999 11:36:46 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Lib rlcompleter.py Message-ID: <199911091636.LAA21421@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory eric:/projects/python/develop/guido/src/Lib Modified Files: rlcompleter.py Log Message: Oops. Remove some garbage from the doc string that was accidentally checked in due to a patching mishap. Reported by Detlef Lannert; thanks! From fdrake@weyr.cnri.reston.va.us Tue Nov 9 16:59:44 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 9 Nov 1999 11:59:44 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Doc/perl python.perl Message-ID: <199911091659.LAA11831@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/perl In directory weyr:/home/fdrake/projects/python/Doc/perl Modified Files: python.perl Log Message: do_cmd_programopt(): New function, similar to do_cmd_program(). do_cmd_citetitle(): New function. Extracts one optional and one required parameter. If the optional one is provided, it is used a URL (or relative URL) and the text of the required parameter is turned into a hyperlink. From fdrake@weyr.cnri.reston.va.us Tue Nov 9 17:02:12 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 9 Nov 1999 12:02:12 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Doc/texinputs python.sty Message-ID: <199911091702.MAA11854@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: \programopt: New macro, used to mark command-line parameters in the text. Looks like \program. \citetitle: New macro, used to mark titles of cited works (like the names of the Python manuals). Accepts & discards an optional parameter that is only used by the HTML formatter. Looks like \emph. From fdrake@weyr.cnri.reston.va.us Tue Nov 9 17:03:04 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 9 Nov 1999 12:03:04 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Doc/api api.tex Message-ID: <199911091703.MAA11877@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: Use \citetitle and \programopt as appropriate. From fdrake@weyr.cnri.reston.va.us Tue Nov 9 17:03:46 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 9 Nov 1999 12:03:46 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Doc/ref ref8.tex Message-ID: <199911091703.MAA11895@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: ref8.tex Log Message: Use \programopt in one place. From fdrake@weyr.cnri.reston.va.us Tue Nov 9 17:31:43 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 9 Nov 1999 12:31:43 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Doc/api api.tex Message-ID: <199911091731.MAA12038@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: Missed a couple of program options that had been marked by \code. From fdrake@weyr.cnri.reston.va.us Tue Nov 9 17:58:51 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 9 Nov 1999 12:58:51 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Doc/doc doc.tex Message-ID: <199911091758.MAA12257@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: Use \programopt in one place. From fdrake@weyr.cnri.reston.va.us Tue Nov 9 18:03:01 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 9 Nov 1999 13:03:01 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libshutil.tex Message-ID: <199911091803.NAA12285@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/lib In directory weyr:/home/fdrake/projects/python/Doc/lib Modified Files: libshutil.tex Log Message: Use \programopt in one place. From fdrake@weyr.cnri.reston.va.us Tue Nov 9 19:33:25 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 9 Nov 1999 14:33:25 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Doc/tools/sgmlconv conversion.xml Message-ID: <199911091933.OAA13218@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/tools/sgmlconv In directory weyr:/home/fdrake/projects/python/Doc/tools/sgmlconv Modified Files: conversion.xml Log Message: Added citetitle and programopt. Made var get renamed to varname (more like DocBook). Other names should probably be changed as well; still waiting for the DocBook book to arrive. From fdrake@weyr.cnri.reston.va.us Tue Nov 9 19:44:45 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 9 Nov 1999 14:44:45 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libstdwin.tex Message-ID: <199911091944.OAA13279@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/lib In directory weyr:/home/fdrake/projects/python/Doc/lib Modified Files: libstdwin.tex Log Message: Use \programopt in one place. From fdrake@weyr.cnri.reston.va.us Tue Nov 9 19:45:59 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 9 Nov 1999 14:45:59 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libsys.tex Message-ID: <199911091945.OAA13306@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/lib In directory weyr:/home/fdrake/projects/python/Doc/lib Modified Files: libsys.tex Log Message: Use the new markup as apporpriate. From fdrake@weyr.cnri.reston.va.us Tue Nov 9 20:08:06 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 9 Nov 1999 15:08:06 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libpdb.tex Message-ID: <199911092008.PAA13362@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/lib In directory weyr:/home/fdrake/projects/python/Doc/lib Modified Files: libpdb.tex Log Message: Use \citetitle in one place. From fdrake@weyr.cnri.reston.va.us Tue Nov 9 20:08:54 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 9 Nov 1999 15:08:54 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libre.tex Message-ID: <199911092008.PAA13389@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/lib In directory weyr:/home/fdrake/projects/python/Doc/lib Modified Files: libre.tex Log Message: Use \citetitle in one place. From fdrake@weyr.cnri.reston.va.us Tue Nov 9 20:10:02 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 9 Nov 1999 15:10:02 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libsha.tex Message-ID: <199911092010.PAA13412@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/lib In directory weyr:/home/fdrake/projects/python/Doc/lib Modified Files: libsha.tex Log Message: Use \citetitle in one place. From fdrake@weyr.cnri.reston.va.us Tue Nov 9 20:11:18 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 9 Nov 1999 15:11:18 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libsmtplib.tex Message-ID: <199911092011.PAA13439@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/lib In directory weyr:/home/fdrake/projects/python/Doc/lib Modified Files: libsmtplib.tex Log Message: Use \citetitle instead of \emph. From fdrake@weyr.cnri.reston.va.us Wed Nov 10 15:54:58 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 10 Nov 1999 10:54:58 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Doc/doc doc.tex Message-ID: <199911101554.KAA14964@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: Use \citetitle in several places. From fdrake@weyr.cnri.reston.va.us Wed Nov 10 16:01:44 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 10 Nov 1999 11:01:44 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Doc/ext ext.tex Message-ID: <199911101601.LAA15003@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/ext In directory weyr:/home/fdrake/projects/python/Doc/ext Modified Files: ext.tex Log Message: Use \citetitle in several places, and \programopt where appropriate. From fdrake@weyr.cnri.reston.va.us Wed Nov 10 16:12:31 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 10 Nov 1999 11:12:31 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Doc/mac libmac.tex libmacfs.tex mac.tex Message-ID: <199911101612.LAA15041@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/mac In directory weyr:/home/fdrake/projects/python/Doc/mac Modified Files: libmac.tex libmacfs.tex mac.tex Log Message: Use \citetitle as appropriate. From fdrake@weyr.cnri.reston.va.us Wed Nov 10 16:13:26 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 10 Nov 1999 11:13:26 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Doc/ref ref.tex ref1.tex ref3.tex Message-ID: <199911101613.LAA15068@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: ref.tex ref1.tex ref3.tex Log Message: Use \citetitle as appropriate. From fdrake@weyr.cnri.reston.va.us Wed Nov 10 16:17:11 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 10 Nov 1999 11:17:11 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Doc/tut tut.tex Message-ID: <199911101617.LAA15112@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/tut In directory weyr:/home/fdrake/projects/python/Doc/tut Modified Files: tut.tex Log Message: Use \citetitle and \programopt as appropriate. From fdrake@weyr.cnri.reston.va.us Wed Nov 10 16:21:38 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 10 Nov 1999 11:21:38 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib lib.tex libcurses.tex libexcs.tex libimaplib.tex libobjs.tex libparser.tex libsocket.tex libsocksvr.tex libsoundex.tex libstdtypes.tex libundoc.tex libwhrandom.tex Message-ID: <199911101621.LAA15164@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/lib In directory weyr:/home/fdrake/projects/python/Doc/lib Modified Files: lib.tex libcurses.tex libexcs.tex libimaplib.tex libobjs.tex libparser.tex libsocket.tex libsocksvr.tex libsoundex.tex libstdtypes.tex libundoc.tex libwhrandom.tex Log Message: Use \citetitle and \programopt as appropriate. From fdrake@weyr.cnri.reston.va.us Wed Nov 10 22:51:19 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 10 Nov 1999 17:51:19 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Doc/doc doc.tex Message-ID: <199911102251.RAA02474@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 \citetitle and \programopt. From fdrake@weyr.cnri.reston.va.us Thu Nov 11 22:56:56 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 11 Nov 1999 17:56:56 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libfnmatch.tex Message-ID: <199911112256.RAA07631@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/lib In directory weyr:/home/fdrake/projects/python/Doc-152p1/lib Modified Files: Tag: release152p1-patches libfnmatch.tex Log Message: Fix spelling of "comparison" -- three times! Changed list of expression patterns to be a table instead of a list; it's easier to get a reasonable and concise display than actually using a list! Problems reported by A.Amoroso . From fdrake@weyr.cnri.reston.va.us Fri Nov 12 17:20:41 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 12 Nov 1999 12:20:41 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Doc/html stdabout.dat Message-ID: <199911121720.MAA11000@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: stdabout.dat Log Message: Added request to please not send HTML email to the newsgroup/mailing list or to python-docs. From guido@cnri.reston.va.us Fri Nov 12 19:35:06 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Fri, 12 Nov 1999 14:35:06 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libfnmatch.tex Message-ID: <199911121935.OAA25365@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/lib In directory eric:/projects/python/develop/guido/Doc/lib Modified Files: Tag: release152p1-patches libfnmatch.tex Log Message: Add warning that * and ? match leading period. From fdrake@weyr.cnri.reston.va.us Fri Nov 12 19:51:43 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 12 Nov 1999 14:51:43 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Doc/perl l2hinit.perl Message-ID: <199911121951.OAA17087@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/perl In directory weyr:/home/fdrake/projects/python/Doc-152p1/perl Modified Files: Tag: release152p1-patches l2hinit.perl Log Message: make_head_and_body(): Replace the stock definition of this so that there's not a comment before the tag. This caused a problem with MSIE 5 on NT4 with SP4, as reported by Ionel Simionescu . From guido@cnri.reston.va.us Mon Nov 15 14:19:16 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 15 Nov 1999 09:19:16 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Lib re.py Message-ID: <199911151419.JAA27073@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory eric:/projects/python/develop/guido/src/Lib Modified Files: re.py Log Message: Correct typo in module doc string doscovered by Jonathan Giddy. From fdrake@weyr.cnri.reston.va.us Mon Nov 15 14:23:50 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 15 Nov 1999 09:23:50 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libstruct.tex Message-ID: <199911151423.JAA20930@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/lib In directory weyr:/home/fdrake/projects/python/Doc-152p1/lib Modified Files: Tag: release152p1-patches libstruct.tex Log Message: In table, indicate that 'L' (C unsigned long) decodes to a Python long. Error reported by Ben Darnell . From fdrake@weyr.cnri.reston.va.us Mon Nov 15 16:06:05 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 15 Nov 1999 11:06:05 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libstruct.tex Message-ID: <199911151606.LAA21186@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/lib In directory weyr:/home/fdrake/projects/python/Doc-152p1/lib Modified Files: Tag: release152p1-patches libstruct.tex Log Message: Note thatthe 'I' format specifier will generate a Python long on most platforms. Noted by GvR. From fdrake@weyr.cnri.reston.va.us Mon Nov 15 17:03:42 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 15 Nov 1999 12:03:42 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libturtle.tex Message-ID: <199911151703.MAA21874@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/lib In directory weyr:/home/fdrake/projects/python/Doc/lib Added Files: libturtle.tex Log Message: Preliminary documentation for turtle module (Tk), by Moshe Zadka. Fixed up a few TeXisms and markup nits, but otherwise unchanged. Somewhat raw. From guido@cnri.reston.va.us Mon Nov 15 19:29:33 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 15 Nov 1999 14:29:33 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Python ceval.c Message-ID: <199911151929.OAA27998@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Python In directory eric:/projects/python/develop/guido/src/Python Modified Files: ceval.c Log Message: Change the last PyErr_Format %s format to %.400s. From guido@cnri.reston.va.us Tue Nov 16 15:54:17 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Tue, 16 Nov 1999 10:54:17 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Python importdl.c Message-ID: <199911161554.KAA02331@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Python In directory eric:/projects/python/develop/guido/src/Python Modified Files: importdl.c Log Message: Patch by Vladimir Marangozov, inspired by a bug report from Gary Duzan, for AIX, to support C++ objects with static initializers, when using the genuine IBM C++ compiler (namely xlC/xlC_r). See accompanying patches to configure.in and acconfig.h. From guido@cnri.reston.va.us Tue Nov 16 15:55:00 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Tue, 16 Nov 1999 10:55:00 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src acconfig.h Message-ID: <199911161555.KAA02395@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src In directory eric:/projects/python/develop/guido/src Modified Files: acconfig.h Log Message: Patch by Vladimir Marangozov, inspired by a bug report from Gary Duzan, for AIX, to support C++ objects with static initializers, when using the genuine IBM C++ compiler (namely xlC/xlC_r). See accompanying patches to configure.in and importdl.c. From guido@cnri.reston.va.us Tue Nov 16 15:55:56 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Tue, 16 Nov 1999 10:55:56 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src config.h.in Message-ID: <199911161555.KAA02428@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src In directory eric:/projects/python/develop/guido/src Modified Files: config.h.in Log Message: Changes resulting from patch to acconfig.h. From guido@cnri.reston.va.us Tue Nov 16 15:57:38 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Tue, 16 Nov 1999 10:57:38 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src configure configure.in Message-ID: <199911161557.KAA02480@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src In directory eric:/projects/python/develop/guido/src Modified Files: configure configure.in Log Message: Patch by Vladimir Marangozov, inspired by a bug report from Gary Duzan, for AIX, to support C++ objects with static initializers, when using the genuine IBM C++ compiler (namely xlC/xlC_r). See accompanying patches to acconfig.h and importdl.c. From guido@cnri.reston.va.us Tue Nov 16 15:58:32 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Tue, 16 Nov 1999 10:58:32 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src Makefile.in Message-ID: <199911161558.KAA02498@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src In directory eric:/projects/python/develop/guido/src Modified Files: Makefile.in Log Message: The 'test' target ought to depend on 'all', not just on python$(EXE) -- otherwise shared libraries might not be rebuilt. From guido@cnri.reston.va.us Tue Nov 16 16:03:04 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Tue, 16 Nov 1999 11:03:04 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src README Message-ID: <199911161603.LAA02538@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src In directory eric:/projects/python/develop/guido/src Modified Files: README Log Message: Hint for C++ users on AIX by Gary Duzan added. From guido@cnri.reston.va.us Tue Nov 16 19:04:32 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Tue, 16 Nov 1999 14:04:32 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Lib SimpleHTTPServer.py Message-ID: <199911161904.OAA03506@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: Moshe Zadka writes: When deploying SimpleHTTPServer, I noticed a problem: it does not encode/decode the urls, which is wrong. From guido@cnri.reston.va.us Wed Nov 17 15:00:15 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Wed, 17 Nov 1999 10:00:15 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Tools/webchecker webchecker.py Message-ID: <199911171500.KAA00505@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Tools/webchecker In directory eric:/projects/python/develop/guido/src/Tools/webchecker Modified Files: webchecker.py Log Message: Samuel L. Bayer: - forced new done origins to set errors if they're in self.bad (fixes bug where only the first of a number of errorful references to a link is reported under some circumstances) - suppressed adding duplicates to self.todo list (cleans up printout in wcgui details) From guido@cnri.reston.va.us Wed Nov 17 15:02:54 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Wed, 17 Nov 1999 10:02:54 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Tools/webchecker wcnew.py Message-ID: <199911171502.KAA00526@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Tools/webchecker In directory eric:/projects/python/develop/guido/src/Tools/webchecker Modified Files: wcnew.py Log Message: Samuel L. Bayer: - same fixes from webchecker.py - incorporated small diff between current webchecker.py and 1.5.2 - fixed bug where "extra roots" added with the -t argument were being checked as real roots, not just as possible continuations - added -a argument to suppress checking of name anchors [And untabified --GvR] From guido@cnri.reston.va.us Wed Nov 17 15:03:53 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Wed, 17 Nov 1999 10:03:53 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Tools/webchecker wcgui.py Message-ID: <199911171503.KAA00545@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Tools/webchecker In directory eric:/projects/python/develop/guido/src/Tools/webchecker Modified Files: wcgui.py Log Message: Samuel L. Bayer: - added -t and -a arguments - added "import wcnew; webchecker = wcnew" in place of "import webchecker" (I assume that if you're happy with the changes, you'll just replace webchecker.py with wcnew.py, but if I were to do that, the diffs would be incomprehensible) - fixed buggy -v argument (I think you got out of sync with the way verbosity was handled in webchecker vs. wcgui between 1.5 and 1.5.2) - made -v actually do something by adding a call to c.setflags() (probably the same problem as above) - updated references to URLs to accommodate wcnew.py's pair representation; added appropriate calls to format_url() to handle display; added argument to ListPanel() initialization to provide access to format_url() [And untabified --GvR] From guido@cnri.reston.va.us Wed Nov 17 15:04:26 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Wed, 17 Nov 1999 10:04:26 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Tools/webchecker websucker.py Message-ID: <199911171504.KAA00564@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Tools/webchecker In directory eric:/projects/python/develop/guido/src/Tools/webchecker Modified Files: websucker.py Log Message: Samuel L. Bayer: - same trick with "import wcnew; webchecker = wcnew" as above - updated readhtml() method to handle pair representation; used new name suppression infrastructure from wcnew.py to suppress processing name anchors [And untabified --GvR] From guido@cnri.reston.va.us Wed Nov 17 15:13:21 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Wed, 17 Nov 1999 10:13:21 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Tools/webchecker wsgui.py Message-ID: <199911171513.KAA00639@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Tools/webchecker In directory eric:/projects/python/develop/guido/src/Tools/webchecker Modified Files: wsgui.py Log Message: # *NOT* by Sam Bayer: reindented to use 4 spaces like the rest here, # and removed trailing whitespace. From guido@cnri.reston.va.us Wed Nov 17 15:40:08 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Wed, 17 Nov 1999 10:40:08 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Tools/webchecker webchecker.py Message-ID: <199911171540.KAA00770@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Tools/webchecker In directory eric:/projects/python/develop/guido/src/Tools/webchecker Modified Files: webchecker.py Log Message: Integrated Sam Bayer's wcnew.py code. It seems silly to keep two files. Removed Sam's "SLB" change comments; otherwise this is the same as wcnew.py. From guido@cnri.reston.va.us Wed Nov 17 15:40:49 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Wed, 17 Nov 1999 10:40:49 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Tools/webchecker websucker.py wcgui.py Message-ID: <199911171540.KAA00793@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Tools/webchecker In directory eric:/projects/python/develop/guido/src/Tools/webchecker Modified Files: websucker.py wcgui.py Log Message: Changed fron importing wcnew back to webchecker. From guido@cnri.reston.va.us Wed Nov 17 15:41:48 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Wed, 17 Nov 1999 10:41:48 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Tools/webchecker README wcnew.py Message-ID: <199911171541.KAA00815@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Tools/webchecker In directory eric:/projects/python/develop/guido/src/Tools/webchecker Modified Files: README Removed Files: wcnew.py Log Message: Complete the integration of Sam Bayer's fixes. From fdrake@weyr.cnri.reston.va.us Wed Nov 17 16:09:59 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 17 Nov 1999 11:09:59 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libturtle.tex Message-ID: <199911171609.LAA01891@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/lib In directory weyr:/home/fdrake/projects/python/Doc/lib Modified Files: libturtle.tex Log Message: Removed last XXX comment; no further action needed on this one. From guido@cnri.reston.va.us Thu Nov 18 17:51:03 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Thu, 18 Nov 1999 12:51:03 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Modules readline.c Message-ID: <199911181751.MAA04489@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Modules In directory eric:/projects/python/develop/guido/src/Modules Modified Files: readline.c Log Message: Patches by Kannan Vijayan: new: readline.get_begidx() -> int gets the beginning index in the command line string delimiting the tab-completion scope. This would probably be used from within a tab-completion handler readline.get_endidx() -> int gets the ending index in the command line string delimiting the tab-completion scope. This would probably be used from within a tab-compeltion handler readline.set_completer_delims(string) -> None sets the delimiters used by readline as word breakpoints for tab-completion readline.get_completer_delims() -> string gets the delimiters used by readline as word breakpoints for tab-completion fixed: readline.get_line_buffer() -> string doesnt cause a debug message every other call From fdrake@weyr.cnri.reston.va.us Thu Nov 18 20:56:30 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 18 Nov 1999 15:56:30 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Doc/html Makefile Message-ID: <199911182056.PAA26054@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/html In directory weyr:/home/fdrake/projects/python/Doc/html Modified Files: Makefile Log Message: When generating the top-level index to the documents, make sure some oddball things from the LaTeX get translated to rational values. This is mostly to keep things from looking broken in a development tree when they're not. From fdrake@weyr.cnri.reston.va.us Thu Nov 18 20:57:37 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 18 Nov 1999 15:57:37 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Doc/texinputs boilerplate.tex Message-ID: <199911182057.PAA26072@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/texinputs In directory weyr:/home/fdrake/projects/python/Doc/texinputs Modified Files: boilerplate.tex Log Message: Set the date and version to reflect the actual status, not the last released status. Has to be changed just before publishing anyway. From bwarsaw@cnri.reston.va.us (Barry A. Warsaw) Fri Nov 19 16:30:15 1999 From: bwarsaw@cnri.reston.va.us (Barry A. Warsaw) (Barry A. Warsaw) Date: Fri, 19 Nov 1999 11:30:15 -0500 (EST) Subject: [Python-checkins] CVS log messages with diffs References: <199911161700.MAA02716@eric.cnri.reston.va.us> Message-ID: <14389.31511.706588.20840@anthem.cnri.reston.va.us> There was a suggestion to start augmenting the checkin emails to include the diffs of the checkin. This would let you keep a current snapshot of the tree without having to do a direct `cvs update'. I think I can add this without a ton of pain. It would not be optional however, and the emails would get larger (and some checkins could be very large). There's also the question of whether to generate unified or context diffs. Personally, I find context diffs easier to read; unified diffs are smaller but not by enough to really matter. So here's an informal poll. If you don't care either way, you don't need to respond. Otherwise please just respond to me and not to the list. 1. Would you like to start receiving diffs in the checkin messages? 2. If you answer `yes' to #1 above, would you prefer unified or context diffs? -Barry From bwarsaw@python.org Fri Nov 19 21:45:14 1999 From: bwarsaw@python.org (Barry A. Warsaw) Date: Fri, 19 Nov 1999 16:45:14 -0500 (EST) Subject: [Python-checkins] CVS log messages with diffs References: <14389.31511.706588.20840@anthem.cnri.reston.va.us> Message-ID: <14389.50410.358686.637483@anthem.cnri.reston.va.us> >>>>> "GS" == Greg Stein writes: GS> I've been using diffs-in-checkin for review, rather than to GS> keep a local snapshot updated. Interesting; I hadn't though about this use for the diffs. GS> I've attached an archive of the files that I use in my CVS GS> repository to do emailed diffs. These came from Ken Coar (an GS> Apache guy) as an extraction from the Apache repository. Yes, GS> they do use Perl. I'm not a Perl guy, so I probably would GS> break things if I tried to "fix" the scripts by converting GS> them to Python (in fact, Greg Ward helped to improve GS> log_accum.pl for me!). I certainly would not be adverse to GS> Python versions of these files, or other cleanups. Well, we all know Greg Ward's one of those subversive types, but then again it's great to have (hopefully now-loyal) defectors in our camp, just to keep us honest :) Anyway, thanks for sending the code, it'll come in handy if I get stuck. Of course, my P**l skills are so rusted I don't think even an oilcan-armed Dorothy could lube 'em up, so I'm not sure how much use I can put them to. Besides, I already have a huge kludge that gets run on each commit, and I don't think it'll be too hard to add diff generation... IF the informal vote goes that way. -Barry From gstein@lyra.org Fri Nov 19 21:35:34 1999 From: gstein@lyra.org (Greg Stein) Date: Fri, 19 Nov 1999 13:35:34 -0800 (PST) Subject: [Python-checkins] CVS log messages with diffs In-Reply-To: <14389.31511.706588.20840@anthem.cnri.reston.va.us> Message-ID: This message is in MIME format. The first part should be readable text, while the remaining parts are likely unreadable without MIME-aware tools. Send mail to mime@docserver.cac.washington.edu for more info. --1658348780-1256090628-943047334=:10639 Content-Type: TEXT/PLAIN; charset=US-ASCII On Fri, 19 Nov 1999, Barry A. Warsaw wrote: > There was a suggestion to start augmenting the checkin emails to > include the diffs of the checkin. This would let you keep a current > snapshot of the tree without having to do a direct `cvs update'. I've been using diffs-in-checkin for review, rather than to keep a local snapshot updated. I guess you use the email for this (procmail truly is frightening), but I think for most people it would be for purposes of review. >...context vs unifed... > So here's an informal poll. If you don't care either way, you don't > need to respond. Otherwise please just respond to me and not to the > list. > > 1. Would you like to start receiving diffs in the checkin messages? Absolutely. > 2. If you answer `yes' to #1 above, would you prefer unified or > context diffs? Don't care. I've attached an archive of the files that I use in my CVS repository to do emailed diffs. These came from Ken Coar (an Apache guy) as an extraction from the Apache repository. Yes, they do use Perl. I'm not a Perl guy, so I probably would break things if I tried to "fix" the scripts by converting them to Python (in fact, Greg Ward helped to improve log_accum.pl for me!). I certainly would not be adverse to Python versions of these files, or other cleanups. I trimmed down the "avail" file, leaving a few examples. It works with cvs_acls.pl to provide per-CVS-module read/write access control. I'm currently running mod_dav, PyOpenGL, XML-SIG, PyWin32, and two other small projects out of this repository. It has been working quite well. Cheers, -g -- Greg Stein, http://www.lyra.org/ --1658348780-1256090628-943047334=:10639 Content-Type: APPLICATION/octet-stream; name="cvs-for-barry.tar.gz" Content-Transfer-Encoding: BASE64 Content-ID: Content-Description: Content-Disposition: attachment; filename="cvs-for-barry.tar.gz" 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 T4cnoKzFoROv5mMuaBompraZMUPsiXZf2wrO3fDcZfVk3n0nN7q832Ewkz2g v4DWaFvsIAzCMnpa5Bo1l1QshxrAf0EvPfrbbuuuqJdCNy6lRM/0NgyMU7FW 17DY6OyGISk1tyX6ZUF57qo0cba1xplgPpXvqDy3IRyAyUcAeoniu3dXmPOt aIMN2cG6Ts3FP1uzRa+VW+ZeYmO1ubE+5mzflMC7NCelOulQCt70z5hOTDEq dMSj9STEqheoxJ95zWQKj9SJ9M0PMCG0YvYPtwrHPdZSXZjyreLRCgAYRwdz GH22wly41kLnRyMNYA1tmMi1wOZ5zBxcARfs81pw84DlCnjBwDZVgJIdvNUi slXc+ARS80hkjnRluSiMLZ9A6TouZg5NV7ZNxAJNYmEelz+YkB1pid9SeXKd d2VYTPW5VimkktLaMJdQysOtNGPhq2XHmArOcLGGPOHG23dW+/f99j977YfD 7lmzdXpa67em3FRqjDzFlIHRsSXaqSdl1rmIINJJiFjeI5tnWYgN6b9VTN0+ Udxw9e0xDUsbPpTxhiPoxjPHRvVhOg85PlkmfBsnCabMUr66w/GSMuTZDQK4 5sACnCHZ/4m+1TM3zoFKt9uGq1fhDbjAN24S8M8nysrrM/yX+tjyEkUU2OnY UVl63/J4iXLVCXh9vcy4TwEo0zFf75SvOOSfbuFMlFvZYZHLdL+q/NgswXwp +Hr9rWof9AYY1pmPKnuhNwBer/9V5YauR4BoBo7mzuWcudL+IxRqmn6YcZB/ V2xnLhjPxTpDkrlQ5QBL7zuVynVoITLJxPMGa8FagPIA1psyPYiNCyOduSJ0 Fyzh+2xyy3KsdctIyz6aQxU8Z481h5alGweI1M2rYCGmji9DPFZJ3jNixuq7 JuyJZblOHSYXJiDzimgXYmZH8voCFVyiQhs30J8bTigjUf0q5IVDPtXrp/Li L8/o6nzqDWRQI012aX43NvmClUu3RsZLWO3MDVOZUi9zQ8y4nT2OPxnNb5WP 2A4qOrj/0jfj/jOe4v1PqYdDRFLhLd4Avfr+p+h/v32/fP/zQa/39f7n53hu fv9z3TVJfWlTZz3VtckK7TSOg8he592qTwlo/05fAUosefHSs8ac6gYOugyv LgQV7lDLa6R/+Rol5xtC+XmDObzKeTonUPN25SfflPsyl9gErPPPxyfqtr3J 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 --1658348780-1256090628-943047334=:10639-- From fdrake@weyr.cnri.reston.va.us Fri Nov 19 21:57:57 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 19 Nov 1999 16:57:57 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Demo/parser example.py Message-ID: <199911192157.QAA27850@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Demo/parser In directory weyr:/home/fdrake/projects/python/Demo/parser Modified Files: example.py Log Message: Moved all the imports to the top. Use the methods on the AST object instead of module-level functions; these have been implemented for a couple of versions now, and are already used in the module documentation in preference to the functions. From fdrake@weyr.cnri.reston.va.us Tue Nov 23 17:00:28 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 23 Nov 1999 12:00:28 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib librfc822.tex Message-ID: <199911231700.MAA26578@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/lib In directory weyr:/home/fdrake/projects/python/Doc-152p1/lib Modified Files: Tag: release152p1-patches librfc822.tex Log Message: Revise the text referring to the mailbox module, and include it in a "See also:" section. From fdrake@weyr.cnri.reston.va.us Tue Nov 23 17:28:45 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 23 Nov 1999 12:28:45 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libsched.tex Message-ID: <199911231728.MAA27291@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/lib In directory weyr:/home/fdrake/projects/python/Doc-152p1/lib Modified Files: Tag: release152p1-patches libsched.tex Log Message: Work around LaTeX2HTML bug when dealing with comment at the start of a file (problem appearant in the *previous* section of the formatted output). From fdrake@weyr.cnri.reston.va.us Tue Nov 23 17:26:47 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 23 Nov 1999 12:26:47 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libmhlib.tex Message-ID: <199911231726.MAA27268@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/lib In directory weyr:/home/fdrake/projects/python/Doc-152p1/lib Modified Files: Tag: release152p1-patches libmhlib.tex Log Message: Work around LaTeX2HTML bug when dealing with comment at the start of a file (problem appearant in the *previous* section of the formatted output). From fdrake@weyr.cnri.reston.va.us Tue Nov 23 21:48:42 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 23 Nov 1999 16:48:42 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Doc/tools/sgmlconv conversion.xml Message-ID: <199911232148.QAA29329@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/tools/sgmlconv In directory weyr:/home/fdrake/projects/python/Doc/tools/sgmlconv Modified Files: conversion.xml Log Message: Don't rename \var to ; DocBook is too verbose here. Do adopt DocBook's ,