From: Neal Norwitz Date: Thu, 19 Dec 2002 02:30:56 +0000 (+0000) Subject: Fix another long vs int mismatch. test_datetime now passes on alpha X-Git-Tag: v2.3c1~2957 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=dfb808676098bbb711e98ef3388c30c3eb6f0c39;p=thirdparty%2FPython%2Fcpython.git Fix another long vs int mismatch. test_datetime now passes on alpha --- diff --git a/Modules/datetimemodule.c b/Modules/datetimemodule.c index b445284971c2..3aab3adf1152 100644 --- a/Modules/datetimemodule.c +++ b/Modules/datetimemodule.c @@ -1908,13 +1908,13 @@ delta_reduce(PyDateTime_Delta* self) #define OFFSET(field) offsetof(PyDateTime_Delta, field) static PyMemberDef delta_members[] = { - {"days", T_LONG, OFFSET(days), READONLY, + {"days", T_INT, OFFSET(days), READONLY, PyDoc_STR("Number of days.")}, - {"seconds", T_LONG, OFFSET(seconds), READONLY, + {"seconds", T_INT, OFFSET(seconds), READONLY, PyDoc_STR("Number of seconds (>= 0 and less than 1 day).")}, - {"microseconds", T_LONG, OFFSET(microseconds), READONLY, + {"microseconds", T_INT, OFFSET(microseconds), READONLY, PyDoc_STR("Number of microseconds (>= 0 and less than 1 second).")}, {NULL} };