summaryrefslogtreecommitdiff
path: root/Include/structmember.h
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2016-09-05 17:44:18 -0700
committerBenjamin Peterson <benjamin@python.org>2016-09-05 17:44:18 -0700
commited4aa83ff77ff11059f64dab711adf35ce9d0e0f (patch)
treecf430f6a641782d7c794c1adc73c055a3f120a69 /Include/structmember.h
parentb3b0767861c69115a1482e3ade8d29207e204b15 (diff)
downloadcpython-git-ed4aa83ff77ff11059f64dab711adf35ce9d0e0f.tar.gz
require a long long data type (closes #27961)
Diffstat (limited to 'Include/structmember.h')
-rw-r--r--Include/structmember.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/Include/structmember.h b/Include/structmember.h
index 948f690300..5da8a46682 100644
--- a/Include/structmember.h
+++ b/Include/structmember.h
@@ -49,10 +49,8 @@ typedef struct PyMemberDef {
#define T_OBJECT_EX 16 /* Like T_OBJECT, but raises AttributeError
when the value is NULL, instead of
converting to None. */
-#ifdef HAVE_LONG_LONG
#define T_LONGLONG 17
#define T_ULONGLONG 18
-#endif /* HAVE_LONG_LONG */
#define T_PYSSIZET 19 /* Py_ssize_t */
#define T_NONE 20 /* Value is always None */