commit | 2276885acda0a74875cf02c5459c05e67b986f97 | [log] [tgz] |
---|---|---|
author | Martin v. Löwis <martin@v.loewis.de> | Sat Jun 09 08:01:33 2007 +0000 |
committer | Martin v. Löwis <martin@v.loewis.de> | Sat Jun 09 08:01:33 2007 +0000 |
tree | 2a5304e0663e66f4bae4860bf5a8e711fd529930 | |
parent | 66e64e2b6a837bcd95c29a2173d065fdc91f0581 [diff] [blame] |
Patch #1733960: Allow T_LONGLONG to accept ints.
diff --git a/Include/pyport.h b/Include/pyport.h index 6fe3f0b..8c8b0f7 100644 --- a/Include/pyport.h +++ b/Include/pyport.h
@@ -61,6 +61,9 @@ #ifdef HAVE_LONG_LONG #ifndef PY_LONG_LONG #define PY_LONG_LONG long long +#define PY_LLONG_MIN LLONG_MIN +#define PY_LLONG_MAX LLONG_MAX +#define PY_ULLONG_MAX ULLONG_MAX #endif #endif /* HAVE_LONG_LONG */