summaryrefslogtreecommitdiffstats
path: root/Modules/timemodule.c
Commit message (Expand)AuthorAgeFilesLines
* Merged revisions 59595-59604 via svnmerge fromChristian Heimes2007-12-281-2/+3
* #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT.Christian Heimes2007-12-191-1/+1
* Remove PyInt_CheckExact. Add PyLong_AsLongAndOverflow.Martin v. Löwis2007-12-041-2/+2
* Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases i...Christian Heimes2007-12-021-2/+2
* Patch #1314 by Christian Heimes.Guido van Rossum2007-10-231-3/+2
* Move definition of TZNAME_ENCODING further up.Martin v. Löwis2007-08-301-2/+2
* Explicitly convert tzname to Unicode. Fixes #1040.Martin v. Löwis2007-08-301-2/+7
* Reorder code and decls so it's compilable with gcc 2.96 (C89).Guido van Rossum2007-08-251-1/+2
* Remove PyArg_Parse usage from time module. (An extra set of eyeballs onSkip Montanaro2007-08-241-10/+51
* Patch by Ero Carrera to get rid of PyString in timemodule.c.Guido van Rossum2007-08-241-3/+10
* Remove support for BeOSSkip Montanaro2007-08-171-24/+1
* Remove RISCOS supportSkip Montanaro2007-08-161-12/+0
* Change time.strftime() to return a unicode string.Walter Dörwald2007-05-311-5/+4
* Merged revisions 53952-54987 via svnmerge fromGuido van Rossum2007-04-271-1/+2
* Merged the int/long unification branch, by very crude means (sorry Thomas!).Guido van Rossum2007-01-141-1/+1
* Merged revisions 53005-53303 via svnmerge fromThomas Wouters2007-01-091-1/+1
* Merged revisions 46753-51188 via svnmerge fromThomas Wouters2006-08-111-4/+38
* Partially merge trunk into p3yk. The removal of Mac/Tools is confusing svnThomas Wouters2006-06-081-24/+11
* Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk.Thomas Wouters2006-05-271-9/+21
* Merge p3yk branch with the trunk up to revision 45595. This breaks a fairThomas Wouters2006-04-211-2/+7
* Check return result from Py_InitModule*(). This API can fail.Neal Norwitz2006-01-191-0/+2
* allow ctime(), gmtime(), and localtime() to take None as equivalent to an omi...Fred Drake2004-08-031-9/+30
* Fix SF #994580, typo in time.tzsets docstring. Backport candidateNeal Norwitz2004-07-201-1/+1
* Bug 975996: Add _PyTime_DoubleToTimet to C APITim Peters2004-06-201-7/+5
* Raise ValueError when value being stored in a time_t variable will result inBrett Cannon2004-06-191-5/+40
* Have strftime() check its time tuple argument to make sure the tuple's valuesBrett Cannon2004-03-021-0/+42
* Getting rid of all the code inside #ifdef macintosh too.Jack Jansen2003-11-201-56/+0
* Make temporary change of using _strptime for time.strptime permanent.Brett Cannon2003-07-011-41/+1
* Patch #734231: Update RiscOS support. In particular, correctMartin v. Löwis2003-05-101-1/+5
* SF patch #718867: Fix reference leak for time.strptimeRaymond Hettinger2003-04-101-1/+4
* - New function time.tzset() provides access to the C library tzet()Guido van Rossum2003-03-141-74/+144
* Windows flavor of floatsleep(): folded long lines, introduced a tempTim Peters2003-01-191-12/+17
* When time.localtime() is passed a tick count the platform C localtime()Tim Peters2003-01-171-1/+1
* Patch #623780: Replace obsolete struct macros.Martin v. Löwis2002-10-161-2/+2
* Excise DL_EXPORT/DL_IMPORT from Modules/*. Required adding a prototypeMark Hammond2002-08-021-1/+1
* Patch to call the Pure python strptime implementation if there's noGuido van Rossum2002-07-191-3/+18
* Fix bug 581232 - [Windows] Can not interrupt time.sleep()Mark Hammond2002-07-161-3/+46
* Patch #569753: Remove support for WIN16.Martin v. Löwis2002-06-301-40/+8
* Patch #568124: Add doc string macros.Martin v. Löwis2002-06-131-23/+23
* Got rid of ifdefs for long-obsolete GUSI versions.Jack Jansen2002-04-111-16/+0
* Remove all but one use of the module dict.Fred Drake2002-04-011-44/+38
* Update docstrings to use te attribute names of the new structures returnedFred Drake2002-03-121-2/+3
* OS/2 EMX port changes (Modules part of patch #450267):Andrew MacIntyre2002-03-031-1/+7
* Windows time_clock(): rewrite to get rid of horrid casting tricks.Tim Peters2002-02-131-12/+10
* Ensure we also build on VC7. Involves replacing largeint.h helper functions ...Mark Hammond2002-02-121-21/+17
* Patch #504225: add plan9 ifdef to timemodule floatsleep.Martin v. Löwis2002-01-161-23/+25
* Include <unistd.h> in Python.h. Fixes #500924.Martin v. Löwis2002-01-121-4/+0
* Patch supplied by Burton Radons for his own SF bug #487390: ModifyingGuido van Rossum2001-12-081-1/+1
* Patch #481718: Time module doc string changes.Martin v. Löwis2001-12-021-2/+4
* SF patch #474590 -- RISC OS supportGuido van Rossum2001-10-241-2/+0