commit | 6371cd81775298dfd5dbbffbc172f3e5ddf6b5ea | [log] [tgz] |
---|---|---|
author | Martin v. Löwis <martin@v.loewis.de> | Sat Jun 09 07:42:52 2007 +0000 |
committer | Martin v. Löwis <martin@v.loewis.de> | Sat Jun 09 07:42:52 2007 +0000 |
tree | 2e9902bb1fd520e34704bf119e27094542b5814e | |
parent | 080b598990aae43b2ee4880d98b1a575fae2a778 [diff] |
Patch #1733960: Allow T_LONGLONG to accept ints. Will backport to 2.5.
diff --git a/Include/pyport.h b/Include/pyport.h index 36d517c..2a29506 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 */