From guido@cnri.reston.va.us Sat Jan 2 21:28:56 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Sat, 2 Jan 1999 16:28:56 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Tools/idle GrepDialog.py OutputWindow.py README.txt ReplaceDialog.py ScriptBinding.py SearchDialog.py SearchDialogBase.py SearchEngine.py WindowList.py ZoomHeight.py eventparse.py extend.py extend.txt idle.bat idlever.py keydefs.py AutoExpand.py AutoIndent.py Bindings.py ClassBrowser.py ColorDelegator.py Debugger.py Delegator.py EditorWindow.py FileList.py FrameViewer.py History.py IOBinding.py PyShell.py ScrolledList.py SearchBinding.py StackViewer.py UndoDelegator.py help.txt idle.pyw HelpWindow.py PopupMenu.py README Message-ID: <199901022128.QAA08071@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: AutoExpand.py AutoIndent.py Bindings.py ClassBrowser.py ColorDelegator.py Debugger.py Delegator.py EditorWindow.py FileList.py FrameViewer.py History.py IOBinding.py PyShell.py ScrolledList.py SearchBinding.py StackViewer.py UndoDelegator.py help.txt idle.pyw Added Files: GrepDialog.py OutputWindow.py README.txt ReplaceDialog.py ScriptBinding.py SearchDialog.py SearchDialogBase.py SearchEngine.py WindowList.py ZoomHeight.py eventparse.py extend.py extend.txt idle.bat idlever.py keydefs.py Removed Files: HelpWindow.py PopupMenu.py README Log Message: Checking in IDLE 0.2. Much has changed -- too much, in fact, to write down. The big news is that there's a standard way to write IDLE extensions; see extend.txt. Some sample extensions have been provided, and some existing code has been converted to extensions. Probably the biggest new user feature is a new search dialog with more options, search and replace, and even search in files (grep). This is exactly as downloaded from my laptop after returning from the holidays -- it hasn't even been tested on Unix yet. From guido@cnri.reston.va.us Sat Jan 2 21:42:49 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Sat, 2 Jan 1999 16:42:49 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Python frozenmain.c Message-ID: <199901022142.QAA08157@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Python In directory eric:/projects/python/develop/guido/src/Python Modified Files: frozenmain.c Log Message: Call PyInitFrozenExtensions() as requested by Mark Hammond (his patch). From guido@cnri.reston.va.us Sun Jan 3 00:47:08 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Sat, 2 Jan 1999 19:47:08 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Tools/idle ZoomHeight.py Message-ID: <199901030047.TAA08541@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: ZoomHeight.py Log Message: Adapted to Unix (i.e., more hardcoded constants). From guido@cnri.reston.va.us Sun Jan 3 00:47:36 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Sat, 2 Jan 1999 19:47:36 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Tools/idle AutoIndent.py Message-ID: <199901030047.TAA08559@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Tools/idle In directory eric:/projects/python/develop/guido/src/Tools/idle Modified Files: AutoIndent.py Log Message: Added something like Tim Peters' backspace patch. From guido@cnri.reston.va.us Sun Jan 3 12:40:27 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Sun, 3 Jan 1999 07:40:27 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Include Python.h modsupport.h patchlevel.h Message-ID: <199901031240.HAA10727@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Include In directory eric:/projects/python/develop/guido/src/Include Modified Files: Python.h modsupport.h patchlevel.h Log Message: New version identification scheme. The version numbers are now exported by Python.h. Also rolled back the API version change -- it's back to 1007! From guido@cnri.reston.va.us Sun Jan 3 12:41:52 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Sun, 3 Jan 1999 07:41:52 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Python getversion.c Message-ID: <199901031241.HAA10753@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Python In directory eric:/projects/python/develop/guido/src/Python Modified Files: getversion.c Log Message: Use PY_VERSION instead of PATCHLEVEL. From guido@cnri.reston.va.us Sun Jan 3 12:55:41 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Sun, 3 Jan 1999 07:55:41 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Python sysmodule.c Message-ID: <199901031255.HAA10775@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Python In directory eric:/projects/python/develop/guido/src/Python Modified Files: sysmodule.c Log Message: Add sys.hexversion, which is an integer encoding the version in hexadecimal. In other words, hex(sys.hexversion) == 0x010502b2 for Python 1.5.2b2. This is derived from the new variable PY_VERSION_HEX defined in patchlevel.h. (Cute, eh?) From guido@cnri.reston.va.us Sun Jan 3 13:00:35 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Sun, 3 Jan 1999 08:00:35 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Modules timemodule.c Message-ID: <199901031300.IAA10801@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: Get rid of the strptype() declaration -- on some BSD systems, it's a conflict, and it should be declared in time.h anyway. (Too bad if gcc -Wall won't be happy if it isn't declared...) From guido@cnri.reston.va.us Sun Jan 3 13:06:02 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Sun, 3 Jan 1999 08:06:02 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Tools/webchecker websucker.py Message-ID: <199901031306.IAA10826@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: Recover from failed saves; when a file turns out to be a directory, create a directory and moer the original file to the index.html. From guido@cnri.reston.va.us Mon Jan 4 12:23:49 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 4 Jan 1999 07:23:49 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Tools/idle ZoomHeight.py Message-ID: <199901041223.HAA15381@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: ZoomHeight.py Log Message: Typo in Win specific height setting. From guido@cnri.reston.va.us Mon Jan 4 13:04:55 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 4 Jan 1999 08:04:55 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Tools/idle FormatParagraph.py extend.py Message-ID: <199901041304.IAA15435@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Tools/idle In directory eric:/projects/python/develop/guido/src/Tools/idle Modified Files: extend.py Added Files: FormatParagraph.py Log Message: Add new extension to reformat a (text) paragraph. From guido@cnri.reston.va.us Mon Jan 4 13:05:59 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 4 Jan 1999 08:05:59 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Tools/idle README.txt extend.txt help.txt Message-ID: <199901041305.IAA15460@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Tools/idle In directory eric:/projects/python/develop/guido/src/Tools/idle Modified Files: README.txt extend.txt help.txt Log Message: Formatted some paragraphs From guido@cnri.reston.va.us Mon Jan 4 15:52:35 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 4 Jan 1999 10:52:35 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Tools/idle GrepDialog.py Message-ID: <199901041552.KAA19724@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: GrepDialog.py Log Message: Need to import sys! From fdrake@weyr.cnri.reston.va.us Mon Jan 4 16:15:05 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 4 Jan 1999 11:15:05 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/texinputs fncychap.sty Message-ID: <199901041615.LAA26387@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: fncychap.sty Log Message: Typo: "TWELV" --> "TWELVE" Added note at top, since LaTeX style writers like to force name changes when someone else makes a change to the style. I'm sending a note to the author reporting the error and asking for an updated version. This cannot be distributed in this form. This will be resolved when I get a response from Ulf Lindgren. Typo reported by rwolff@noao.edu (Richard Wolff). From guido@cnri.reston.va.us Mon Jan 4 16:31:33 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 4 Jan 1999 11:31:33 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Tools/idle ZoomHeight.py Message-ID: <199901041631.LAA19779@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: ZoomHeight.py Log Message: Adjusted Unix height to work with fvwm96. :=( From guido@cnri.reston.va.us Mon Jan 4 16:32:05 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 4 Jan 1999 11:32:05 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Tools/idle SearchBinding.py Message-ID: <199901041632.LAA19799@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: SearchBinding.py Log Message: Add unix binding for grep (otherwise the menu entry doesn't work!) From guido@cnri.reston.va.us Mon Jan 4 16:34:42 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 4 Jan 1999 11:34:42 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Tools/idle FormatParagraph.py Message-ID: <199901041634.LAA19836@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: FormatParagraph.py Log Message: Added Unix Meta-q key binding; fix find_paragraph when at start of file. From guido@cnri.reston.va.us Mon Jan 4 16:35:03 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 4 Jan 1999 11:35:03 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Tools/idle keydefs.py Message-ID: <199901041635.LAA19856@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: keydefs.py Log Message: Ran eventparse.py again. From guido@cnri.reston.va.us Mon Jan 4 16:38:44 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 4 Jan 1999 11:38:44 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/BeOS README PyImport_BeImageID.html Message-ID: <199901041638.LAA19898@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/BeOS In directory eric:/projects/python/develop/guido/src/BeOS Modified Files: README Removed Files: PyImport_BeImageID.html Log Message: Chris Herborth writes: Donn Cave tells me the PyImport_BeImageID() function isn't needed anymore. From guido@cnri.reston.va.us Mon Jan 4 16:39:40 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 4 Jan 1999 11:39:40 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Include import.h Message-ID: <199901041639.LAA19923@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Include In directory eric:/projects/python/develop/guido/src/Include Modified Files: import.h Log Message: Chris Herborth writes: Donn Cave tells me the PyImport_BeImageID() function isn't needed anymore. From guido@cnri.reston.va.us Mon Jan 4 16:46:01 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 4 Jan 1999 11:46:01 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Python importdl.c Message-ID: <199901041646.LAA19971@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: Chris Herborth writes: Donn Cave tells me the PyImport_BeImageID() function isn't needed anymore. From guido@cnri.reston.va.us Mon Jan 4 16:49:11 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 4 Jan 1999 11:49:11 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/BeOS ar-fake linkcc Message-ID: <199901041649.LAA20068@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/BeOS In directory eric:/projects/python/develop/guido/src/BeOS Modified Files: ar-fake linkcc Log Message: Chris Herborth writes: Here's a little cleanup of the BeOS/ directory for 1.5.2b2; it makes the ar-fake, linkcc and linkmodule shell scripts a little smarter (and, in the case of PowerPC systems, quieter :-). From guido@cnri.reston.va.us Mon Jan 4 17:22:20 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 4 Jan 1999 12:22:20 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Objects fileobject.c Message-ID: <199901041722.MAA20374@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Objects In directory eric:/projects/python/develop/guido/src/Objects Modified Files: fileobject.c Log Message: Fix two places (seek and truncate) where a cascade of PyArg_Parse calls was used instead of a single PyArg_ParseTuple call with an optional argument. From guido@cnri.reston.va.us Mon Jan 4 18:06:49 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 4 Jan 1999 13:06:49 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Lib/lib-tk FixTk.py Tkinter.py Message-ID: <199901041806.NAA20483@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 Added Files: FixTk.py Log Message: This hopefully fixes the problem of having to set PATH in autoexec.bat in order to find the Tcl DLLs -- Tkinter calls FixTk which will hunt around in a few common places and then set PATH and try again, or else issue a big clarifying error message. From fdrake@weyr.cnri.reston.va.us Mon Jan 4 18:25:41 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 4 Jan 1999 13:25:41 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc README Message-ID: <199901041825.NAA27230@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc In directory weyr:/home/fdrake/projects/python/Doc Modified Files: README Log Message: Update information on the version of latex2html to use, including complaint about 98.2b8 problems. From guido@cnri.reston.va.us Mon Jan 4 21:18:42 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 4 Jan 1999 16:18:42 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Tools/idle SearchBinding.py Message-ID: <199901042118.QAA20905@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: SearchBinding.py Log Message: Hm. Add Unix binding for replace, too. From guido@cnri.reston.va.us Mon Jan 4 21:19:10 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 4 Jan 1999 16:19:10 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Tools/idle FormatParagraph.py Message-ID: <199901042119.QAA20927@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: FormatParagraph.py Log Message: Hm. There was a boundary condition error at the end of the file too. From fdrake@weyr.cnri.reston.va.us Mon Jan 4 22:00:58 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 4 Jan 1999 17:00:58 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/tools buildindex.py Message-ID: <199901042200.RAA28974@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/tools In directory weyr:/home/fdrake/projects/python/Doc/tools Modified Files: buildindex.py Log Message: trim_ignored_letters(): Simplify a little. From guido@cnri.reston.va.us Tue Jan 5 14:10:32 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Tue, 5 Jan 1999 09:10:32 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/PCbuild python15.wse Message-ID: <199901051410.JAA22443@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/PCbuild In directory eric:/projects/python/develop/guido/src/PCbuild Modified Files: python15.wse Log Message: Upgraded to WISE 5.0g; bumped to 1.5.2b2; added dialog for Tcl. From fdrake@weyr.cnri.reston.va.us Tue Jan 5 14:39:31 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 5 Jan 1999 09:39:31 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/perl python.perl Message-ID: <199901051439.JAA17944@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_methodline(): New function, implements indexing version of \methodline. Fixed up support for \withsubitem, hopefully improving the fidelity of the index a bit. From fdrake@weyr.cnri.reston.va.us Tue Jan 5 15:49:40 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 5 Jan 1999 10:49:40 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/html Makefile Message-ID: <199901051549.KAA20386@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: Make the documents that have indexes dependent on the buildindex.py script. From guido@cnri.reston.va.us Tue Jan 5 17:16:48 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Tue, 5 Jan 1999 12:16:48 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Modules cursesmodule.c Message-ID: <199901051716.MAA23050@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Modules In directory eric:/projects/python/develop/guido/src/Modules Modified Files: cursesmodule.c Log Message: Patch by Charles Waldman to implement an optional nlines argument to w.scroll(). (It then calls wscrl(win, nlines) instead of scoll(win).) From guido@cnri.reston.va.us Tue Jan 5 18:02:26 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Tue, 5 Jan 1999 13:02:26 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Lib uu.py Message-ID: <199901051802.NAA23159@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory eric:/projects/python/develop/guido/src/Lib Modified Files: uu.py Log Message: Incorporate fix suggested by /Fredrik Lundh in the newsgroup to cope with trailing garbage generated by some broke uuencoders. From fdrake@weyr.cnri.reston.va.us Tue Jan 5 20:53:45 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 5 Jan 1999 15:53:45 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/tools buildindex.py Message-ID: <199901052053.PAA23478@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/tools In directory weyr:/home/fdrake/projects/python/Doc/tools Modified Files: buildindex.py Log Message: Remove obsolete comment. From fdrake@weyr.cnri.reston.va.us Tue Jan 5 21:42:20 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 5 Jan 1999 16:42:20 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libexcs.tex Message-ID: <199901052142.QAA25237@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/lib In directory weyr:/home/fdrake/projects/python/Doc/lib Modified Files: libexcs.tex Log Message: Added missing "from" in IOError description. From fdrake@weyr.cnri.reston.va.us Tue Jan 5 22:16:30 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 5 Jan 1999 17:16:30 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/perl python.perl Message-ID: <199901052216.RAA26003@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: write_idxfile(): New function. Isolate format of the external index data file used by buildindex.py. next_argument_id(): Removed; no longer used. next_argument(): Doesn't use next_argument_id(), just does the work. gen_target(), gen_target_name(): Removed, no longer used. The only place that used them now does the (trivial) work directly. Lots of little changes so we never have to pass around $br_id values all over the place. The only places they're used now new IDs are generated as needed. From fdrake@weyr.cnri.reston.va.us Tue Jan 5 22:54:51 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 5 Jan 1999 17:54:51 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libimghdr.tex Message-ID: <199901052254.RAA26510@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/lib In directory weyr:/home/fdrake/projects/python/Doc/lib Modified Files: libimghdr.tex Log Message: Shorten the synopsis that gets into the table of contents. From fdrake@weyr.cnri.reston.va.us Tue Jan 5 23:09:13 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 5 Jan 1999 18:09:13 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libsndhdr.tex lib.tex libundoc.tex Message-ID: <199901052309.SAA26825@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/lib In directory weyr:/home/fdrake/projects/python/Doc/lib Modified Files: lib.tex libundoc.tex Added Files: libsndhdr.tex Log Message: Document the sndhdr module. Document that the whatsound module is obsolete. From guido@cnri.reston.va.us Wed Jan 6 12:49:27 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Wed, 6 Jan 1999 07:49:27 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Lib UserList.py Message-ID: <199901061249.HAA24542@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory eric:/projects/python/develop/guido/src/Lib Modified Files: UserList.py Log Message: Add extend() method. A small New Year's present from Jean-Claude Wippler. From guido@cnri.reston.va.us Wed Jan 6 13:05:59 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Wed, 6 Jan 1999 08:05:59 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Lib sndhdr.py Message-ID: <199901061305.IAA24599@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory eric:/projects/python/develop/guido/src/Lib Modified Files: sndhdr.py Log Message: Got rid of whatraw(). Doc-string-ified the lead comments. Added auto call of test() when run as script. From fdrake@weyr.cnri.reston.va.us Wed Jan 6 15:20:51 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 6 Jan 1999 10:20:51 -0500 Subject: [Python-checkins] CVS: python/dist/src/Lib sndhdr.py Message-ID: <199901061520.KAA29051@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory weyr:/home/fdrake/projects/python/Lib Modified Files: sndhdr.py Log Message: Move brief descriptions of what() and whathdr() to docstrings in the functions (from comments). From fdrake@weyr.cnri.reston.va.us Wed Jan 6 15:21:20 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 6 Jan 1999 10:21:20 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libsndhdr.tex Message-ID: <199901061521.KAA29073@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/lib In directory weyr:/home/fdrake/projects/python/Doc/lib Modified Files: libsndhdr.tex Log Message: Remove documentation for whatraw() since it's gone now. From guido@cnri.reston.va.us Wed Jan 6 18:39:43 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Wed, 6 Jan 1999 13:39:43 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Include longobject.h Message-ID: <199901061839.NAA29815@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Include In directory eric:/projects/python/develop/guido/src/Include Modified Files: longobject.h Log Message: Changes for long file support by Steve Clift. From guido@cnri.reston.va.us Wed Jan 6 18:42:16 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Wed, 6 Jan 1999 13:42:16 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Modules posixmodule.c Message-ID: <199901061842.NAA29840@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Modules In directory eric:/projects/python/develop/guido/src/Modules Modified Files: posixmodule.c Log Message: Changes for long file support by Steve Clift. Also added access() and ttyname() by Sean Reifschneider. From guido@cnri.reston.va.us Wed Jan 6 18:44:25 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Wed, 6 Jan 1999 13:44:25 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Modules fcntlmodule.c Message-ID: <199901061844.NAA29861@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Modules In directory eric:/projects/python/develop/guido/src/Modules Modified Files: fcntlmodule.c Log Message: Changes for long file support by Steve Clift. He also fixes thread-related evil that caused core dumps. From guido@cnri.reston.va.us Wed Jan 6 18:44:58 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Wed, 6 Jan 1999 13:44:58 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Modules resource.c Message-ID: <199901061844.NAA29879@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Modules In directory eric:/projects/python/develop/guido/src/Modules Modified Files: resource.c Log Message: Changes for long file support by Steve Clift. From guido@cnri.reston.va.us Wed Jan 6 18:50:39 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Wed, 6 Jan 1999 13:50:39 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Objects longobject.c Message-ID: <199901061850.NAA29898@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Objects In directory eric:/projects/python/develop/guido/src/Objects Modified Files: longobject.c Log Message: Changes for long file support by Steve Clift. (Really: moved a bunch of defs to longobject.h.) From guido@cnri.reston.va.us Wed Jan 6 18:51:18 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Wed, 6 Jan 1999 13:51:18 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Objects fileobject.c Message-ID: <199901061851.NAA29916@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Objects In directory eric:/projects/python/develop/guido/src/Objects Modified Files: fileobject.c Log Message: Changes for long file support by Steve Clift. (This also redoes my previous patch, but better.) From guido@cnri.reston.va.us Wed Jan 6 18:52:31 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Wed, 6 Jan 1999 13:52:31 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src configure.in Message-ID: <199901061852.NAA29935@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src In directory eric:/projects/python/develop/guido/src Modified Files: configure.in Log Message: Changes for long file support by Steve Clift. (Slightly modified to isolate the test for various funcs more.) From guido@cnri.reston.va.us Wed Jan 6 18:52:50 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Wed, 6 Jan 1999 13:52:50 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src acconfig.h Message-ID: <199901061852.NAA29953@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: Changes for long file support by Steve Clift. From guido@cnri.reston.va.us Wed Jan 6 18:53:37 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Wed, 6 Jan 1999 13:53:37 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src configure Message-ID: <199901061853.NAA01030@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src In directory eric:/projects/python/develop/guido/src Modified Files: configure Log Message: Changes for long file support by Steve Clift. From guido@cnri.reston.va.us Wed Jan 6 18:54:59 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Wed, 6 Jan 1999 13:54:59 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Lib statvfs.py Message-ID: <199901061854.NAA01564@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory eric:/projects/python/develop/guido/src/Lib Added Files: statvfs.py Log Message: Constants for [f]statvfs() (new in posixmodule.c) by Steve Clift. From akuchlin@cnri.reston.va.us Wed Jan 6 22:13:16 1999 From: akuchlin@cnri.reston.va.us (Andrew M. Kuchling) Date: Wed, 6 Jan 1999 17:13:16 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Lib urlparse.py Message-ID: <199901062213.RAA01728@amarok.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory amarok:/home/akuchlin/src/Python-1.5/Lib Modified Files: urlparse.py Log Message: Fixed bug in the common-case code for HTTP URLs; it would lose the query, fragment, and/or parameter information. 3 cases added to the test suite to check for this bug. From fdrake@weyr.cnri.reston.va.us Wed Jan 6 22:50:54 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 6 Jan 1999 17:50:54 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/tools/sgmlconv docfixer.py Message-ID: <199901062250.RAA02000@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: Preliminary code to mark paragraphs. Seems to work, but very slow. From guido@cnri.reston.va.us Wed Jan 6 22:52:40 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Wed, 6 Jan 1999 17:52:40 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Modules posixmodule.c Message-ID: <199901062252.RAA02413@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Modules In directory eric:/projects/python/develop/guido/src/Modules Modified Files: posixmodule.c Log Message: Change the access() code to return 1 if granted, 0 if not granted. Patch (again) by Sean Reifschneider. From jhylton@cnri.reston.va.us Wed Jan 6 22:56:26 1999 From: jhylton@cnri.reston.va.us (Jeremy Hylton) Date: Wed, 6 Jan 1999 17:56:26 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Modules zlibmodule.c Message-ID: <199901062256.RAA11078@bitdiddle.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Modules In directory bitdiddle:/local/home/jhylton/local/python/src/Modules Modified Files: zlibmodule.c Log Message: fix bug in PyZlib_flush. patch from Grzegorz Makarewicz & Rafal Smotrzyk. From guido@cnri.reston.va.us Wed Jan 6 23:03:45 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Wed, 6 Jan 1999 18:03:45 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libposix.tex Message-ID: <199901062303.SAA02503@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: libposix.tex Log Message: Add doc for access() and ttyname(). Patch by Sean Reifschneider. From guido@cnri.reston.va.us Wed Jan 6 23:10:53 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Wed, 6 Jan 1999 18:10:53 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libfuncs.tex Message-ID: <199901062310.SAA02528@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: libfuncs.tex Log Message: Replace the docs for reduce with an adaptation of its docstring, which was actually clearer! From guido@cnri.reston.va.us Wed Jan 6 23:14:16 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Wed, 6 Jan 1999 18:14:16 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Doc/tut tut.tex Message-ID: <199901062314.SAA02560@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/tut In directory eric:/projects/python/develop/guido/Doc/tut Modified Files: tut.tex Log Message: Minor clarifications by Sean Reifschneider: - add example of string literal concatenation - add clarifying comment to the example of the if statement From guido@cnri.reston.va.us Wed Jan 6 23:34:41 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Wed, 6 Jan 1999 18:34:41 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libpickle.tex Message-ID: <199901062334.SAA04304@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: libpickle.tex Log Message: Explain how come that pickle and cPickle, while using the same data format, can produce different pickle strings for the same object. From guido@cnri.reston.va.us Thu Jan 7 00:10:02 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Wed, 6 Jan 1999 19:10:02 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Tools/idle TODO.txt Message-ID: <199901070010.TAA04522@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Tools/idle In directory eric:/projects/python/develop/guido/src/Tools/idle Added Files: TODO.txt Log Message: Separating TODO from README. From guido@cnri.reston.va.us Thu Jan 7 00:11:30 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Wed, 6 Jan 1999 19:11:30 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Tools/idle README.txt Message-ID: <199901070011.TAA04544@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Tools/idle In directory eric:/projects/python/develop/guido/src/Tools/idle Modified Files: README.txt Log Message: Separating TODO from README. Slight reformulation of features. No exact release date. From guido@cnri.reston.va.us Thu Jan 7 00:12:16 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Wed, 6 Jan 1999 19:12:16 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Tools/idle FormatParagraph.py Message-ID: <199901070012.TAA04563@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: FormatParagraph.py Log Message: Change paragraph width limit to 70 (like Emacs M-Q). From fdrake@weyr.cnri.reston.va.us Thu Jan 7 15:45:58 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 7 Jan 1999 10:45:58 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libamoeba.tex Message-ID: <199901071545.KAA09346@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/lib In directory weyr:/home/fdrake/projects/python/Doc/lib Modified Files: libamoeba.tex Log Message: Markup nit. Add module synopsis. From guido@cnri.reston.va.us Thu Jan 7 18:29:29 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Thu, 7 Jan 1999 13:29:29 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Modules timemodule.c Message-ID: <199901071829.NAA05606@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: The doc string for strptime had the arguments reversed -- the string comes first, the format second! Scott Cotton discovered this. From fdrake@weyr.cnri.reston.va.us Thu Jan 7 18:47:09 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 7 Jan 1999 13:47:09 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/tools/sgmlconv latex2esis.py Message-ID: <199901071847.NAA12692@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: convert(): Make sure no line has trailing whitespace. (docfixer.py checks for \n\n as a paragraph separator, LaTeX allows white space between the newlines.) From guido@cnri.reston.va.us Thu Jan 7 21:48:48 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Thu, 7 Jan 1999 16:48:48 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src config.h.in Message-ID: <199901072148.QAA07660@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 for long file support. From guido@cnri.reston.va.us Thu Jan 7 21:50:07 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Thu, 7 Jan 1999 16:50:07 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src configure configure.in Message-ID: <199901072150.QAA07683@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: Ty Sarna writes: The following patches (relative to 1.5.2b1) enable Python dynamic loading to work on NetBSD platforms that use ELF (presnetly mips and alpha systems). They automaticly determine wether the system is ELF or a.out rather than using astatic list of platforms so that when other NetBSD platforms move to ELF, python will continue to work without change. From guido@cnri.reston.va.us Thu Jan 7 21:50:43 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Thu, 7 Jan 1999 16:50:43 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Python importdl.c Message-ID: <199901072150.QAA07701@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: Ty Sarna writes: The following patches (relative to 1.5.2b1) enable Python dynamic loading to work on NetBSD platforms that use ELF (presnetly mips and alpha systems). They automaticly determine wether the system is ELF or a.out rather than using astatic list of platforms so that when other NetBSD platforms move to ELF, python will continue to work without change. From guido@cnri.reston.va.us Thu Jan 7 22:09:53 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Thu, 7 Jan 1999 17:09:53 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Objects fileobject.c Message-ID: <199901072209.RAA07784@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Objects In directory eric:/projects/python/develop/guido/src/Objects Modified Files: fileobject.c Log Message: Need to include for off_t. From fdrake@weyr.cnri.reston.va.us Fri Jan 8 15:25:32 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 8 Jan 1999 10:25:32 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/tools html2texi.pl checkargs.pm Message-ID: <199901081525.KAA19083@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/tools In directory weyr:/home/fdrake/projects/python/Doc/tools Added Files: html2texi.pl checkargs.pm Log Message: New conversion tools for HTML->info from Michael Ernst . Thanks! From fdrake@weyr.cnri.reston.va.us Fri Jan 8 15:27:19 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 8 Jan 1999 10:27:19 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/tools fixinfo.el mkinfo fix.el Message-ID: <199901081527.KAA19114@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/tools In directory weyr:/home/fdrake/projects/python/Doc/tools Added Files: fixinfo.el mkinfo Removed Files: fix.el Log Message: New support scripts for HTML->info conversion that use Michael Ernst's new conversion tools. From guido@cnri.reston.va.us Fri Jan 8 15:31:11 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Fri, 8 Jan 1999 10:31:11 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Tools/idle Bindings.py PyShell.py Message-ID: <199901081531.KAA10865@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Tools/idle In directory eric:/projects/python/develop/guido/src/Tools/idle Modified Files: Bindings.py PyShell.py Log Message: Paul Prescod's patches to allow the stack viewer to pop up when a traceback is printed. From fdrake@weyr.cnri.reston.va.us Fri Jan 8 15:32:28 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 8 Jan 1999 10:32:28 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/tools mkinfo Message-ID: <199901081532.KAA19172@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: mkinfo Log Message: Add a few comments. From fdrake@weyr.cnri.reston.va.us Fri Jan 8 15:33:39 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 8 Jan 1999 10:33:39 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/info Makefile Message-ID: <199901081533.KAA19196@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/info In directory weyr:/home/fdrake/projects/python/Doc/info Modified Files: Makefile Log Message: Replace most everything but the comment at the top. From fdrake@weyr.cnri.reston.va.us Fri Jan 8 15:34:07 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 8 Jan 1999 10:34:07 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/info texipre.dat texipost.dat Message-ID: <199901081534.KAA19216@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/info In directory weyr:/home/fdrake/projects/python/Doc/info Removed Files: texipre.dat texipost.dat Log Message: Remove obsolete files. From fdrake@weyr.cnri.reston.va.us Fri Jan 8 15:40:18 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 8 Jan 1999 10:40:18 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/tools partparse.py Message-ID: <199901081540.KAA19293@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/tools In directory weyr:/home/fdrake/projects/python/Doc/tools Removed Files: partparse.py Log Message: It's finally gone! From fdrake@weyr.cnri.reston.va.us Fri Jan 8 15:48:48 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 8 Jan 1999 10:48:48 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/tools text2latex.py Message-ID: <199901081548.KAA19371@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/tools In directory weyr:/home/fdrake/projects/python/Doc/tools Removed Files: text2latex.py Log Message: No longer useful. From fdrake@weyr.cnri.reston.va.us Fri Jan 8 15:49:46 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Fri, 8 Jan 1999 10:49:46 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc Makefile Message-ID: <199901081549.KAA19400@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc In directory weyr:/home/fdrake/projects/python/Doc Modified Files: Makefile Log Message: Remove the "lib-" prefix from the name of the info archive. From guido@cnri.reston.va.us Fri Jan 8 15:56:30 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Fri, 8 Jan 1999 10:56:30 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Python pythonrun.c Message-ID: <199901081556.KAA10967@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Python In directory eric:/projects/python/develop/guido/src/Python Modified Files: pythonrun.c Log Message: Hack for Windows so that if (1) the exit status is nonzero and (2) we think we have our own DOS box (i.e. we're not started from a command line shell), we print a message and wait for the user to hit a key before the DOS box is closed. The hacky heuristic for determining whether we have our *own* DOS box (due to Mark Hammond) is to test whether we're on line zero... From guido@cnri.reston.va.us Fri Jan 8 17:26:04 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Fri, 8 Jan 1999 12:26:04 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Tools/idle NEWS.txt README.txt Message-ID: <199901081726.MAA11513@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Tools/idle In directory eric:/projects/python/develop/guido/src/Tools/idle Modified Files: README.txt Added Files: NEWS.txt Log Message: What's new in this release. From bwarsaw@cnri.reston.va.us Fri Jan 8 17:42:05 1999 From: bwarsaw@cnri.reston.va.us (Barry A. Warsaw) Date: Fri, 8 Jan 1999 12:42:05 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Lib cgi.py Message-ID: <199901081742.MAA09783@anthem.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory anthem:/projects/python/develop/bwarsaw/pristine/Lib Modified Files: cgi.py Log Message: FieldStorage.__init__(): if there is no content-type header, use text/plain for inner parts, but application/x-www-form-urlencoded for outer parts. Honor any existing content-type header. Lower down, if the content-type header is something we don't understand (say because it there was a typo in the header coming from the client), default to text/plain for inner parts, but application/x-www-form-urlencoded for outer parts. From guido@cnri.reston.va.us Fri Jan 8 21:05:39 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Fri, 8 Jan 1999 16:05:39 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Modules posixmodule.c Message-ID: <199901082105.QAA12514@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Modules In directory eric:/projects/python/develop/guido/src/Modules Modified Files: posixmodule.c Log Message: Added fsync() and fdatasync(). Patches by Scott Cotton. Requires HAVE_* macros set by configure script. From guido@cnri.reston.va.us Fri Jan 8 21:08:36 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Fri, 8 Jan 1999 16:08:36 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src configure Message-ID: <199901082108.QAA12542@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src In directory eric:/projects/python/develop/guido/src Modified Files: configure Log Message: Now using autoconf 2.13 From guido@cnri.reston.va.us Fri Jan 8 21:28:07 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Fri, 8 Jan 1999 16:28:07 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Modules posixmodule.c Message-ID: <199901082128.QAA12717@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Modules In directory eric:/projects/python/develop/guido/src/Modules Modified Files: posixmodule.c Log Message: Need extern decl. for fdatasync() in case it exists but isn't declared anywhere (or, more likely, the declaration requires a magical combination of _POSIX defines). From guido@cnri.reston.va.us Sat Jan 9 05:00:19 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Sat, 9 Jan 1999 00:00:19 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Tools/idle ScriptBinding.py Message-ID: <199901090500.AAA13480@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Tools/idle In directory eric:/projects/python/develop/guido/src/Tools/idle Modified Files: ScriptBinding.py Log Message: This now actually works. See doc string. It can run a module (i.e. import or reload) or debug it (same with debugger control). Output goes to a fresh output window, only created when needed. From guido@cnri.reston.va.us Sat Jan 9 05:01:00 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Sat, 9 Jan 1999 00:01:00 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Tools/idle extend.py Message-ID: <199901090501.AAA13500@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Tools/idle In directory eric:/projects/python/develop/guido/src/Tools/idle Modified Files: extend.py Log Message: Added ScriptBinding to standard bindings. From bwarsaw@cnri.reston.va.us Sat Jan 9 17:22:43 1999 From: bwarsaw@cnri.reston.va.us (Barry A. Warsaw) Date: Sat, 9 Jan 1999 12:22:43 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Misc python-mode.el Message-ID: <199901091722.MAA24722@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-outdent-p): Short circuit infloop for illegal construct (e.g. except: on first line of buffer). From guido@cnri.reston.va.us Sat Jan 9 21:40:38 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Sat, 9 Jan 1999 16:40:38 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Objects rangeobject.c Message-ID: <199901092140.QAA14359@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Objects In directory eric:/projects/python/develop/guido/src/Objects Modified Files: rangeobject.c Log Message: Use 'xrange', not 'range', in error messages. Reported by Nathan Sullivan. From guido@cnri.reston.va.us Sat Jan 9 21:57:57 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Sat, 9 Jan 1999 16:57:57 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Tools/idle help.txt Message-ID: <199901092157.QAA14446@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Tools/idle In directory eric:/projects/python/develop/guido/src/Tools/idle Modified Files: help.txt Log Message: Updated a bunch of things (it was mostly still 0.1!) From guido@cnri.reston.va.us Sat Jan 9 21:58:13 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Sat, 9 Jan 1999 16:58:13 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Tools/idle StackViewer.py Message-ID: <199901092158.QAA14464@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: Close on ESC. From guido@cnri.reston.va.us Sat Jan 9 22:00:11 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Sat, 9 Jan 1999 17:00:11 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Tools/idle EditorWindow.py Message-ID: <199901092200.RAA14496@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Tools/idle In directory eric:/projects/python/develop/guido/src/Tools/idle Modified Files: EditorWindow.py Log Message: Allow tearing off of the Windows menu. From guido@cnri.reston.va.us Sat Jan 9 22:01:34 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Sat, 9 Jan 1999 17:01:34 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Tools/idle WindowList.py Message-ID: <199901092201.RAA14515@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Tools/idle In directory eric:/projects/python/develop/guido/src/Tools/idle Modified Files: WindowList.py Log Message: Don't traceback when wakeup() is called when the window has been destroyed. This can happen when a torn-of Windows menu references closed windows. And Tim Peters claims that the Windows menu is his favorite to tear off... From guido@cnri.reston.va.us Sun Jan 10 06:09:15 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Sun, 10 Jan 1999 01:09:15 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Lib statvfs.py Message-ID: <199901100609.BAA14831@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory eric:/projects/python/develop/guido/src/Lib Modified Files: statvfs.py Log Message: Added some more comments. From guido@cnri.reston.va.us Sun Jan 10 16:57:01 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Sun, 10 Jan 1999 11:57:01 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Objects abstract.c Message-ID: <199901101657.LAA15593@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Objects In directory eric:/projects/python/develop/guido/src/Objects Modified Files: abstract.c Log Message: Patch by Charles Waldman -- remove unneeded and even harmful test for float to the negative power (which is already and better done in floatobject.c.) From guido@cnri.reston.va.us Mon Jan 11 14:45:14 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 11 Jan 1999 09:45:14 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Tools/idle Separator.py Message-ID: <199901111445.JAA16703@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Tools/idle In directory eric:/projects/python/develop/guido/src/Tools/idle Added Files: Separator.py Log Message: Separator classes (draggable divider between two panes). From guido@cnri.reston.va.us Mon Jan 11 14:46:07 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 11 Jan 1999 09:46:07 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Tools/idle ClassBrowser.py Message-ID: <199901111446.JAA16722@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Tools/idle In directory eric:/projects/python/develop/guido/src/Tools/idle Modified Files: ClassBrowser.py Log Message: Use a HSeparator between the classes and the items. Make the list of classes wider by default (40 chars). Bind ESC to close-window. From guido@cnri.reston.va.us Mon Jan 11 14:46:56 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 11 Jan 1999 09:46:56 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Tools/idle Debugger.py Message-ID: <199901111446.JAA16741@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Tools/idle In directory eric:/projects/python/develop/guido/src/Tools/idle Modified Files: Debugger.py Log Message: Bind ESC to close-window. From guido@cnri.reston.va.us Mon Jan 11 14:47:55 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 11 Jan 1999 09:47:55 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Tools/idle ScriptBinding.py Message-ID: <199901111447.JAA16760@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Tools/idle In directory eric:/projects/python/develop/guido/src/Tools/idle Modified Files: ScriptBinding.py Log Message: I think I like it better if it prints the traceback even when it displays the stack viewer. From guido@cnri.reston.va.us Mon Jan 11 14:49:01 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 11 Jan 1999 09:49:01 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Tools/idle SearchBinding.py Message-ID: <199901111449.JAA16779@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: SearchBinding.py Log Message: Got rid of debug print statement in goto_line_event(). From guido@cnri.reston.va.us Mon Jan 11 14:51:33 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 11 Jan 1999 09:51:33 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Tools/idle EditorWindow.py Message-ID: <199901111451.JAA16798@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Tools/idle In directory eric:/projects/python/develop/guido/src/Tools/idle Modified Files: EditorWindow.py Log Message: Set the cursor to a watch when opening the class browser (which may take quite a while, browsing multiple files). Newer, better center() -- but assumes no wrapping. From guido@cnri.reston.va.us Mon Jan 11 14:52:41 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 11 Jan 1999 09:52:41 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Tools/idle TODO.txt Message-ID: <199901111452.JAA16816@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Tools/idle In directory eric:/projects/python/develop/guido/src/Tools/idle Modified Files: TODO.txt Log Message: Some requests have been fulfilled. From guido@cnri.reston.va.us Mon Jan 11 16:45:47 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 11 Jan 1999 11:45:47 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src README Message-ID: <199901111645.LAA17057@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src In directory eric:/projects/python/develop/guido/src Modified Files: README Log Message: Add note about gcc-2.8.1 setting sys.maxint to -1 on 64-bit IRIX. From guido@cnri.reston.va.us Mon Jan 11 16:47:32 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 11 Jan 1999 11:47:32 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src README Message-ID: <199901111647.LAA17080@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: Addition to previous note -- comfigure --without-gcc also works. From fdrake@weyr.cnri.reston.va.us Mon Jan 11 18:36:25 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 11 Jan 1999 13:36:25 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libposix.tex Message-ID: <199901111836.NAA01344@weyr.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: Patches describing the statvfs() and fstatvfs() functions. Additional text about large file support. All new text by Steve Clift , with only minor revision / addition of markup. From fdrake@weyr.cnri.reston.va.us Mon Jan 11 22:30:36 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 11 Jan 1999 17:30:36 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/tools html2texi.pl Message-ID: <199901112230.RAA02159@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: html2texi.pl Log Message: output_body(): For
elements, just skip, since they're always part of the page trailer. From fdrake@weyr.cnri.reston.va.us Tue Jan 12 04:15:23 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 11 Jan 1999 23:15:23 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/ref ref3.tex Message-ID: <199901120415.XAA03224@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: Removed a lot of unnecessary comment markers which cause unexplained numbers to appear in the HTML version of the manual. From fdrake@weyr.cnri.reston.va.us Tue Jan 12 04:16:52 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 11 Jan 1999 23:16:52 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/perl python.perl Message-ID: <199901120416.XAA03250@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_methodline(): Fixed reference to method name when generating the output HTML. From guido@cnri.reston.va.us Tue Jan 12 05:07:52 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Tue, 12 Jan 1999 00:07:52 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Python bltinmodule.c Message-ID: <199901120507.AAA18579@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Python In directory eric:/projects/python/develop/guido/src/Python Modified Files: bltinmodule.c Log Message: Avoid overflow if possible in calculations for range(); report unavoidable overflow as OverflowError. From fdrake@weyr.cnri.reston.va.us Tue Jan 12 18:13:30 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 12 Jan 1999 13:13:30 -0500 Subject: [Python-checkins] CVS: python/dist/src/Lib formatter.py Message-ID: <199901121813.NAA05024@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory weyr:/home/fdrake/projects/python/Lib Modified Files: formatter.py Log Message: DumbWriter.send_paragraph(): Fix problem with DumbWriter reported to the newsgroup by Raymond Tong Leng Ng . From fdrake@weyr.cnri.reston.va.us Tue Jan 12 18:33:49 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 12 Jan 1999 13:33:49 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libformatter.tex Message-ID: <199901121833.NAA05390@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/lib In directory weyr:/home/fdrake/projects/python/Doc/lib Modified Files: libformatter.tex Log Message: .send_paragraph(): Clarify what needs to be done by this method and what it should not do. (Specifically: handling breaking of last line of preceeding paragraph.) From fdrake@weyr.cnri.reston.va.us Tue Jan 12 19:19:41 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 12 Jan 1999 14:19:41 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libshlex.tex Message-ID: <199901121919.OAA05953@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/lib In directory weyr:/home/fdrake/projects/python/Doc/lib Modified Files: libshlex.tex Log Message: Added \modulesynopsis. From fdrake@weyr.cnri.reston.va.us Tue Jan 12 19:22:13 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 12 Jan 1999 14:22:13 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libnetrc.tex Message-ID: <199901121922.OAA06083@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/lib In directory weyr:/home/fdrake/projects/python/Doc/lib Modified Files: libnetrc.tex Log Message: Added \modulesynopsis. From fdrake@weyr.cnri.reston.va.us Tue Jan 12 19:28:42 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 12 Jan 1999 14:28:42 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/tools getpagecounts Message-ID: <199901121928.OAA06144@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/tools In directory weyr:/home/fdrake/projects/python/Doc/tools Modified Files: getpagecounts Log Message: Simplify command that extracts the number of pages from a PostScript file; use "grep -c" instead of "grep | wc -l | cut ... | tr ...". From fdrake@weyr.cnri.reston.va.us Tue Jan 12 19:51:04 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 12 Jan 1999 14:51:04 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/texinputs boilerplate.tex Message-ID: <199901121951.OAA06516@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: Bump the date. Seems like fun. ;-) From guido@cnri.reston.va.us Tue Jan 12 20:19:31 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Tue, 12 Jan 1999 15:19:31 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Lib asynchat.py asyncore.py Message-ID: <199901122019.PAA19344@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory eric:/projects/python/develop/guido/src/Lib Added Files: asynchat.py asyncore.py Log Message: A gift from Sam Rushing - modules asyncore and asynchat for the standard Python library. (Async socket support.) From guido@cnri.reston.va.us Tue Jan 12 20:30:25 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Tue, 12 Jan 1999 15:30:25 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/BeOS dl_export.h README Message-ID: <199901122030.PAA19810@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/BeOS In directory eric:/projects/python/develop/guido/src/BeOS Modified Files: README Added Files: dl_export.h Log Message: Chris Herborth's first pass at making config and install for BeOS better. From guido@cnri.reston.va.us Tue Jan 12 20:30:21 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Tue, 12 Jan 1999 15:30:21 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src Makefile.in config.h.in configure.in configure Message-ID: <199901122030.PAA19797@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src In directory eric:/projects/python/develop/guido/src Modified Files: Makefile.in config.h.in configure.in configure Log Message: Chris Herborth's first pass at making config and install for BeOS better. From fdrake@weyr.cnri.reston.va.us Tue Jan 12 20:32:42 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 12 Jan 1999 15:32:42 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc Makefile Message-ID: <199901122032.PAA08138@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc In directory weyr:/home/fdrake/projects/python/Doc Modified Files: Makefile Log Message: Fix the HTML tarball target to generate the HTML if needed instead of bombing. From fdrake@weyr.cnri.reston.va.us Tue Jan 12 21:31:18 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 12 Jan 1999 16:31:18 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc TODO Message-ID: <199901122131.QAA08604@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc In directory weyr:/home/fdrake/projects/python/Doc Modified Files: TODO Log Message: Added a few items. From guido@cnri.reston.va.us Tue Jan 12 22:09:19 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Tue, 12 Jan 1999 17:09:19 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Tools/idle Separator.py Message-ID: <199901122209.RAA20329@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: Separator.py Log Message: Vladimir Marangozov's patch: The separator dances too much and seems to jump by arbitrary amounts in arbitrary directions when I try to move it for resizing the frames. This patch makes it more quiet. From guido@cnri.reston.va.us Tue Jan 12 22:09:58 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Tue, 12 Jan 1999 17:09:58 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Tools/idle ColorDelegator.py EditorWindow.py Message-ID: <199901122209.RAA20348@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Tools/idle In directory eric:/projects/python/develop/guido/src/Tools/idle Modified Files: ColorDelegator.py EditorWindow.py Log Message: Hack to close a window that is colorizing. From guido@cnri.reston.va.us Tue Jan 12 22:14:36 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Tue, 12 Jan 1999 17:14:36 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Tools/idle testcode.py test.py Message-ID: <199901122214.RAA20407@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Tools/idle In directory eric:/projects/python/develop/guido/src/Tools/idle Added Files: testcode.py Removed Files: test.py Log Message: Renamed test.py to testcode.py so one can import Python's test package from inside IDLE. (Suggested by Jack Jansen.) From fdrake@weyr.cnri.reston.va.us Wed Jan 13 17:06:36 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 13 Jan 1999 12:06:36 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/perl python.perl Message-ID: <199901131706.MAA16740@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_refmodule(): New function to support new \refmodule macro. From fdrake@weyr.cnri.reston.va.us Wed Jan 13 17:09:07 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 13 Jan 1999 12:09:07 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/texinputs python.sty Message-ID: <199901131709.MAA16764@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: \seemodule: Fix so that each \seemodule entry gets its own paragraph, so they don't get run together when there's no blank line between them in the source. The HTML conversion already did the right thing. \refmodule: Refer to a module, using a hyperlink in the PDF version. Visually the same as \module. From fdrake@weyr.cnri.reston.va.us Wed Jan 13 17:11:54 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 13 Jan 1999 12:11:54 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libundoc.tex Message-ID: <199901131711.MAA16791@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/lib In directory weyr:/home/fdrake/projects/python/Doc/lib Modified Files: libundoc.tex Log Message: Use \refmodule when we say "use the XXX module instead". For the whatsound module, point to sndhdr. From fdrake@weyr.cnri.reston.va.us Wed Jan 13 23:02:41 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Wed, 13 Jan 1999 18:02:41 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc README Message-ID: <199901132302.SAA18669@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc In directory weyr:/home/fdrake/projects/python/Doc Modified Files: README Log Message: Update the comments on info files. From guido@cnri.reston.va.us Thu Jan 14 00:42:03 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Wed, 13 Jan 1999 19:42:03 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Lib shutil.py Message-ID: <199901140042.TAA23747@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory eric:/projects/python/develop/guido/src/Lib Modified Files: shutil.py Log Message: Change the order of the utime() and the chmod() call in copystat(). This doesn't make a bit of difference on Unix, but apparently on Windows NT you need write permission before you can set the utime... From guido@cnri.reston.va.us Thu Jan 14 04:18:48 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Wed, 13 Jan 1999 23:18:48 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Lib smtplib.py Message-ID: <199901140418.XAA23945@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory eric:/projects/python/develop/guido/src/Lib Modified Files: smtplib.py Log Message: In rcpt(), avoid a space after the TO: address when the option list is empty. Make sure there is a space when there are options. From fdrake@weyr.cnri.reston.va.us Thu Jan 14 17:06:11 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 14 Jan 1999 12:06:11 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/tools/sgmlconv esis2sgml.py Message-ID: <199901141706.MAA07225@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: Escape special characters on output. From fdrake@weyr.cnri.reston.va.us Thu Jan 14 17:13:04 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 14 Jan 1999 12:13:04 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/info Makefile Message-ID: <199901141713.MAA07307@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/info In directory weyr:/home/fdrake/projects/python/Doc/info Modified Files: Makefile Log Message: Added fixinfo.el to the list of dependencies. From fdrake@weyr.cnri.reston.va.us Thu Jan 14 17:38:14 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 14 Jan 1999 12:38:14 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/tools/sgmlconv latex2esis.py Message-ID: <199901141738.MAA09367@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: Adjustments to allow elements with subelements as parameters. This is used to deal with the table headings and entries. An additional flag in the element table is used to indicate elements which have no "general" content, but which do have subelement content. These must be flagged distinctly from empty elements. Currently used for \lineii, \lineiii, and \lineiv. From fdrake@weyr.cnri.reston.va.us Thu Jan 14 18:10:11 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 14 Jan 1999 13:10:11 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/tools/sgmlconv latex2esis.py Message-ID: <199901141810.NAA10966@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: Elaborate a comment on the format of the table that drives the conversion. From fdrake@weyr.cnri.reston.va.us Thu Jan 14 18:12:35 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 14 Jan 1999 13:12:35 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/tools/sgmlconv README Message-ID: <199901141812.NAA11003@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/tools/sgmlconv In directory weyr:/home/fdrake/projects/python/Doc/tools/sgmlconv Modified Files: README Log Message: Add usage of the "driver" Makefile. From fdrake@weyr.cnri.reston.va.us Thu Jan 14 18:14:01 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 14 Jan 1999 13:14:01 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/tools/sgmlconv Makefile Message-ID: <199901141814.NAA11030@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 Added Files: Makefile Log Message: "Driver" makefile to convert all documents to SGML or XML at once. From fdrake@weyr.cnri.reston.va.us Thu Jan 14 18:17:08 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 14 Jan 1999 13:17:08 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/tools html2texi.pl Message-ID: <199901141817.NAA11064@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: html2texi.pl Log Message: Update to the latest version of Michael Ernst's script. From fdrake@weyr.cnri.reston.va.us Thu Jan 14 18:26:03 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 14 Jan 1999 13:26:03 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/tools/sgmlconv make.rules Message-ID: <199901141826.NAA11220@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/tools/sgmlconv In directory weyr:/home/fdrake/projects/python/Doc/tools/sgmlconv Modified Files: make.rules Log Message: Added clean and clobber targets. From fdrake@weyr.cnri.reston.va.us Thu Jan 14 18:26:25 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 14 Jan 1999 13:26:25 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/tools/sgmlconv Makefile Message-ID: <199901141826.NAA11293@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/tools/sgmlconv In directory weyr:/home/fdrake/projects/python/Doc/tools/sgmlconv Modified Files: Makefile Log Message: Added clean and clobber targets. From guido@cnri.reston.va.us Thu Jan 14 18:51:55 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Thu, 14 Jan 1999 13:51:55 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/PC config.h Message-ID: <199901141851.NAA25275@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/PC In directory eric:/projects/python/develop/guido/src/PC Modified Files: config.h Log Message: Jim Ahlstrom added some SIZEOF defs for VC and WATCOM (only). From guido@cnri.reston.va.us Thu Jan 14 19:00:16 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Thu, 14 Jan 1999 14:00:16 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Objects fileobject.c Message-ID: <199901141900.OAA25302@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Objects In directory eric:/projects/python/develop/guido/src/Objects Modified Files: fileobject.c Log Message: Jim Ahlstrom patch: BIGCHUNK is too large for 16-bit int. From guido@cnri.reston.va.us Thu Jan 14 19:01:55 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Thu, 14 Jan 1999 14:01:55 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Objects listobject.c Message-ID: <199901141901.OAA25320@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Objects In directory eric:/projects/python/develop/guido/src/Objects Modified Files: listobject.c Log Message: Jim Ahlstrom patch: cutoff should be a long for machines with 16-bit ints. (In theory, other variables should be widened to long as well, but this won't ever be needed, since the len of a list is still an int.) From guido@cnri.reston.va.us Thu Jan 14 19:07:02 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Thu, 14 Jan 1999 14:07:02 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Python sysmodule.c Message-ID: <199901141907.OAA25413@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Python In directory eric:/projects/python/develop/guido/src/Python Modified Files: sysmodule.c Log Message: Jim Ahlstrom patch: the module doc string is too long for 16-bit VC 1.5. Omit the second part. From guido@cnri.reston.va.us Thu Jan 14 19:11:12 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Thu, 14 Jan 1999 14:11:12 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Modules cmathmodule.c Message-ID: <199901141911.OAA25449@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Modules In directory eric:/projects/python/develop/guido/src/Modules Modified Files: cmathmodule.c Log Message: Jim Ahlstrom patch: Watcom chokes on a long expression in c_asinh(). Break it up. From guido@cnri.reston.va.us Thu Jan 14 19:31:43 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Thu, 14 Jan 1999 14:31:43 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Modules termios.c Message-ID: <199901141931.OAA25561@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Modules In directory eric:/projects/python/develop/guido/src/Modules Modified Files: termios.c Log Message: Should include "Python.h", not -- it's not a standard header file (yet :-). From fdrake@weyr.cnri.reston.va.us Thu Jan 14 19:45:39 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 14 Jan 1999 14:45:39 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/tools/sgmlconv docfixer.py Message-ID: <199901141945.OAA14475@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: Several new functions to re-write tables to be at least partly conformant with the OASIS Exchange model. There's a little more massage left to do, but not much. From bwarsaw@cnri.reston.va.us Thu Jan 14 20:00:00 1999 From: bwarsaw@cnri.reston.va.us (Barry A. Warsaw) Date: Thu, 14 Jan 1999 15:00:00 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Lib rfc822.py Message-ID: <199901142000.PAA27799@anthem.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory anthem:/projects/python/develop/bwarsaw/pristine/Lib Modified Files: rfc822.py Log Message: Message.getaddrlist(): This now handles multiple occurances of the named header, so that if a message has, e.g. multiple CC: lines, all will get returned by the call to getaddrlist(). It also correctly handles addresses which show up in continuation lines. AdderlistClass.__init__(): Added \n to self.CR which fixes a bug that sometimes, an address would contain a bogus trailing newline. Message.getaddress(): In final else clause, added a test for the character we're at being in self.specials. Without this, such characters never get consumed and we infloop. Case in point (as posted to c.l.py): To: <[smtp:dd47@mail.xxx.edu]_at_hmhq@hdq-mdm1-imgout.companay.com> ----------------------------^ otherwise we'd infloop here From bwarsaw@cnri.reston.va.us Thu Jan 14 20:00:54 1999 From: bwarsaw@cnri.reston.va.us (Barry A. Warsaw) Date: Thu, 14 Jan 1999 15:00:54 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Lib/test test_rfc822.py Message-ID: <199901142000.PAA27822@anthem.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib/test In directory anthem:/projects/python/develop/bwarsaw/pristine/Lib/test Added Files: test_rfc822.py Log Message: Test the rfc822.py module. Contains just a few simple cases, and some troublesome ones encountered on the c.l.py list. From bwarsaw@cnri.reston.va.us Thu Jan 14 20:01:00 1999 From: bwarsaw@cnri.reston.va.us (Barry A. Warsaw) Date: Thu, 14 Jan 1999 15:01:00 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Lib/test/output test_rfc822 Message-ID: <199901142001.PAA27836@anthem.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib/test/output In directory anthem:/projects/python/develop/bwarsaw/pristine/Lib/test/output Added Files: test_rfc822 Log Message: Test the rfc822.py module. Contains just a few simple cases, and some troublesome ones encountered on the c.l.py list. From fdrake@weyr.cnri.reston.va.us Thu Jan 14 21:18:05 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 14 Jan 1999 16:18:05 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/tools/sgmlconv docfixer.py Message-ID: <199901142118.QAA16150@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: Make no longer an empty element but a container. The text currently generated by the LaTeX and LaTeX2HTML processes is generated here as well, making it more flexible in the SGML version. Reduce the element so that goes away; just use square brackets to indicate what's optional. This makes it easier to read than the LaTeX, and the processor can do any checking it needs to in order to make sure it's legit. Possible shortcoming: DSSSL processors may need more explicit markup. Can probably hack around it for this case, but we'll see. From fdrake@weyr.cnri.reston.va.us Thu Jan 14 21:18:53 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 14 Jan 1999 16:18:53 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/tools/sgmlconv latex2esis.py Message-ID: <199901142118.QAA16179@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: Shorten the name of the "number" attribute to "num". From bwarsaw@cnri.reston.va.us Thu Jan 14 21:26:55 1999 From: bwarsaw@cnri.reston.va.us (Barry A. Warsaw) Date: Thu, 14 Jan 1999 16:26:55 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Doc/lib librfc822.tex Message-ID: <199901142126.QAA28049@anthem.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/lib In directory anthem:/projects/python/develop/bwarsaw/pristine/Doc/lib Modified Files: librfc822.tex Log Message: for method getaddrlist(): Added a note clarifying that all named headers and their continuation lines are parsed. From fdrake@weyr.cnri.reston.va.us Thu Jan 14 21:44:57 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 14 Jan 1999 16:44:57 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/tools/sgmlconv fixgenents.sh Message-ID: <199901142144.QAA18338@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: Adjust so that we are no longer using special entities for well-known names. These are too much of a pain for occaissional authors. From fdrake@weyr.cnri.reston.va.us Thu Jan 14 22:35:06 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Thu, 14 Jan 1999 17:35:06 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/tools/sgmlconv Makefile Message-ID: <199901142235.RAA19364@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/tools/sgmlconv In directory weyr:/home/fdrake/projects/python/Doc/tools/sgmlconv Modified Files: Makefile Log Message: Add a "tarball" target. From guido@cnri.reston.va.us Thu Jan 14 22:40:32 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Thu, 14 Jan 1999 17:40:32 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/PC import_nt.c Message-ID: <199901142240.RAA26064@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/PC In directory eric:/projects/python/develop/guido/src/PC Modified Files: import_nt.c Log Message: Bruce Wheeler quotes Mark Hammond with a different version of the last patch to this file: use pathLen, not bufSize, as the initializer. From bwarsaw@cnri.reston.va.us Fri Jan 15 02:12:35 1999 From: bwarsaw@cnri.reston.va.us (Barry A. Warsaw) Date: Thu, 14 Jan 1999 21:12:35 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Misc python-mode.el Message-ID: <199901150212.VAA28687@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-delete): Implement the XEmacs 21 blessed way of checking for delete forwardness. From guido@cnri.reston.va.us Fri Jan 15 03:23:57 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Thu, 14 Jan 1999 22:23:57 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Lib smtplib.py Message-ID: <199901150323.WAA26367@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory eric:/projects/python/develop/guido/src/Lib Modified Files: smtplib.py Log Message: Patch by Piers Lauder: make exceptions classes. Take opportunity to add more explanatory messages to exceptions. From guido@cnri.reston.va.us Fri Jan 15 04:03:48 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Thu, 14 Jan 1999 23:03:48 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Lib exceptions.py Message-ID: <199901150403.XAA26478@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory eric:/projects/python/develop/guido/src/Lib Modified Files: exceptions.py Log Message: Added doc strings to the exception classes. Contributed by Blake Winton, but considerably edited. From guido@cnri.reston.va.us Mon Jan 18 15:18:37 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 18 Jan 1999 10:18:37 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Tools/idle TODO.txt Message-ID: <199901181518.KAA02320@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: Misc From guido@cnri.reston.va.us Mon Jan 18 15:18:58 1999 From: guido@cnri.reston.va.us (Guido van Rossum) Date: Mon, 18 Jan 1999 10:18:58 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Tools/idle EditorWindow.py WindowList.py Message-ID: <199901181518.KAA02339@eric.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Tools/idle In directory eric:/projects/python/develop/guido/src/Tools/idle Modified Files: EditorWindow.py WindowList.py Log Message: Only deiconify when iconic. From fdrake@weyr.cnri.reston.va.us Mon Jan 18 15:46:04 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Mon, 18 Jan 1999 10:46:04 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libcgi.tex Message-ID: <199901181546.KAA03769@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Doc/lib In directory weyr:/home/fdrake/projects/python/Doc/lib Modified Files: libcgi.tex Log Message: Fix typo spotted by Jeff MacDonald . From bwarsaw@cnri.reston.va.us Mon Jan 18 21:49:43 1999 From: bwarsaw@cnri.reston.va.us (Barry A. Warsaw) Date: Mon, 18 Jan 1999 16:49:43 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Misc python-mode.el Message-ID: <199901182149.QAA01040@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-narrow-to-defun): New command (bound to C-x n d) which mimics the standard narrow-to-defun but works with Python classes and methods. With no arg, narrows to most enclosing def/method. With C-u arg, narrows to most enclosing class. From bwarsaw@cnri.reston.va.us Tue Jan 19 13:26:59 1999 From: bwarsaw@cnri.reston.va.us (Barry A. Warsaw) Date: Tue, 19 Jan 1999 08:26:59 -0500 (EST) Subject: [Python-checkins] CVS: python/dist/src/Misc python-mode.el Message-ID: <199901191326.IAA01981@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-mode-map): Removed special bindings for C-m and C-j to py-newline-and-indent. These ought to get picked up by the mapcar that follows; any existing binding to newline-and-indent gets shadowed to py-newline-and-indent. This will break some people who, e.g. bind C-m or C-j to newline but still want these bound to py-newline-and-indent in Python mode. On the other hand, the forced binding pisses off Emacs diehards. So consider this experimental and see if any tall Dutch guys complain :-) From fdrake@weyr.cnri.reston.va.us Tue Jan 19 16:05:15 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 19 Jan 1999 11:05:15 -0500 Subject: [Python-checkins] CVS: python/dist/src/Lib os.py Message-ID: <199901191605.LAA10006@weyr.cnri.reston.va.us> Update of /projects/cvsroot/python/dist/src/Lib In directory weyr:/home/fdrake/projects/python/Lib Modified Files: os.py Log Message: Enable os.path as a mostly-normal submodule, including "from os.path import isfile" and "import os.path". From fdrake@weyr.cnri.reston.va.us Tue Jan 19 16:30:12 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 19 Jan 1999 11:30:12 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/perl l2hinit.perl Message-ID: <199901191630.LAA10327@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: add_module_idx(), add_idx_hook(): Change the message printed before running buildindex.py; "Doing the index..." wasn't clear and could be misinterpreted with an inappropriate mindset. ;-) From fdrake@weyr.cnri.reston.va.us Tue Jan 19 17:10:33 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 19 Jan 1999 12:10:33 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/tools/sgmlconv esis2sgml.py Message-ID: <199901191710.MAA11146@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: format_attrs(): Attempt a bit more minimization for SGML output. From fdrake@weyr.cnri.reston.va.us Tue Jan 19 17:11:24 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 19 Jan 1999 12:11:24 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/tools/sgmlconv docfixer.py Message-ID: <199901191711.MAA11173@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: convert(): Change the element name remapping to convert to . From fdrake@weyr.cnri.reston.va.us Tue Jan 19 19:35:20 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 19 Jan 1999 14:35:20 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libtime.tex Message-ID: <199901191935.OAA11746@weyr.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: Fix second description of handling 2-digit years (last item in introductory text). From fdrake@weyr.cnri.reston.va.us Tue Jan 19 20:00:09 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 19 Jan 1999 15:00:09 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/lib libre.tex Message-ID: <199901192000.PAA11866@weyr.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: Revised comments on null bytes in pattern string. Removed "New" from module synopsis. From fdrake@weyr.cnri.reston.va.us Tue Jan 19 21:46:50 1999 From: fdrake@weyr.cnri.reston.va.us (Fred L. Drake) Date: Tue, 19 Jan 1999 16:46:50 -0500 Subject: [Python-checkins] CVS: python/dist/src/Doc/tools/sgmlconv docfixer.py Message-ID: <199901192146.QAA14186@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: handle_labels(): Fix problem for document fragments containing more than one "root" that prevented all the