summaryrefslogtreecommitdiffstats
path: root/Modules/timemodule.c
Commit message (Expand)AuthorAgeFilesLines
* REMOVED all CWI, CNRI and BeOpen copyright markings.Guido van Rossum2000-09-011-9/+0
* Do the absolute minimal amount of modifications to eradicateBarry Warsaw2000-09-011-8/+7
* Chris Herborth <chrish@pobox.com>:Fred Drake2000-08-151-4/+1
* Use METH_OLDARGS instead of numeric constant 0 in method def. tablesAndrew M. Kuchling2000-08-031-6/+6
* Use METH_VARARGS instead of numeric constant 1 in method def. tablesAndrew M. Kuchling2000-08-031-4/+4
* merge Include/my*.h into Include/pyport.hPeter Schneider-Kamp2000-07-311-10/+0
* Use 'void' directly instead of the ANY #define, now that all code is ANSI C.Thomas Wouters2000-07-251-3/+3
* Fix floattime prototype ((void), not (double))Thomas Wouters2000-07-241-1/+1
* ANSIfy some more forward declarations.Thomas Wouters2000-07-241-1/+1
* ANSIfy yet another hidden function definition.Thomas Wouters2000-07-241-5/+0
* Even more ANSIfication: fix as many function pointers and declarations asThomas Wouters2000-07-221-2/+3
* Bunch of minor ANSIfications: 'void initfunc()' -> 'void initfunc(void)',Thomas Wouters2000-07-211-3/+3
* ANSI-ficationPeter Schneider-Kamp2000-07-101-45/+15
* Nuke all remaining occurrences of Py_PROTO and Py_FPROTO.Tim Peters2000-07-091-5/+5
* Mac only: two epoch problem workarounds are no longer needed for GUSIJack Jansen2000-07-031-2/+2
* Change copyright notice - 2nd try.Guido van Rossum2000-06-301-6/+0
* Change copyright notice.Guido van Rossum2000-06-301-22/+7
* Trent Mick <trentm@activestate.com>:Fred Drake2000-06-291-4/+11
* Trent Mick <trentm@activestate.com>:Fred Drake2000-06-291-5/+6
* Trent Mick: use size_t instead of int where appropriate (time_strftime()).Guido van Rossum2000-06-281-2/+2
* M.-A. Lemburg <mal@lemburg.com>:Fred Drake2000-05-091-1/+4
* Jack Jansen:Guido van Rossum2000-04-261-0/+17
* Fix probable bug; if errno == EINTR, floatsleep() doesn't break out ofAndrew M. Kuchling2000-03-241-1/+1
* Fix bogus error reporting on strptime: let PyArg_ParseTuple set exception.Jeremy Hylton2000-03-141-5/+4
* Massive patch by Skip Montanaro to add ":name" to as manyGuido van Rossum2000-02-291-4/+4
* The functions asctime() and mktime() are documented to take a 9-tupleGuido van Rossum2000-01-121-4/+10
* Jack Jansen: Mac has no EINTR.Guido van Rossum1999-11-081-0/+4
* In floatsleep(), when using select(), ignore EINTR error.Guido van Rossum1999-08-191-2/+4
* Apparently __GNU_LIBRARY__ is defined for glibc as well as for libc5.Guido van Rossum1999-04-231-3/+3
* Jonathan Giddy notes, and Chris Lawrence agrees, that some comments onGuido van Rossum1999-04-051-3/+3
* #$@%! Forgot to remove a #error directive used for testing. Sorry.Guido van Rossum1999-03-291-1/+0
* Chris Lawrence writes:Guido van Rossum1999-03-291-18/+28
* Patch by Chris Herborth for BeOS code.Guido van Rossum1999-03-091-14/+8
* Patch by Tadayoshi Funaba (with some changes) to be smarter aboutGuido van Rossum1999-02-231-6/+12
* We don't support leap seconds, so the seconds field of a time 9-tupleGuido van Rossum1999-02-221-1/+1
* The doc string for strptime had the arguments reversed -- the stringGuido van Rossum1999-01-071-1/+1
* Get rid of the strptype() declaration -- on some BSD systems, it's aGuido van Rossum1999-01-031-1/+1
* Add DL_EXPORT() to all modules that could possibly be usedGuido van Rossum1998-12-041-1/+1
* Make gcc -Wall happy:Guido van Rossum1998-10-071-6/+8
* Fixes for OS/2 by Jeff Rush.Guido van Rossum1998-09-281-9/+9
* Y2K fix affecting asctime(), mktime(), strftime().Guido van Rossum1998-08-251-19/+37
* Changes for BeOS, QNX and long long, by Chris Herborth.Guido van Rossum1998-08-041-4/+38
* Added doc strings.Guido van Rossum1998-06-271-11/+114
* Added strptime, if it exists. Modified after a patch by Jesse Hallio.Guido van Rossum1998-06-091-10/+53
* Instead of calling mktime(), which has all sorts of unwanted sideGuido van Rossum1998-04-271-6/+2
* Check for HAVE_MKTIME (if you don't have it, some tests will fail, butGuido van Rossum1998-03-061-0/+9
* Raise ValueError: "unconvertible time" when ctime() returns NULL,Guido van Rossum1998-03-031-0/+4
* At Jeff Rush' request, add Py_BEGIN/END_ALLOW_THREADS around call toGuido van Rossum1997-12-291-0/+3
* (1) call mktime() just before strftime(); it normalizes the buffer andGuido van Rossum1997-12-081-0/+8
* Patch for QNX, by Chris Herborth.Guido van Rossum1997-12-021-5/+5