summaryrefslogtreecommitdiff
path: root/Modules/_time.h
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@wyplay.com>2012-03-13 13:35:55 +0100
committerVictor Stinner <vstinner@wyplay.com>2012-03-13 13:35:55 +0100
commit5d272cc6a28f3600a6c5ab3ea0ceea94f2285f35 (patch)
tree13726571347da753ab494dc42cff7055d1bc96a2 /Modules/_time.h
parent3cac309939378f806daa3459afde0908267b070a (diff)
downloadcpython-git-5d272cc6a28f3600a6c5ab3ea0ceea94f2285f35.tar.gz
Close #14180: Factorize code to convert a number of seconds to time_t, timeval or timespec
time.ctime(), gmtime(), time.localtime(), datetime.date.fromtimestamp(), datetime.datetime.fromtimestamp() and datetime.datetime.utcfromtimestamp() now raises an OverflowError, instead of a ValueError, if the timestamp does not fit in time_t. datetime.datetime.fromtimestamp() and datetime.datetime.utcfromtimestamp() now round microseconds towards zero instead of rounding to nearest with ties going away from zero.
Diffstat (limited to 'Modules/_time.h')
-rw-r--r--Modules/_time.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/Modules/_time.h b/Modules/_time.h
deleted file mode 100644
index 816593b03f..0000000000
--- a/Modules/_time.h
+++ /dev/null
@@ -1,3 +0,0 @@
-/* XXX: It is probably best to move timefuncs.h content in here, and
- remove it but user code may rely on it. */
-#include "timefuncs.h"