| Commit message (Expand) | Author | Age | Files | Lines |
* | Bringing the code and test suite into line with doc and NEWS changes | Tim Peters | 2003-01-23 | 1 | -28/+90 |
|
|
* | add support for Python's bool type to xmlrpclib - patch # 559288 | Skip Montanaro | 2003-01-22 | 1 | -37/+56 |
|
|
* | Tweaked time conversion to work in MacPython-OS9. | Jack Jansen | 2003-01-22 | 1 | -2/+5 |
|
|
* | Convert booleans to integers in IntVar.set. Fixes #671741. | Martin v. Löwis | 2003-01-22 | 1 | -0/+6 |
|
|
* | SF patch #667730: More DictMixin | Raymond Hettinger | 2003-01-22 | 1 | -2/+4 |
|
|
* | Make Alt-Key-2 the Zoom Height binding for ClassBrowser and PathBrowser, | Kurt B. Kaiser | 2003-01-22 | 1 | -2/+2 |
|
|
* | M Bindings.py | Kurt B. Kaiser | 2003-01-22 | 4 | -24/+34 |
|
|
* | Added DepracationWarnings to the old Standard File calls. | Jack Jansen | 2003-01-21 | 1 | -0/+9 |
|
|
* | Tuples and lists don't have a copy() method (yet?). | Jack Jansen | 2003-01-21 | 1 | -1/+1 |
|
|
* | Fix from Vinaj for the "writing to closed file" errors. SF 670390. | Guido van Rossum | 2003-01-21 | 2 | -11/+14 |
|
|
* | Implemented StandardGetFile and friends with the new EasyDialogs file | Jack Jansen | 2003-01-21 | 1 | -96/+20 |
|
|
* | Oops, this file wasn't 8-bit-clean yet. Fixed. | Jack Jansen | 2003-01-21 | 1 | -3/+3 |
|
|
* | Spell out the arguments to AskFileForOpen and friends, so help() gives useful | Jack Jansen | 2003-01-21 | 1 | -45/+100 |
|
|
* | Fix example in a docstring to not use 'file' as a variable name | Andrew M. Kuchling | 2003-01-21 | 1 | -2/+2 |
|
|
* | Use new file dialogs in GetArgv() | Jack Jansen | 2003-01-21 | 1 | -11/+10 |
|
|
* | 1. Restore the rest of Python IDLE setup.py Rev 1.4 (Python SF 634078) | Kurt B. Kaiser | 2003-01-21 | 1 | -4/+7 |
|
|
* | flesh out open() docstring | Skip Montanaro | 2003-01-21 | 1 | -1/+7 |
|
|
* | New rule for tzinfo subclasses handling both standard and daylight time: | Tim Peters | 2003-01-20 | 1 | -20/+27 |
|
|
* | ...and the old pyclbr.py faked Function instances with Class instances | Kurt B. Kaiser | 2003-01-20 | 1 | -1/+4 |
|
|
* | Add comments and remove duplicate tests. | Walter Dörwald | 2003-01-20 | 1 | -26/+34 |
|
|
* | Port test_userdict.py to PyUnit. From SF patch #662807, | Walter Dörwald | 2003-01-19 | 1 | -193/+233 |
|
|
* | Port test_unicode.py to PyUnit and add tests for error | Walter Dörwald | 2003-01-19 | 2 | -872/+1039 |
|
|
* | Combine test_b1.py and test_b2.py into test_builtin.py, | Walter Dörwald | 2003-01-19 | 4 | -1104/+1075 |
|
|
* | SF patch #634557: inspect.BlockFinder didn't do a good enough job finding | Raymond Hettinger | 2003-01-19 | 1 | -0/+2 |
|
|
* | SF patch 670194: Performance enhancement for _strptime.py. | Tim Peters | 2003-01-19 | 1 | -20/+36 |
|
|
* | SF bug #668906: class browser raises AttributeError | Raymond Hettinger | 2003-01-19 | 1 | -1/+1 |
|
|
* | SF patch #670423: Add missing identity tests to operator.c | Raymond Hettinger | 2003-01-18 | 1 | -0/+11 |
|
|
* | SF patch 670012: Compatibility changes for _strptime.py. | Tim Peters | 2003-01-18 | 2 | -138/+127 |
|
|
* | Fixed the first two bugs in the new file dialogs (found by Just): | Jack Jansen | 2003-01-17 | 1 | -1/+2 |
|
|
* | make sure src exists before creating a symlink | Just van Rossum | 2003-01-17 | 1 | -0/+2 |
|
|
* | * Migrate sample distribution test from random.py to test_random.py. | Raymond Hettinger | 2003-01-17 | 2 | -10/+22 |
|
|
* | Added methods AskFileForOpen(), AskFileForSave() and AskFolder(). These | Jack Jansen | 2003-01-17 | 1 | -2/+154 |
|
|
* | bugfix: do not double-close DB cursor during deallocation when the | Gregory P. Smith | 2003-01-17 | 1 | -0/+12 |
|
|
* | bugfix: disallow use of DB_TXN after commit() or abort(), prevents a | Gregory P. Smith | 2003-01-17 | 1 | -0/+20 |
|
|
* | Patch 611069 (Christos Georgiou) IDLE TODO:left/right when selected text | Kurt B. Kaiser | 2003-01-17 | 3 | -2/+28 |
|
|
* | SF Bug 667812: Some Linux distros have Alt and Meta reversed. | Kurt B. Kaiser | 2003-01-16 | 1 | -13/+13 |
|
|
* | Let test_random cover the endpoints. | Raymond Hettinger | 2003-01-16 | 1 | -9/+20 |
|
|
* | Test optional slice arguments. | Raymond Hettinger | 2003-01-16 | 1 | -4/+14 |
|
|
* | Added doctest for examples in the library reference. | Raymond Hettinger | 2003-01-16 | 1 | -0/+60 |
|
|
* | Convert to unittest format so that more tests can be added cleanly. | Raymond Hettinger | 2003-01-16 | 1 | -118/+127 |
|
|
* | Catch IOErrors. | Martin v. Löwis | 2003-01-16 | 1 | -0/+3 |
|
|
* | Support copying booleans. Fixes #668925. | Martin v. Löwis | 2003-01-16 | 1 | -0/+2 |
|
|
* | This test previously failed when run from the 'test' directory. In that | Mark Hammond | 2003-01-16 | 1 | -5/+7 |
|
|
* | On Mac OS X calling setlocale will raise locale.Error. This isn't fatal, | Jack Jansen | 2003-01-15 | 1 | -1/+2 |
|
|
* | Checking in Brett Cannon's patch #662053, which fixes bug #661354. | Jack Jansen | 2003-01-15 | 1 | -8/+12 |
|
|
* | Added ismount(). | Jack Jansen | 2003-01-15 | 1 | -0/+5 |
|
|
* | Implemented FSCatalogInfo structure support, and used this to implement | Jack Jansen | 2003-01-15 | 1 | -5/+30 |
|
|
* | * Add test for __cmp__() | Raymond Hettinger | 2003-01-15 | 1 | -2/+40 |
|
|
* | Patch #661719: Expose compilation errors as exceptions on request. | Martin v. Löwis | 2003-01-15 | 3 | -26/+82 |
|
|
* | Patch #473586: Implement CGIXMLRPCRequestHandler. | Martin v. Löwis | 2003-01-15 | 1 | -109/+371 |
|
|