| Commit message (Expand) | Author | Age | Files | Lines |
* | Show microseconds, milliseconds or seconds, whichever is most natural, | Guido van Rossum | 2003-10-20 | 1 | -1/+9 |
|
|
* | Fix a bunch of typos in documentation, docstrings and comments. | Walter Dörwald | 2003-10-20 | 21 | -23/+23 |
|
|
* | Patch #822994: Consolidate tests for self.closed. | Martin v. Löwis | 2003-10-18 | 1 | -18/+14 |
|
|
* | Implemented non-recursive SRE matching. | Gustavo Niemeyer | 2003-10-17 | 4 | -10/+62 |
|
|
* | Let library modules use the new keyword arguments for list.sort(). | Raymond Hettinger | 2003-10-16 | 7 | -24/+18 |
|
|
* | * list.sort() now supports three keyword arguments: cmp, key, and reverse. | Raymond Hettinger | 2003-10-16 | 1 | -45/+101 |
|
|
* | Open results files, which contain binary pickles, in binary mode. | Jeremy Hylton | 2003-10-14 | 1 | -4/+2 |
|
|
* | Add test__locale to expected skip list for Darwin. | Brett Cannon | 2003-10-13 | 1 | -0/+1 |
|
|
* | Patch #810914: Return absolute path for mkstemp. Fixes #810408. | Martin v. Löwis | 2003-10-12 | 2 | -2/+8 |
|
|
* | Minor fixup. "Random" was listed twice in __all__. | Raymond Hettinger | 2003-10-12 | 1 | -2/+1 |
|
|
* | See rev. 1.42 for log message | Brett Cannon | 2003-10-12 | 1 | -6/+2 |
|
|
* | see rev. 1.13 for log message | Brett Cannon | 2003-10-12 | 1 | -5/+2 |
|
|
* | Ouch. Remove debug code containing obscenities. :-) | Guido van Rossum | 2003-10-10 | 1 | -3/+0 |
|
|
* | The fullmodname() function chopped off the first character if the | Guido van Rossum | 2003-10-10 | 1 | -1/+8 |
|
|
* | TCPServer: Fixed typo in class docstring. | Barry Warsaw | 2003-10-09 | 1 | -1/+1 |
|
|
* | TCPServer: Fixed typo in class docstring. | Barry Warsaw | 2003-10-09 | 1 | -1/+1 |
|
|
* | Patch #817329: Use SC_OPEN_MAX to determine MAXFD. Backported to 2.3. | Martin v. Löwis | 2003-10-06 | 1 | -1/+4 |
|
|
* | SF patch [ 816787 ] urllib2.URLError don't calll IOError.__init__ | Jeremy Hylton | 2003-10-06 | 1 | -1/+5 |
|
|
* | Fix for SF bug [ 817156 ] invalid \U escape gives 0=length unistr. | Jeremy Hylton | 2003-10-06 | 1 | -0/+7 |
|
|
* | Adopt Christian Stork's suggested argument order for the logic quantifiers. | Raymond Hettinger | 2003-10-05 | 1 | -11/+11 |
|
|
* | SF bug #812202: randint is always even | Raymond Hettinger | 2003-10-05 | 2 | -10/+132 |
|
|
* | GNUTranslations._parse(): Initialize local variable k so that if the | Barry Warsaw | 2003-10-04 | 1 | -1/+1 |
|
|
* | tweak the docstring to not be so focused on 1.6. | Skip Montanaro | 2003-10-03 | 1 | -5/+5 |
|
|
* | Make the fieldnames argument optional in the DictReader. If self.fieldnames | Skip Montanaro | 2003-10-03 | 2 | -2/+15 |
|
|
* | bsddb3 4.2.2, adds DBCursor.get_current_size() method to return the length | Gregory P. Smith | 2003-10-01 | 1 | -36/+36 |
|
|
* | Removed redundant 'return' statement. (Issue 813159) | Steve Purcell | 2003-09-30 | 1 | -2/+1 |
|
|
* | Use a threadsafe private DBEnv for each bsddb compatibility interface | Gregory P. Smith | 2003-09-27 | 1 | -3/+10 |
|
|
* | Fix typo in the comments. | Raymond Hettinger | 2003-09-24 | 1 | -1/+1 |
|
|
* | Add more identity tests. | Raymond Hettinger | 2003-09-24 | 1 | -0/+11 |
|
|
* | Let IDLE use the HTMLHelp docs on Windows, if found. | Thomas Heller | 2003-09-23 | 1 | -2/+6 |
|
|
* | Added codec for bz2 compression. | Raymond Hettinger | 2003-09-23 | 2 | -0/+67 |
|
|
* | Topical change: use 'startswith()' to identify test methods with a | Steve Purcell | 2003-09-23 | 1 | -2/+2 |
|
|
* | PlaySoundTest.test_alias_nofallback(): Simplified the coding by using | Tim Peters | 2003-09-22 | 1 | -7/+2 |
|
|
* | PlaySoundTest.test_alias_fallback(): Disabled this test, and explained | Tim Peters | 2003-09-22 | 1 | -1/+12 |
|
|
* | Avoid list as a variable name. | Walter Dörwald | 2003-09-22 | 1 | -10/+10 |
|
|
* | - Fixed loading of tests by name when name refers to unbound | Steve Purcell | 2003-09-22 | 1 | -40/+58 |
|
|
* | Improve and expand identity tests. | Raymond Hettinger | 2003-09-21 | 1 | -11/+18 |
|
|
* | Adds basic support for BerkeleyDB 4.2.x. Compiles and passes tests; new | Gregory P. Smith | 2003-09-21 | 20 | -66/+70 |
|
|
* | Maintain backwards compatibility with python < 2.3 by dynamically | Gregory P. Smith | 2003-09-20 | 1 | -18/+30 |
|
|
* | SF patch 809915: Fix bogus address to hopefully always break. | Tim Peters | 2003-09-20 | 1 | -1/+8 |
|
|
* | test__locale (two underscores) can't pass on Windows: RADIXCHAR doesn't | Tim Peters | 2003-09-20 | 1 | -0/+1 |
|
|
* | Patch #707167: Pass dircache exceptions to the caller. Fixes #682813. | Martin v. Löwis | 2003-09-20 | 2 | -9/+3 |
|
|
* | Patch #808362: Fix typos. | Martin v. Löwis | 2003-09-20 | 1 | -1/+1 |
|
|
* | Patch #793559: Reset __starttext_tag. Fixes #709491. Backported to 2.3. | Martin v. Löwis | 2003-09-20 | 1 | -1/+1 |
|
|
* | Patch #805976: Add DOTBOX and UNDERLINE. | Martin v. Löwis | 2003-09-20 | 1 | -0/+5 |
|
|
* | SF patch #806246: use basestring where possible | Raymond Hettinger | 2003-09-17 | 3 | -3/+3 |
|
|
* | Test __all__ for unittest.py | Raymond Hettinger | 2003-09-16 | 1 | -1/+2 |
|
|
* | Explicitly define public symbols via __all__: see discussion with Raymond | Steve Purcell | 2003-09-15 | 1 | -0/+10 |
|
|
* | * Converted test to unittest format. | Raymond Hettinger | 2003-09-13 | 1 | -85/+158 |
|
|
* | The previous change works much faster (one lookup per key) when | Raymond Hettinger | 2003-09-13 | 1 | -0/+9 |
|
|