Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Remove the commented-out warning at the top. It shouldn't be there | Guido van Rossum | 1997-12-29 | 2 | -12/+0 |
| | | | | for the 1.5 release version of the file. | ||||
* | Getting uglier. But it doesn't completely bomb except for some table stuff. | Fred Drake | 1997-12-29 | 2 | -80/+146 |
| | | | | I'll get to it when I can. | ||||
* | Lots of minor nits that allow this file to get processed without failures by | Fred Drake | 1997-12-29 | 2 | -50/+54 |
| | | | | | | | | | the info generation phases. Most of the errors had occurred in the makeinfo step. Commented out the warning at the top; this should still really be removed before 1.5, but that's not my call. It generated problems for the info conversion as well. | ||||
* | Ignore generated info files. | Fred Drake | 1997-12-29 | 1 | -0/+1 |
| | |||||
* | Reduce warning count from partparse.py. | Fred Drake | 1997-12-29 | 2 | -8/+2 |
| | | | | Removed BaseHTTPServer.py from list of undocumented modules. | ||||
* | Revised lib1.texi target to deal with some conversion nastiness. See comment. | Fred Drake | 1997-12-29 | 1 | -0/+7 |
| | |||||
* | Reduce warning count from partparse.py. | Fred Drake | 1997-12-29 | 2 | -4/+2 |
| | |||||
* | Moved things around a bit in interact(), so outout is processed before | Guido van Rossum | 1997-12-29 | 1 | -4/+5 |
| | | | | | | input. When an EOF is read, break out of the loop instead of (by default) writing an empty line (which doesn't do much good). Don't close self when falling through the loop. | ||||
* | Ignore another intermediate file from the info generation. | Fred Drake | 1997-12-29 | 1 | -0/+1 |
| | |||||
* | At Jeff Rush' request, add Py_BEGIN/END_ALLOW_THREADS around call to | Guido van Rossum | 1997-12-29 | 1 | -0/+3 |
| | | | | DosSleep(). | ||||
* | Reduce warning count from partparse.py. | Fred Drake | 1997-12-29 | 2 | -2/+2 |
| | |||||
* | Moved some #ifdefs around that got put in the wrong place by the | Guido van Rossum | 1997-12-29 | 1 | -16/+22 |
| | | | | latest OS/2 patch set. | ||||
* | Added Greg Stein's docs for BaseHTTPServer.py. | Guido van Rossum | 1997-12-29 | 5 | -12/+447 |
| | | | | Moved docs for "re" to before docs for "regex". | ||||
* | Make "{" and "}" in code sample visible instead of a group (it's supposed to | Fred Drake | 1997-12-29 | 2 | -2/+2 |
| | | | | be a dictionary...). | ||||
* | Fixed several bugs reported by Greg McFarmane: | Guido van Rossum | 1997-12-29 | 1 | -42/+31 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * The invoke methods of the three Tkinter widgets Button, Checkbutton and Radiobutton should return the value returned by the callback, (like the Menu widget does): def invoke(self): return self.tk.call(self._w, 'invoke') * The select_from method of the Canvas widget should use 'from', not 'set': def select_from(self, tagOrId, index): self.tk.call(self._w, 'select', 'from', tagOrId, index) Currently, if you use select_from, you get the error message: 'TclError: bad select option "set": must be adjust, clear, from, item, or to' * The 'entrycget' and 'type' methods of the Tk menu widget are missing from Tkinter. * There is a bug in grid_columnconfigure and grid_rowconfigure. For example, this should return the current value of the 'minsize' option for column 0: f.grid_columnconfigure(0, 'minsize') Instead it returns the same as: f.grid_columnconfigure(0) I suggest that the hint given in the comment in the Tkinter.Misc.configure method should be followed - "ought to generalize this so tag_config etc. can use it". Repeating the same configure code several times in Tkinter is inviting errors. [I did not follow this advice --G] * The grid_slaves method should handle options. Currently, to pass options to the grid_slaves method, you have to do something like: grid_slaves('-row', 1) | ||||
* | Minor editing corrections. | Guido van Rossum | 1997-12-29 | 3 | -31/+32 |
| | |||||
* | Added doc string, provided by Charles Waldman (with some reformatting | Guido van Rossum | 1997-12-29 | 1 | -29/+162 |
| | | | | and a little editing my me). | ||||
* | Added missing "\" to "\var{address}, var{length}" in buffer_info() description. | Fred Drake | 1997-12-29 | 2 | -2/+2 |
| | |||||
* | Added doc string, provided by Charles Waldman (with some reformatting | Guido van Rossum | 1997-12-29 | 2 | -0/+446 |
| | | | | and a little editing my me). | ||||
* | Reduce warning count from partparse.py. | Fred Drake | 1997-12-29 | 2 | -4/+2 |
| | |||||
* | Use tableii environment for the table instead of tabular. This makes it | Fred Drake | 1997-12-29 | 2 | -38/+36 |
| | | | | consistent with other 2-column tables in the Python documentation. | ||||
* | Reduce warning count from partparse.py. | Fred Drake | 1997-12-29 | 4 | -32/+28 |
| | |||||
* | Nit adjustments to remove warnings when processed with partparse.py. | Fred Drake | 1997-12-29 | 2 | -4/+2 |
| | |||||
* | Normalized the word "Unix" to "\UNIX{}". | Fred Drake | 1997-12-29 | 2 | -6/+6 |
| | | | | Changed "{\tt crypt}" to "\sectcode{crypt}" in section heading. | ||||
* | A bunch of minor stuff. | Fred Drake | 1997-12-29 | 2 | -18/+230 |
| | | | | | | Lots of support for new macros defined in myformat.sty; including the new indexing macros, seealso environment & friends, and the byte code instruction support. | ||||
* | Added back info generation. Still buggy in the final phase (makeinfo run). | Fred Drake | 1997-12-29 | 1 | -0/+26 |
| | | | | Does not conflict with any other targets. | ||||
* | Added missing "\" to "var{P}.\var{M}" in load_module() description. | Fred Drake | 1997-12-29 | 2 | -2/+2 |
| | |||||
* | Remove unneeded "{}" that confused makeinfo. | Fred Drake | 1997-12-29 | 2 | -2/+2 |
| | |||||
* | Change name of temporary file to avoid possible filesystem issues; matches | Fred Drake | 1997-12-29 | 2 | -2/+2 |
| | | | | similar renaming of the @buildno file elsewhere in the Python tree. | ||||
* | Changed all \verb\...\ markup to either \code{...} or \samp{...}. | Fred Drake | 1997-12-29 | 2 | -12/+12 |
| | |||||
* | Removed "-*-texinfo-*-" from first line; this can cause emacs/xemacs to stop | Fred Drake | 1997-12-29 | 2 | -4/+4 |
| | | | | | | | | and ask the user for permission to set buffer-local variables depending on the user's configuration. Not really needed since this doesn't get edited often. Bumped the version number to 1.5; date still needs to be set. | ||||
* | Normalized the \seetext markup to match the only other instance: should be | Fred Drake | 1997-12-29 | 2 | -4/+4 |
| | | | | "\seetext{...}" instead of "\seetext ...". | ||||
* | Changed some \verb\...\ markup to the more common \code{...}. \verb\...\ is | Fred Drake | 1997-12-29 | 2 | -4/+4 |
| | | | | | rarely needed and should be avoided where possible since it doesn't behave well with some processing tools (like partparse.py). | ||||
* | Solve two annoying problems with ftp URLs for Jack: when repeated | Guido van Rossum | 1997-12-28 | 1 | -0/+14 |
| | | | | | | | | | | retrieving files from the same host and directory, you had to close the previous instance before opening a new one; and retrieving a non-existent file would return an empty file. (The latter fix relies on maybe an undocumented property of NLST -- NLST of a file returns just that file, while NLST of a non-existent file returns nothing. A side effect, unfortunately, seems to be that now ftp-retrieving an *empty* directory may fail. Ah well.) | ||||
* | Do a better job of keeping the dialog visible when the master window | Guido van Rossum | 1997-12-28 | 1 | -0/+8 |
| | | | | is near or beyond the edge of the screen. Patch by Skip Montanaro. | ||||
* | do_env_tableii(), do_env_tableiii(): Align the table in the center, just | Fred Drake | 1997-12-28 | 1 | -2/+2 |
| | | | | like LaTeX does. There's no need to diverge on this. | ||||
* | Typo: Widht instead of Width... | Guido van Rossum | 1997-12-27 | 1 | -1/+1 |
| | |||||
* | Plug the most annoying recursive printing problem -- reset '_' to None | Guido van Rossum | 1997-12-26 | 1 | -3/+8 |
| | | | | | before printing and set it to the printed variable *after* printing (and only when printing is successful). | ||||
* | Just for fun, add a static module, "xyzzy" -- show that calling its | Guido van Rossum | 1997-12-25 | 1 | -0/+30 |
| | | | | initxyzzy() works. | ||||
* | Add setsockopt...SO_REUSEADDR to avoid stupid waiting when killing and | Guido van Rossum | 1997-12-25 | 1 | -1/+5 |
| | | | | restarting the server. | ||||
* | Added expect() method which takes a list of regular expressions and an | Guido van Rossum | 1997-12-24 | 1 | -2/+52 |
| | | | | optional timeout. Also moved some imports around. | ||||
* | Use string.replace instead of regsub.[g]sub. | Guido van Rossum | 1997-12-24 | 5 | -17/+13 |
| | |||||
* | Decided to add the telnet library that I wrote long ago (it's still in | Guido van Rossum | 1997-12-24 | 1 | -0/+424 |
| | | | | | the Demos/cwilib directory). Converted comments to doc strings and used default arguments instead of *args. Updated the example. | ||||
* | Checking in fixed PS, with A4 capability. | Guido van Rossum | 1997-12-24 | 1 | -1/+1 |
| | |||||
* | Script to edit one line in the PS to allow A4 printing. | Guido van Rossum | 1997-12-24 | 1 | -0/+26 |
| | |||||
* | Upped tcl/tk instructions for 8.0p2 | Jack Jansen | 1997-12-23 | 1 | -1/+1 |
| | |||||
* | Added Jack Jansen's versioncheck to the README file. | Guido van Rossum | 1997-12-23 | 1 | -0/+3 |
| | |||||
* | Adding Jack Jansen's version checking utility. | Guido van Rossum | 1997-12-23 | 4 | -0/+212 |
| | |||||
* | Convert a couple of three-column tables with an empty third column to | Fred Drake | 1997-12-23 | 2 | -22/+22 |
| | | | | | two-column tables. This improves the rendering of the HTML version on (at least) some browsers. | ||||
* | Removed unnecessary \small{} block; latex2html got it wrong and its no | Fred Drake | 1997-12-23 | 2 | -4/+0 |
| | | | | longer needed for printed output. |