summaryrefslogtreecommitdiffstats
path: root/Include/structmember.h
diff options
context:
space:
mode:
authorNeal Norwitz <nnorwitz@gmail.com>2007-08-03 06:46:29 (GMT)
committerNeal Norwitz <nnorwitz@gmail.com>2007-08-03 06:46:29 (GMT)
commit766d880a2fd0bcb4fca187db255763506e10f96b (patch)
tree1f14c2e01bf1227cc885795ec7fcda00ea2561cf /Include/structmember.h
parenteb8ff67fd73b8fa52b5c2d796706a0cd29ba8d71 (diff)
downloadcpython-766d880a2fd0bcb4fca187db255763506e10f96b.zip
cpython-766d880a2fd0bcb4fca187db255763506e10f96b.tar.gz
cpython-766d880a2fd0bcb4fca187db255763506e10f96b.tar.bz2
Py_ssize_t is defined regardless of HAVE_LONG_LONG. Will backport
Diffstat (limited to 'Include/structmember.h')
-rw-r--r--Include/structmember.h4
1 files changed, 3 insertions, 1 deletions
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 @@ typedef struct PyMemberDef {
#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 */