diff options
author | Benjamin Peterson <benjamin@python.org> | 2016-09-19 01:12:21 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2016-09-19 01:12:21 (GMT) |
commit | ac965ca16c59308fdafbeff9e36dfaf06505a512 (patch) | |
tree | 52f3e070857632405fff16657627ba2fe3f527eb /Modules/_datetimemodule.c | |
parent | 41e35f37edf760898f9c440ac17a4c542c9d88a1 (diff) | |
download | cpython-ac965ca16c59308fdafbeff9e36dfaf06505a512.zip cpython-ac965ca16c59308fdafbeff9e36dfaf06505a512.tar.gz cpython-ac965ca16c59308fdafbeff9e36dfaf06505a512.tar.bz2 |
stop using Py_LL and Py_ULL
Diffstat (limited to 'Modules/_datetimemodule.c')
-rw-r--r-- | Modules/_datetimemodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/_datetimemodule.c b/Modules/_datetimemodule.c index 381835d..1a63a01 100644 --- a/Modules/_datetimemodule.c +++ b/Modules/_datetimemodule.c @@ -4206,7 +4206,7 @@ typedef struct tm *(*TM_FUNC)(const time_t *timer, struct tm*); * 23 hours at 1969-09-30 13:00:00 in Kwajalein. */ static long long max_fold_seconds = 24 * 3600; /* NB: date(1970,1,1).toordinal() == 719163 */ -static long long epoch = Py_LL(719163) * 24 * 60 * 60; +static long long epoch = 719163LL * 24 * 60 * 60; static long long utc_to_seconds(int year, int month, int day, |