| Commit message (Expand) | Author | Age | Files | Lines |
* | Added a 'sync' method to shelve. If the underlying database does not have a ... | Roger E. Masse | 1997-03-25 | 1 | -0/+4 |
|
|
* | Removed 'marshal' from the list of "ok" built-in functions -- the | Guido van Rossum | 1997-03-21 | 1 | -1/+1 |
|
|
* | Ping's new version -- more efficient at finding the keywords. | Guido van Rossum | 1997-03-20 | 1 | -37/+13 |
|
|
* | Added __assert__. | Guido van Rossum | 1997-03-20 | 1 | -0/+1 |
|
|
* | Ka-Ping Yee's version is better: | Guido van Rossum | 1997-03-20 | 1 | -37/+116 |
|
|
* | Simple module to publish list of Python keywords. | Guido van Rossum | 1997-03-20 | 1 | -0/+37 |
|
|
* | Avoid crashes with nested multipart/mixed parts. | Guido van Rossum | 1997-03-20 | 1 | -1/+8 |
|
|
* | Implement find_class() without exec statement. | Guido van Rossum | 1997-03-14 | 1 | -4/+2 |
|
|
* | Change the list() function to match the documentation in the comment | Guido van Rossum | 1997-03-14 | 1 | -1/+1 |
|
|
* | Added Fred Drake's netrc parser class. | Guido van Rossum | 1997-03-14 | 1 | -0/+100 |
|
|
* | Support disassembly of a variety of objects through dis.dis(). | Guido van Rossum | 1997-03-14 | 1 | -0/+17 |
|
|
* | Add optional 4th argument to [r]find and [r]index (end of slice). | Guido van Rossum | 1997-03-14 | 2 | -20/+52 |
|
|
* | compile(): Use the __debug__ flag to determine the proper filename extension | Fred Drake | 1997-03-13 | 1 | -1/+1 |
|
|
* | Added support for imaginary constants (e.g. 0j, 1j, 1.0j). | Guido van Rossum | 1997-03-10 | 1 | -4/+5 |
|
|
* | Restore old behavior of autotest and testall, using regrtest. | Guido van Rossum | 1997-03-07 | 2 | -217/+7 |
|
|
* | Add "extra-verbose" mode, triggered by specifying two -v flags. In | Guido van Rossum | 1997-03-07 | 1 | -4/+12 |
|
|
* | Much more rigorous testing -- we now try many times, varying in time | Guido van Rossum | 1997-03-07 | 1 | -86/+97 |
|
|
* | Fixed doc string, added __version__, fixed 1 bug. | Guido van Rossum | 1997-03-07 | 1 | -11/+18 |
|
|
* | Ka-Ping's version. | Guido van Rossum | 1997-03-07 | 1 | -45/+132 |
|
|
* | Removing this -- complex numbers are now builtin, | Guido van Rossum | 1997-02-23 | 1 | -275/+0 |
|
|
* | Removed nonstandard strftime formats (strftime is tested more | Guido van Rossum | 1997-02-20 | 1 | -2/+2 |
|
|
* | Remove some bogus code that would cause a NameError if a -r option was passed. | Guido van Rossum | 1997-02-19 | 1 | -5/+0 |
|
|
* | Remove %n and %t from the list of standard expectations. | Guido van Rossum | 1997-02-19 | 1 | -2/+0 |
|
|
* | join(): Wax the incorrect leading comment | Barry Warsaw | 1997-02-18 | 2 | -8/+0 |
|
|
* | join(): join one or more path components | Barry Warsaw | 1997-02-18 | 3 | -26/+42 |
|
|
* | Store the current regex syntax along with the regular expression | Barry Warsaw | 1997-02-18 | 1 | -10/+15 |
|
|
* | Put back #! /usr/local/bin/python. For cgi scripts, /usr/bin/env is | Guido van Rossum | 1997-02-18 | 1 | -1/+1 |
|
|
* | Require _tkinter -- don't attempt to import tkinter when _tkinter does | Guido van Rossum | 1997-02-15 | 2 | -50/+20 |
|
|
* | Gave the Listbox selection methods their correct (longer) names. | Guido van Rossum | 1997-02-14 | 2 | -4/+8 |
|
|
* | Added test for ratecv (from Sjoerd, reformatted). | Guido van Rossum | 1997-02-14 | 1 | -0/+9 |
|
|
* | Put support for a cnf dictionary back in, since it is still supported | Guido van Rossum | 1997-02-12 | 2 | -2/+6 |
|
|
* | Merged in Jack's fixes. This brings some lines beyond 79 chars again; | Guido van Rossum | 1997-02-11 | 1 | -17/+32 |
|
|
* | Put a new, more useful, set of references in the leading comment. | Guido van Rossum | 1997-02-10 | 1 | -6/+13 |
|
|
* | Move the 'import os' in URLopener.cleanup() to inside the block | Guido van Rossum | 1997-01-30 | 1 | -1/+1 |
|
|
* | Skip Montanaro's robots.txt parser. | Guido van Rossum | 1997-01-30 | 1 | -0/+97 |
|
|
* | Did nobody ever notice that "make test" didn't print the summary line | Guido van Rossum | 1997-01-29 | 1 | -1/+0 |
|
|
* | new.code() has grown another foot, eh, another two arguments. | Guido van Rossum | 1997-01-27 | 1 | -1/+1 |
|
|
* | Fix splitext() to go up to the last dot, not the first. | Guido van Rossum | 1997-01-22 | 1 | -3/+8 |
|
|
* | Avoid traceback in selection_own_get() when no Tk widget owns the | Guido van Rossum | 1997-01-21 | 2 | -6/+8 |
|
|
* | Version 1.1. Fix memory leak and expensive comparison with None. | Guido van Rossum | 1997-01-18 | 1 | -3/+22 |
|
|
* | Add stacksize argument to new.code(). | Guido van Rossum | 1997-01-17 | 1 | -1/+1 |
|
|
* | Of course, when the type of the argument to dis() is unsupported, it | Guido van Rossum | 1997-01-17 | 1 | -1/+1 |
|
|
* | More user friedly interface: | Guido van Rossum | 1997-01-17 | 1 | -10/+25 |
|
|
* | Make as sure as we can that the forked child does not return and | Guido van Rossum | 1997-01-17 | 1 | -12/+15 |
|
|
* | Test output for the SGI cl C module test script. | Roger E. Masse | 1997-01-17 | 1 | -0/+1 |
|
|
* | Lame test script for the SGI cl C module. | Roger E. Masse | 1997-01-17 | 1 | -0/+78 |
|
|
* | Output from test script for the bsddb C extension module. | Roger E. Masse | 1997-01-16 | 1 | -0/+1 |
|
|
* | Test script for the bsddb C extension module. | Roger E. Masse | 1997-01-16 | 1 | -0/+69 |
|
|
* | Minor output message change | Roger E. Masse | 1997-01-16 | 2 | -2/+14 |
|
|
* | Merge several mods: | Guido van Rossum | 1997-01-16 | 1 | -2/+12 |
|
|