| Commit message (Expand) | Author | Age | Files | Lines |
* | Updated the astimezone() proof to recover from all the last week's | Tim Peters | 2003-01-24 | 1 | -77/+94 |
|
|
* | Fix typo | Neal Norwitz | 2003-01-23 | 1 | -1/+1 |
|
|
* | SF bug 660872: datetimetz constructors behave counterintuitively (2.3a1). | Tim Peters | 2003-01-23 | 1 | -12/+20 |
|
|
* | Reimplemented datetime.now() to be useful. | Tim Peters | 2003-01-23 | 1 | -7/+17 |
|
|
* | fromutc(): Repair incorrect failure return, as noted by NealN. Thanks! | Tim Peters | 2003-01-23 | 1 | -1/+1 |
|
|
* | Bringing the code and test suite into line with doc and NEWS changes | Tim Peters | 2003-01-23 | 1 | -92/+127 |
|
|
* | Convert booleans to integers in IntVar.set. Fixes #671741. | Martin v. Löwis | 2003-01-22 | 1 | -1/+3 |
|
|
* | Avoid usage of PyDoc_STR in 2.2 compatibility code. | Martin v. Löwis | 2003-01-21 | 1 | -1/+1 |
|
|
* | Conditionalize features not found in PyXML 1.95.2. | Martin v. Löwis | 2003-01-21 | 1 | -0/+15 |
|
|
* | Merge with PyXML 1.71: | Martin v. Löwis | 2003-01-21 | 1 | -16/+136 |
|
|
* | New rule for tzinfo subclasses handling both standard and daylight time: | Tim Peters | 2003-01-20 | 1 | -21/+3 |
|
|
* | SF # 669553, fix memory (ref) leaks | Neal Norwitz | 2003-01-19 | 1 | -13/+25 |
|
|
* | Windows flavor of floatsleep(): folded long lines, introduced a temp | Tim Peters | 2003-01-19 | 1 | -12/+17 |
|
|
* | SF patch #670423: Add missing identity tests to operator.c | Raymond Hettinger | 2003-01-18 | 1 | -0/+24 |
|
|
* | When time.localtime() is passed a tick count the platform C localtime() | Tim Peters | 2003-01-17 | 1 | -1/+1 |
|
|
* | bugfix: do not double-close DB cursor during deallocation when the | Gregory P. Smith | 2003-01-17 | 1 | -1/+3 |
|
|
* | bugfix: allow the module to work with python compiled without thread support. | Gregory P. Smith | 2003-01-17 | 1 | -0/+2 |
|
|
* | bugfix: disallow use of DB_TXN after commit() or abort(), prevents a | Gregory P. Smith | 2003-01-17 | 1 | -5/+37 |
|
|
* | Got rid of the internal datetimetz type. | Tim Peters | 2003-01-11 | 1 | -1004/+635 |
|
|
* | Minor fiddling to make the next part easier. Introduced an internal | Tim Peters | 2003-01-11 | 1 | -17/+20 |
|
|
* | Get build working on Redhat 7.2 linux 2.4.7 | Neal Norwitz | 2003-01-10 | 1 | -0/+4 |
|
|
* | SF #665913, Fix mmap module core dump with unix | Neal Norwitz | 2003-01-10 | 1 | -2/+4 |
|
|
* | Get rid of compiler warnings | Neal Norwitz | 2003-01-10 | 2 | -19/+19 |
|
|
* | Got rid of the timetz type entirely. This was a bit trickier than I | Tim Peters | 2003-01-10 | 1 | -476/+336 |
|
|
* | Removed more now-pointless pickle code. | Tim Peters | 2003-01-10 | 1 | -93/+34 |
|
|
* | Deleted pickle/unpickle code for the old datetime and time classes -- it's | Tim Peters | 2003-01-08 | 1 | -160/+0 |
|
|
* | Utterly minimal changes to collapse datetimetz into datetime, and timetz | Tim Peters | 2003-01-08 | 1 | -17/+10 |
|
|
* | Added a couple of casts to make this compile with CodeWarrior. | Jack Jansen | 2003-01-08 | 1 | -3/+3 |
|
|
* | all_ins(): EX_OK and friends, constants from sysexits.h | Barry Warsaw | 2003-01-07 | 1 | -0/+57 |
|
|
* | Fix from Michael Stone for SF bug #660476 and #513033 (bogus thread | Guido van Rossum | 2003-01-07 | 1 | -13/+7 |
|
|
* | A few more whitespace normalizations. | Guido van Rossum | 2003-01-07 | 1 | -1/+4 |
|
|
* | Various cleanups: | Guido van Rossum | 2003-01-07 | 1 | -45/+80 |
|
|
* | SF patch #662433: Fill arraymodule's tp_iter and sq_contains slots | Raymond Hettinger | 2003-01-07 | 1 | -2/+121 |
|
|
* | Patch #661760: Cygwin auto-import module patch | Jason Tishler | 2003-01-06 | 7 | -59/+28 |
|
|
* | datetime_from_timet_and_us(): ignore leap seconds if the platform | Tim Peters | 2003-01-04 | 1 | -1/+10 |
|
|
* | Fix typo. | Martin v. Löwis | 2003-01-04 | 1 | -1/+1 |
|
|
* | Remove appartment check from dooneevent. Fixes #660961. | Martin v. Löwis | 2003-01-04 | 1 | -6/+17 |
|
|
* | A new implementation of astimezone() that does what we agreed on in all | Tim Peters | 2003-01-04 | 1 | -41/+35 |
|
|
* | Fix compiler warning | Neal Norwitz | 2003-01-04 | 1 | -1/+1 |
|
|
* | Wrap doc strings in PyDoc_STRVAR. Fix .string docstring. Provide default | Martin v. Löwis | 2003-01-04 | 1 | -3/+21 |
|
|
* | Completed astimezone()'s correctness proof. This also proves we can get | Tim Peters | 2003-01-04 | 1 | -4/+53 |
|
|
* | Convert Tcl path objects to strings. Fixes #661357. | Martin v. Löwis | 2003-01-04 | 1 | -1/+64 |
|
|
* | Fix for bug #661136 | Just van Rossum | 2003-01-03 | 1 | -12/+14 |
|
|
* | SF patch 660559: Use METH_O and METH_NOARGS where possible | Raymond Hettinger | 2003-01-03 | 3 | -117/+70 |
|
|
* | The tzinfo methods utcoffset() and dst() must return a timedelta object | Tim Peters | 2003-01-02 | 1 | -22/+14 |
|
|
* | astimezone() internals: if utcoffset() returns a duration, complain if | Tim Peters | 2003-01-02 | 1 | -1/+5 |
|
|
* | The astimezone() correctness proof endured much pain to prove what | Tim Peters | 2003-01-02 | 1 | -70/+43 |
|
|
* | SF bug 661086: datetime.today() truncates microseconds. | Tim Peters | 2003-01-02 | 1 | -7/+16 |
|
|
* | Ugh, zipimport is virtually broken in 2.3a1 :-( It worked by accident in | Just van Rossum | 2003-01-02 | 1 | -1/+1 |
|
|
* | OS/2 sockets do not support AF_UNIX, even though EMX headers define it | Andrew MacIntyre | 2003-01-02 | 1 | -4/+4 |
|
|