summaryrefslogtreecommitdiff
path: root/Modules/datetimemodule.c
Commit message (Expand)AuthorAgeFilesLines
* Rename PyUnicode_AsString -> _PyUnicode_AsString andMarc-André Lemburg2008-08-071-2/+2
* Merged revisions 64114 via svnmerge fromAmaury Forgeot d'Arc2008-06-181-0/+7
* Remove nb_reserved (nb_coerce), nb_hex, and nb_oct from PyNumberMethodsBenjamin Peterson2008-06-111-3/+0
* Implement PEP 3121: new module initialization and finalization API.Martin v. Löwis2008-06-111-24/+37
* Merged revisions 63562,63570,63728,63734,63784,63788,63802,63817,63827,63839,...Georg Brandl2008-06-101-11/+12
* Renamed PyString to PyBytesChristian Heimes2008-05-261-29/+29
* Issue #1950: Fixed misusage of PyUnicode_AsString().Alexandre Vassalotti2008-05-031-2/+1
* Merged revisions 61431,61433-61436,61439,61444,61449-61450,61453,61458,61465,...Christian Heimes2008-03-181-1/+1
* Fix datetime_strptime following svnmerge from trunk; it wasMark Dickinson2008-03-161-1/+1
* Merged revisions 61239-61249,61252-61257,61260-61264,61269-61275,61278-61279,...Christian Heimes2008-03-161-21/+80
* Fixes for shared 2.6 code that implements PEP 3101, advanced stringEric Smith2008-02-171-16/+1
* Merged revisions 59666-59679 via svnmerge fromChristian Heimes2008-01-031-4/+4
* #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT.Christian Heimes2007-12-191-23/+23
* Remove PyInt_CheckExact. Add PyLong_AsLongAndOverflow.Martin v. Löwis2007-12-041-3/+6
* Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases i...Christian Heimes2007-12-021-26/+26
* Use PyString instead of PyBytes in wrap_strftime().Walter Dörwald2007-11-221-10/+10
* Rename buffer -> bytearray.Guido van Rossum2007-11-211-18/+18
* Replace PyObject_Unicode with PyObject_Str everywhere, and remove theThomas Heller2007-11-151-2/+2
* Change a variable to Py_ssize_t to silence a compiler warning (and because itBrett Cannon2007-11-061-1/+1
* Merging the py3k-pep3137 branch back into the py3k branch.Guido van Rossum2007-11-061-13/+7
* Remove more cruft leftover from nb_coerce. Rename nb_coerce toNeil Schemenauer2007-09-211-1/+1
* Added __format__ method to datetime.datetime, datetime.date, and datetime.time.Eric Smith2007-09-111-0/+36
* Remove checking redundantly for checks of PyInt and PyLong.Neal Norwitz2007-08-311-5/+5
* Use the correct type for variables corresponding to 'u' formats.Guido van Rossum2007-08-291-1/+1
* Fix some refleaks (and format/error checking)Neal Norwitz2007-08-271-9/+13
* Fixes by Ero Carrera to remove PyString_. I had to massage a few problems away.Guido van Rossum2007-08-241-54/+74
* Get rid of some dead code and unneeded XXX comments by Neal.Guido van Rossum2007-08-161-6/+1
* Fix the refleak in strftime when converting a %Z with a user defined tzinfo.Neal Norwitz2007-08-121-32/+39
* Fix refcount bug in make_Zreplacement().Guido van Rossum2007-08-101-0/+1
* Fix merge breakage.Martin v. Löwis2007-07-211-6/+6
* Merged revisions 56467-56482 via svnmerge fromMartin v. Löwis2007-07-211-26/+21
* Change Py_BuildValue to generate Unicode objects forMartin v. Löwis2007-07-181-23/+27
* Revert r56044 (which changed the %c format specifier to accept aWalter Dörwald2007-07-011-1/+1
* Change %c format specifier for PyArg_ParseTuple() so that it acceptsWalter Dörwald2007-06-201-1/+1
* Change timedelta.__str__() to return a unicode object.Walter Dörwald2007-05-311-36/+19
* Change isoformat() methods to return unicode strings.Walter Dörwald2007-05-311-48/+32
* Change format_ctime() to return unicode (i.e.Walter Dörwald2007-05-311-6/+4
* Refactor to avoid ultra-deeply-nested code.Guido van Rossum2007-05-231-36/+53
* Fix datetime and its test.Guido van Rossum2007-05-231-8/+21
* Simplify append_keyword_tzinfo() by usingWalter Dörwald2007-05-231-10/+2
* Merged revisions 55407-55513 via svnmerge fromGuido van Rossum2007-05-221-9/+9
* Remove unused variables.Walter Dörwald2007-05-201-1/+0
* Add a format specifier %R to PyUnicode_FromFormat(), which embedsWalter Dörwald2007-05-191-30/+20
* Add functions PyUnicode_Append() and PyUnicode_AppendAndDel() that mirrorWalter Dörwald2007-05-181-13/+13
* Merged revisions 55325-55327 via svnmerge fromGuido van Rossum2007-05-141-0/+2
* Fix some miscellaneous places that incorrectly insisted on str8.Guido van Rossum2007-05-101-9/+13
* Merged revisions 53952-54987 via svnmerge fromGuido van Rossum2007-04-271-0/+6
* Merged revisions 53623-53858 via svnmerge fromThomas Wouters2007-02-231-2/+2
* Merged the int/long unification branch, by very crude means (sorry Thomas!).Guido van Rossum2007-01-141-5/+2
* Four months of trunk changes (including a few releases...)Thomas Wouters2006-12-131-2/+2