index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Modules
/
timemodule.c
Commit message (
Expand
)
Author
Age
Files
Lines
*
Patch #623780: Replace obsolete struct macros.
Martin v. Löwis
2002-10-16
1
-2/+2
*
Excise DL_EXPORT/DL_IMPORT from Modules/*. Required adding a prototype
Mark Hammond
2002-08-02
1
-1/+1
*
Patch to call the Pure python strptime implementation if there's no
Guido van Rossum
2002-07-19
1
-3/+18
*
Fix bug 581232 - [Windows] Can not interrupt time.sleep()
Mark Hammond
2002-07-16
1
-3/+46
*
Patch #569753: Remove support for WIN16.
Martin v. Löwis
2002-06-30
1
-40/+8
*
Patch #568124: Add doc string macros.
Martin v. Löwis
2002-06-13
1
-23/+23
*
Got rid of ifdefs for long-obsolete GUSI versions.
Jack Jansen
2002-04-11
1
-16/+0
*
Remove all but one use of the module dict.
Fred Drake
2002-04-01
1
-44/+38
*
Update docstrings to use te attribute names of the new structures returned
Fred Drake
2002-03-12
1
-2/+3
*
OS/2 EMX port changes (Modules part of patch #450267):
Andrew MacIntyre
2002-03-03
1
-1/+7
*
Windows time_clock(): rewrite to get rid of horrid casting tricks.
Tim Peters
2002-02-13
1
-12/+10
*
Ensure we also build on VC7. Involves replacing largeint.h helper functions ...
Mark Hammond
2002-02-12
1
-21/+17
*
Patch #504225: add plan9 ifdef to timemodule floatsleep.
Martin v. Löwis
2002-01-16
1
-23/+25
*
Include <unistd.h> in Python.h. Fixes #500924.
Martin v. Löwis
2002-01-12
1
-4/+0
*
Patch supplied by Burton Radons for his own SF bug #487390: Modifying
Guido van Rossum
2001-12-08
1
-1/+1
*
Patch #481718: Time module doc string changes.
Martin v. Löwis
2001-12-02
1
-2/+4
*
SF patch #474590 -- RISC OS support
Guido van Rossum
2001-10-24
1
-2/+0
*
SF patch #462296: Add attributes to os.stat results; by Nick Mathewson.
Guido van Rossum
2001-10-18
1
-10/+49
*
SF patch #459385 (Norman Vine): time.timezone fix for Cygwin.
Guido van Rossum
2001-09-25
1
-19/+19
*
make the gettmarg error message more correct by making it more vague ;-)
Skip Montanaro
2001-08-22
1
-1/+1
*
Add -E command line switch (ignore environment variables like PYTHONHOME
Neil Schemenauer
2001-07-23
1
-1/+1
*
SF patch #418147 Fixes to allow compiling w/ Borland, from Stephen Hansen.
Tim Peters
2001-05-14
1
-3/+5
*
Updated version of RISCOS support. SF patch 411213 by Dietmar Schwertberger
Guido van Rossum
2001-04-10
1
-2/+10
*
SF patch 407758, "timemodule patches for Cygwin", from Norman Vine.
Tim Peters
2001-03-20
1
-0/+7
*
Use Py_CHARMASK for ctype macros. Fixes bug #232787.
Martin v. Löwis
2001-03-06
1
-1/+1
*
Fix typo in RISCOS patch inside MS #ifdef. (Probably my own fingers.)
Guido van Rossum
2001-03-02
1
-1/+1
*
RISCOS changes by dschwertberger.
Guido van Rossum
2001-03-02
1
-1/+5
*
Make the 'time' argument to the timemodule functions strftime, asctime,
Thomas Wouters
2001-01-19
1
-30/+54
*
The Mac C library (MSL from CodeWarrior 6) and I/O library (GUSI
Jack Jansen
2000-12-12
1
-2/+2
*
REMOVED all CWI, CNRI and BeOpen copyright markings.
Guido van Rossum
2000-09-01
1
-9/+0
*
Do the absolute minimal amount of modifications to eradicate
Barry Warsaw
2000-09-01
1
-8/+7
*
Chris Herborth <chrish@pobox.com>:
Fred Drake
2000-08-15
1
-4/+1
*
Use METH_OLDARGS instead of numeric constant 0 in method def. tables
Andrew M. Kuchling
2000-08-03
1
-6/+6
*
Use METH_VARARGS instead of numeric constant 1 in method def. tables
Andrew M. Kuchling
2000-08-03
1
-4/+4
*
merge Include/my*.h into Include/pyport.h
Peter Schneider-Kamp
2000-07-31
1
-10/+0
*
Use 'void' directly instead of the ANY #define, now that all code is ANSI C.
Thomas Wouters
2000-07-25
1
-3/+3
*
Fix floattime prototype ((void), not (double))
Thomas Wouters
2000-07-24
1
-1/+1
*
ANSIfy some more forward declarations.
Thomas Wouters
2000-07-24
1
-1/+1
*
ANSIfy yet another hidden function definition.
Thomas Wouters
2000-07-24
1
-5/+0
*
Even more ANSIfication: fix as many function pointers and declarations as
Thomas Wouters
2000-07-22
1
-2/+3
*
Bunch of minor ANSIfications: 'void initfunc()' -> 'void initfunc(void)',
Thomas Wouters
2000-07-21
1
-3/+3
*
ANSI-fication
Peter Schneider-Kamp
2000-07-10
1
-45/+15
*
Nuke all remaining occurrences of Py_PROTO and Py_FPROTO.
Tim Peters
2000-07-09
1
-5/+5
*
Mac only: two epoch problem workarounds are no longer needed for GUSI
Jack Jansen
2000-07-03
1
-2/+2
*
Change copyright notice - 2nd try.
Guido van Rossum
2000-06-30
1
-6/+0
*
Change copyright notice.
Guido van Rossum
2000-06-30
1
-22/+7
*
Trent Mick <trentm@activestate.com>:
Fred Drake
2000-06-29
1
-4/+11
*
Trent Mick <trentm@activestate.com>:
Fred Drake
2000-06-29
1
-5/+6
*
Trent Mick: use size_t instead of int where appropriate (time_strftime()).
Guido van Rossum
2000-06-28
1
-2/+2
*
M.-A. Lemburg <mal@lemburg.com>:
Fred Drake
2000-05-09
1
-1/+4
[next]