| Commit message (Expand) | Author | Age | Files | Lines |
* | SF bug #769142: CallTip trimming may loop forever. | Raymond Hettinger | 2003-07-13 | 1 | -3/+1 |
|
|
* | Reworked test_warnings.py: | Raymond Hettinger | 2003-07-13 | 2 | -56/+81 |
|
|
* | This test failed on WindowsME because the full file path did not get | Raymond Hettinger | 2003-07-13 | 2 | -6/+6 |
|
|
* | Repaired typos in comments. | Tim Peters | 2003-07-13 | 1 | -1/+1 |
|
|
* | Fixed critical shutdown race in _Database._commit. | Tim Peters | 2003-07-13 | 1 | -5/+19 |
|
|
* | More comments about why not closing a dumddbm properly can be a disaster. | Tim Peters | 2003-07-13 | 1 | -3/+7 |
|
|
* | SF 748201: time.strptime() should display format and date on error | Raymond Hettinger | 2003-07-13 | 1 | -1/+2 |
|
|
* | _commit(): Modernization. | Tim Peters | 2003-07-12 | 1 | -2/+2 |
|
|
* | There's a persistent rumor on the spambayes mailing list that dumbdbm | Tim Peters | 2003-07-12 | 1 | -28/+69 |
|
|
* | Patch #764470: Fix marshalling of faults. Will backport to 2.2. | Martin v. Löwis | 2003-07-12 | 1 | -1/+9 |
|
|
* | Patch 549151, rev4: redirect posts for 301 also. Will backport to 2.2. | Martin v. Löwis | 2003-07-12 | 1 | -5/+5 |
|
|
* | Expose the 'master' instance mentioned in the docs. | Raymond Hettinger | 2003-07-11 | 1 | -0/+1 |
|
|
* | Don't include slash in search string; it's OS-specific. | Jeremy Hylton | 2003-07-11 | 1 | -1/+1 |
|
|
* | Change warnings to avoid importing re module during startup. | Jeremy Hylton | 2003-07-11 | 3 | -43/+91 |
|
|
* | patch #766650 - whichdb not identifying dbm DBs when dbm linked with gdbm | Andrew MacIntyre | 2003-07-11 | 1 | -2/+5 |
|
|
* | [ 767645 ] correctly set the os.path.supports_unicode_filenames flag for OSX | Just van Rossum | 2003-07-11 | 1 | -1/+5 |
|
|
* | __setitem__: Use integer division for computing # of blocks. | Tim Peters | 2003-07-11 | 1 | -2/+2 |
|
|
* | Added a new randomized test. | Tim Peters | 2003-07-11 | 1 | -0/+28 |
|
|
* | Fixed a bug that's been there from the beginning but wasn't noticed | Just van Rossum | 2003-07-10 | 1 | -3/+3 |
|
|
* | don't optimize empty strings | Just van Rossum | 2003-07-10 | 1 | -1/+1 |
|
|
* | Fix wrong header name. The framework looks for auth_header. | Jeremy Hylton | 2003-07-10 | 1 | -8/+10 |
|
|
* | Extend the pwd & grp emulations to support accessing the pwd/grp | Andrew MacIntyre | 2003-07-10 | 2 | -4/+78 |
|
|
* | SF patch #768187: replace apply(f, args, kwds) with f(*args, **kwds) | Raymond Hettinger | 2003-07-09 | 10 | -16/+14 |
|
|
* | fix to work on python <= 2.1 | Gregory P. Smith | 2003-07-09 | 1 | -2/+2 |
|
|
* | bugfix: proper import bsddb exists below | Gregory P. Smith | 2003-07-09 | 1 | -1/+0 |
|
|
* | bsddb 4.1.6: | Gregory P. Smith | 2003-07-09 | 5 | -10/+174 |
|
|
* | SF Bug 767794 | Kurt B. Kaiser | 2003-07-09 | 1 | -0/+2 |
|
|
* | Fix SF bug 764095: Don't use network in test_httplib. | Jeremy Hylton | 2003-07-08 | 2 | -14/+35 |
|
|
* | Use Boolean values for the capturestderr flag. | Fred Drake | 2003-07-07 | 1 | -3/+3 |
|
|
* | Patch from Zooko to remove an experimental feature. | Jeremy Hylton | 2003-07-07 | 1 | -9/+4 |
|
|
* | New function sys.getcheckinterval(), to complement setcheckinterval(). | Tim Peters | 2003-07-06 | 1 | -2/+4 |
|
|
* | #765903: | Just van Rossum | 2003-07-04 | 1 | -5/+22 |
|
|
* | If a --python option is used to specify the Python to use in the #! | Jack Jansen | 2003-07-04 | 1 | -1/+4 |
|
|
* | Fixes bug of timezone value being left as -1 when ``time.tzname[0] == | Brett Cannon | 2003-07-03 | 2 | -7/+8 |
|
|
* | Addendum to #764548: restore 2.1 compatibility. | Just van Rossum | 2003-07-02 | 2 | -3/+9 |
|
|
* | Fix and test for bug #764548: | Just van Rossum | 2003-07-02 | 3 | -7/+17 |
|
|
* | fixed typo in comment | Just van Rossum | 2003-07-02 | 1 | -1/+1 |
|
|
* | On those systems lacking the AFMT_S16_NE symbol, the test was failing | Andrew MacIntyre | 2003-07-02 | 1 | -1/+1 |
|
|
* | SF #764121, docstring for spawnlp incorrect | Neal Norwitz | 2003-07-02 | 1 | -1/+1 |
|
|
* | Fix SF bug #763637, 2.3b2 unpack tuple of wrong size in after_cancel | Neal Norwitz | 2003-07-01 | 1 | -2/+4 |
|
|
* | - added (c)StringIO tests; cStringIO usage failed in the previous | Just van Rossum | 2003-07-01 | 1 | -0/+16 |
|
|
* | - replaced a couple of asserts with proper exceptions | Just van Rossum | 2003-07-01 | 1 | -4/+5 |
|
|
* | Make the classes exposed by threading.py new-style classes. This is | Tim Peters | 2003-07-01 | 1 | -3/+7 |
|
|
* | Resolved minor XXX question in the obvious way. | Tim Peters | 2003-07-01 | 1 | -1/+1 |
|
|
* | Fix SF bug #763023, difflib.py: ratio() zero division not caught | Neal Norwitz | 2003-07-01 | 2 | -3/+20 |
|
|
* | connector(): You can't use an empty string as an argument to connect() | Tim Peters | 2003-07-01 | 1 | -1/+1 |
|
|
* | Fix SF bug #763770, test_socket_ssl crash | Neal Norwitz | 2003-07-01 | 1 | -2/+2 |
|
|
* | Test Brett's addition of __all__ to Queue. | Raymond Hettinger | 2003-07-01 | 1 | -0/+1 |
|
|
* | Add __all__ . | Brett Cannon | 2003-07-01 | 1 | -0/+2 |
|
|
* | Fix SF #763362, test_posixpath failed | Neal Norwitz | 2003-07-01 | 1 | -4/+6 |
|
|