| Commit message (Expand) | Author | Age | Files | Lines |
* | OS/2 EMX has no popen2.Popen3 even though bunzip2 is available | Andrew MacIntyre | 2002-12-31 | 1 | -1/+1 |
|
|
* | add list of expected skips for the OS/2 EMX port | Andrew MacIntyre | 2002-12-31 | 1 | -0/+28 |
|
|
* | Make sure PrettyPrinter methods that mirror the module-level | Fred Drake | 2002-12-31 | 1 | -3/+27 |
|
|
* | Add a test that InterpolationError is constructed properly and raised | Fred Drake | 2002-12-31 | 1 | -2/+20 |
|
|
* | Updated the expected skips for MacOSX. | Jack Jansen | 2002-12-30 | 1 | -0/+3 |
|
|
* | Skip this test on MacOSX: the locale support is too minimal to make | Jack Jansen | 2002-12-30 | 1 | -1/+3 |
|
|
* | Brett Cannon's dummy_thread and dummy_threading modules (SF patch | Guido van Rossum | 2002-12-30 | 2 | -0/+237 |
|
|
* | PEP 302 + zipimport: | Just van Rossum | 2002-12-30 | 2 | -0/+384 |
|
|
* | Add some missing tests. Should now test everything that pybsddb's | Barry Warsaw | 2002-12-30 | 1 | -24/+32 |
|
|
* | A step on the way to making tzinfo classes writable by mortals: get rid | Tim Peters | 2002-12-30 | 1 | -17/+38 |
|
|
* | Match new sequence behavior. User defined types now behave better as and | Neil Schemenauer | 2002-12-30 | 1 | -2/+2 |
|
|
* | Added tests that conversion to our own timezone is always an identity, | Tim Peters | 2002-12-30 | 1 | -0/+13 |
|
|
* | Beefed up the timezone conversion test by adding a phony UTC zone that's | Tim Peters | 2002-12-30 | 1 | -67/+81 |
|
|
* | String tests should test 8-bit strings :-) | Marc-André Lemburg | 2002-12-30 | 1 | -1/+1 |
|
|
* | Last checkin was missing the tuple comma. | Raymond Hettinger | 2002-12-30 | 1 | -1/+1 |
|
|
* | Restore the test of the random module after including "Random" in the | Raymond Hettinger | 2002-12-30 | 1 | -1/+1 |
|
|
* | Temporarily comment out a test that crashes upon the introduction of | Raymond Hettinger | 2002-12-30 | 1 | -1/+1 |
|
|
* | This test depends on the exact ordering produced by the WichmannHill | Raymond Hettinger | 2002-12-30 | 1 | -3/+3 |
|
|
* | A start at non-trivial (== DST-aware) tests of timezone conversion. | Tim Peters | 2002-12-29 | 1 | -0/+152 |
|
|
* | SF patch 658251: Install a C implementation of the Mersenne Twister as the | Raymond Hettinger | 2002-12-29 | 1 | -14/+201 |
|
|
* | Patch for bug #659709: bogus computation of float length | Marc-André Lemburg | 2002-12-29 | 2 | -0/+51 |
|
|
* | Suppress unsafe *Cookie class warnings | Andrew M. Kuchling | 2002-12-29 | 1 | -0/+5 |
|
|
* | Make comparison and subtraction of aware objects ignore tzinfo if the | Tim Peters | 2002-12-27 | 1 | -8/+86 |
|
|
* | Also skip testHostnameRes() if gethostbyaddr() raises an exception. | Guido van Rossum | 2002-12-26 | 1 | -1/+5 |
|
|
* | Skip testHostnameRes() if gethostbyname() raises an exception. | Guido van Rossum | 2002-12-26 | 1 | -1/+5 |
|
|
* | Fix julian day problem with strptime. Note: XXX about using 0, suggestions? | Neal Norwitz | 2002-12-26 | 1 | -0/+12 |
|
|
* | Added tests to ensure that timetz comparison, and datetimetz | Tim Peters | 2002-12-26 | 1 | -9/+67 |
|
|
* | Implemented datetime.astimezone() and datetimetz.astimezone(). | Tim Peters | 2002-12-25 | 1 | -0/+53 |
|
|
* | Whitespace normalization. | Tim Peters | 2002-12-24 | 5 | -9/+8 |
|
|
* | Add test for SF #658106. Will backport. | Neal Norwitz | 2002-12-24 | 1 | -0/+4 |
|
|
* | Implemented .replace() methods for date, datetime, datetimetz, time and | Tim Peters | 2002-12-24 | 1 | -0/+150 |
|
|
* | Don't rebind True and False. | Tim Peters | 2002-12-23 | 1 | -5/+5 |
|
|
* | I give up: unless I write my own strftime by hand, datetime just can't | Tim Peters | 2002-12-22 | 1 | -0/+6 |
|
|
* | Implemented a Wiki suggestion: | Tim Peters | 2002-12-22 | 1 | -71/+118 |
|
|
* | Added test to ensure that non-string result from dst() raises TypeError. | Tim Peters | 2002-12-21 | 1 | -0/+6 |
|
|
* | Changes sufficient so that pickles written by the Python implementation | Tim Peters | 2002-12-21 | 1 | -9/+15 |
|
|
* | format_utcoffset(): The natural type of the buflen arg is size_t, so | Tim Peters | 2002-12-20 | 1 | -9/+16 |
|
|
* | Expand log() tests to include long integers. | Raymond Hettinger | 2002-12-18 | 1 | -0/+2 |
|
|
* | This is Richie Hindle's patch | Michael W. Hudson | 2002-12-17 | 1 | -0/+289 |
|
|
* | Made this a little more compatible w/ the sandbox version, which is | Tim Peters | 2002-12-16 | 1 | -2/+2 |
|
|
* | datetime escapes the sandbox. The Windows build is all set. I leave it | Tim Peters | 2002-12-16 | 1 | -0/+2128 |
|
|
* | Apply SF patch 652930: Add optional base argument to math.log(x[, base]). | Raymond Hettinger | 2002-12-14 | 1 | -0/+1 |
|
|
* | Tighten the tests for assignment to __bases__: disallow empty tuple. | Guido van Rossum | 2002-12-13 | 1 | -0/+8 |
|
|
* | Patch #536661: Improve performance of splitext. Add test_macpath. | Martin v. Löwis | 2002-12-12 | 3 | -0/+79 |
|
|
* | Patch #650653: Raise always value error if the table is not 256 bytes long. | Martin v. Löwis | 2002-12-12 | 1 | -0/+2 |
|
|
* | Change issubclass() so that recursive tuples (directly or indirectly | Walter Dörwald | 2002-12-12 | 1 | -1/+18 |
|
|
* | Patch #551960: Add check for setrlimit() support | Jason Tishler | 2002-12-12 | 1 | -4/+12 |
|
|
* | Enhance issubclass() and PyObject_IsSubclass() so that a tuple is | Walter Dörwald | 2002-12-12 | 1 | -0/+9 |
|
|
* | Clean-up test class for DictMixin. | Raymond Hettinger | 2002-12-11 | 1 | -2/+6 |
|
|
* | Added test_ossaudiodev to expected skips on Windows. | Tim Peters | 2002-12-10 | 1 | -0/+1 |
|
|