Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | colorsys docs from David Ascher. | Fred Drake | 1999-04-19 | 1 | -0/+54 |
| | |||||
* | bsddb docs from Skip Montanaro; added interesting links. | Fred Drake | 1999-04-19 | 3 | -2/+146 |
| | |||||
* | Utility function that yields a properly formatted time string. | Guido van Rossum | 1999-04-19 | 1 | -0/+10 |
| | | | | | (Idea by Jeff Bauer, code by Jeremy, renamed and "Date:" constant stripped from return value by GvR.) | ||||
* | Relocating file to Lib/lib-tk. | Fred Drake | 1999-04-19 | 1 | -343/+0 |
| | |||||
* | Jim Fulton writes: | Guido van Rossum | 1999-04-19 | 1 | -13/+41 |
| | | | | | | | | | | | | | | I have attached a new cPickle that adds a new control attribute to unpicklers: Added new Unpickler attribute, find_global. If set to None, then global and instance pickles are disabled. Otherwise, it should be set to a callable object that takes two arguments, a module name and an object name, and returns an object. If the attribute is unset, then the default mechanism is used. This feature provides an additional mechanism for controlling which classes can be used for unpickling. | ||||
* | Patch from Tim Peters to repare a the problem that tracebacks are off | Guido van Rossum | 1999-04-19 | 1 | -2/+9 |
| | | | | by a line when Python is run with -x. | ||||
* | Improve text of some error messages, as suggested by Sean Reifschneider. | Guido van Rossum | 1999-04-19 | 1 | -2/+3 |
| | |||||
* | Daniel Neri: OpenBSD is just as BSD'ish as the other BSD's ;-) | Guido van Rossum | 1999-04-19 | 1 | -1/+2 |
| | |||||
* | Patch by Drew Csillag for FreeBSD's sh, which doesn't automatically | Guido van Rossum | 1999-04-19 | 1 | -0/+8 |
| | | | | join \-terminated lines. | ||||
* | Avoid triggering Alpha OSF/1 specific code on Alpha NT or Linux. | Guido van Rossum | 1999-04-19 | 1 | -1/+1 |
| | |||||
* | A few wishes are now fulfilled. | Guido van Rossum | 1999-04-19 | 1 | -4/+0 |
| | |||||
* | Tim Peters implements some of my wishes: | Guido van Rossum | 1999-04-19 | 1 | -11/+60 |
| | | | | | | | | | | | | | | | | | | | o Makes the tab key intelligently insert spaces when appropriate (see Help list banter twixt David Ascher and me; idea stolen from every other editor on earth <wink>). o newline_and_indent_event trims trailing whitespace on the old line (pymode and Codewright). o newline_and_indent_event no longer fooled by trailing whitespace or comment after ":" (pymode, PTUI). o newline_and_indent_event now reduces the new line's indentation after return, break, continue, raise and pass stmts (pymode). The last two are easy to fool in the presence of strings & continuations, but pymode requires Emacs's high-powered C parsing functions to avoid that in finite time. | ||||
* | Remove superfluous index entry for posix.popen(); no longer | Fred Drake | 1999-04-16 | 1 | -1/+0 |
| | | | | appropriate since popen() is only documented in os. | ||||
* | Added link to Fredrik Lundh's online Tkinter reference material. | Fred Drake | 1999-04-16 | 1 | -1/+4 |
| | |||||
* | Minor nits, include author info. | Fred Drake | 1999-04-16 | 1 | -2/+2 |
| | |||||
* | In list of sequence comparison examples, "=" should be "==". Reported | Fred Drake | 1999-04-16 | 1 | -1/+1 |
| | | | | by Mirko Liss <n89553@hrz.uni-paderborn.de>. | ||||
* | 'warn()' method now takes an optional line number. | Greg Ward | 1999-04-15 | 1 | -4/+6 |
| | |||||
* | Removed dbhash from the undocumented list. | Fred Drake | 1999-04-15 | 1 | -4/+1 |
| | |||||
* | Add libdbhash.tex. | Fred Drake | 1999-04-15 | 1 | -0/+1 |
| | |||||
* | Document the dbhash module, and link to it from appropriate places. | Fred Drake | 1999-04-15 | 4 | -3/+94 |
| | |||||
* | Correct documentation for <file>.read(); Python makes a serious | Fred Drake | 1999-04-14 | 1 | -6/+8 |
| | | | | | | best-effort to return 'size' bytes. Point out that this may mean multiple fread() calls. Reported by Anders Hammarquist <iko@iko.pp.se> via the Debian crew. | ||||
* | Use the standard stylesheet here as well. | Fred Drake | 1999-04-14 | 1 | -0/+1 |
| | |||||
* | Use the tools/mkdvi.sh script to generate DVI and PDF output for the | Fred Drake | 1999-04-14 | 1 | -24/+11 |
| | | | | library reference now that it's sufficiently capable. | ||||
* | Further refinement, to allow this to handle the library reference as | Fred Drake | 1999-04-14 | 1 | -5/+5 |
| | | | | well as the other "manual" documents. | ||||
* | Typo: "Otherwose" --> "Otherwise" (reported by Joakim Sernbrant | Fred Drake | 1999-04-14 | 1 | -29/+29 |
| | | | | | | <joakim.sernbrant@front.se>). Misc. small fixes to the logical markup. | ||||
* | Add some support for the module index, so this can be used to build | Fred Drake | 1999-04-14 | 1 | -0/+13 |
| | | | | the .aux file for any of the "manual" class documents. | ||||
* | For now, comment out the \ignorePlatformAnnotation; the global index | Fred Drake | 1999-04-13 | 1 | -1/+1 |
| | | | | doesn't really work with this. | ||||
* | Don't include the verbatim style; the default handling is better. | Fred Drake | 1999-04-13 | 2 | -2/+2 |
| | |||||
* | Fix problem of LaTeX leakage in the module synopsis tables at the | Fred Drake | 1999-04-13 | 1 | -1/+1 |
| | | | | | beginning of chapters. Known problem reported by Barry Scott <barry@scottb.demon.co.uk>. | ||||
* | Fix availability declaration for popen2 module; report by Barry Scott | Fred Drake | 1999-04-13 | 1 | -1/+1 |
| | | | | <barry@scottb.demon.co.uk>. | ||||
* | Minor cleanup. | Fred Drake | 1999-04-13 | 1 | -6/+7 |
| | |||||
* | Fix availability declaration for stat module; report by Barry Scott | Fred Drake | 1999-04-13 | 1 | -1/+1 |
| | | | | <barry@scottb.demon.co.uk>. | ||||
* | Work around problems with HTML conversion by making the break and | Fred Drake | 1999-04-13 | 1 | -6/+2 |
| | | | | | tbreak synopses be all on one line (each). Known problem, most recently reported by Barry Scott <barry@scottb.demon.co.uk>. | ||||
* | Just in case a copy of the documentation gets released somehow... | Fred Drake | 1999-04-13 | 1 | -1/+1 |
| | |||||
* | This commit was manufactured by cvs2svn to create tag 'r152'.v1.5.2 | cvs2svn | 1999-04-13 | 1 | -0/+1 |
| | |||||
* | News for 1.5.2 (final). | Guido van Rossum | 1999-04-13 | 1 | -1/+134 |
| | |||||
* | Bump version to 1.5.2 (final) | Guido van Rossum | 1999-04-13 | 1 | -2/+2 |
| | |||||
* | Added shamodule.c | Guido van Rossum | 1999-04-13 | 1 | -0/+4 |
| | |||||
* | Added sha module! | Guido van Rossum | 1999-04-13 | 1 | -0/+2 |
| | |||||
* | Prepare for final release. | Guido van Rossum | 1999-04-13 | 2 | -6/+7 |
| | |||||
* | More (Cameron Laird is honorary; the others are 1.5.2c1 testers). | Guido van Rossum | 1999-04-13 | 1 | -0/+4 |
| | |||||
* | While I can't really test this thoroughly, Pat Knight and the Solaris | Guido van Rossum | 1999-04-13 | 1 | -1/+2 |
| | | | | | | man pages suggest that the proper thing to do is to add THR_NEW_LWP to the flags on thr_create(), and that there really isn't a downside, so I'll do that. | ||||
* | Bunch of new names who helped iron out the last wrinkles of 1.5.2. | Guido van Rossum | 1999-04-13 | 1 | -0/+5 |
| | |||||
* | Bump the myusterious M$ version number from 1,5,2,1 to 1,5,2,3. | Guido van Rossum | 1999-04-13 | 1 | -2/+2 |
| | | | | (I can't even display this on NT, maybe Win/98 can?) | ||||
* | Class around PixMap objects that allows more python-like access. By Joe Strout. | Jack Jansen | 1999-04-13 | 1 | -0/+216 |
| | |||||
* | Fix mysterious references to jprofile that were in the source since | Guido van Rossum | 1999-04-13 | 1 | -1/+1 |
| | | | | | its creation. I'm assuming these were once valid references to "Jim Roskind's profile"... | ||||
* | Removed; since long subsumed in Doc/lib/libthreading.tex | Guido van Rossum | 1999-04-13 | 1 | -638/+0 |
| | |||||
* | Put back __osf__ support for gethostbyname_r(); the real bug was that | Guido van Rossum | 1999-04-13 | 1 | -1/+5 |
| | | | | | | it was being used even without threads. This of course might be an all-platform problem so now we only use the _r variant when we are using threads. | ||||
* | Fix accidentally reversed NULL test in load_mark(). Suggested by | Guido van Rossum | 1999-04-12 | 1 | -1/+1 |
| | | | | | Tamito Kajiyama. (This caused a bug only on platforms where malloc(0) returns NULL.) | ||||
* | Add note about popen2 problem on Linux noticed by Pablo Bleyer. | Guido van Rossum | 1999-04-12 | 1 | -0/+6 |
| |