commit | 766d880a2fd0bcb4fca187db255763506e10f96b | [log] [tgz] |
---|---|---|
author | Neal Norwitz <nnorwitz@gmail.com> | Fri Aug 03 06:46:29 2007 +0000 |
committer | Neal Norwitz <nnorwitz@gmail.com> | Fri Aug 03 06:46:29 2007 +0000 |
tree | 1f14c2e01bf1227cc885795ec7fcda00ea2561cf | |
parent | eb8ff67fd73b8fa52b5c2d796706a0cd29ba8d71 [diff] |
Py_ssize_t is defined regardless of HAVE_LONG_LONG. Will backport
diff --git a/Include/structmember.h b/Include/structmember.h index ce5353d..5b68213 100644 --- a/Include/structmember.h +++ b/Include/structmember.h
@@ -68,9 +68,11 @@ #ifdef HAVE_LONG_LONG #define T_LONGLONG 17 #define T_ULONGLONG 18 -#define T_PYSSIZET 19 /* Py_ssize_t */ #endif /* HAVE_LONG_LONG */ +#define T_PYSSIZET 19 /* Py_ssize_t */ + + /* Flags */ #define READONLY 1 #define RO READONLY /* Shorthand */