]> granicus.if.org Git - python/commitdiff
Remove unused define.
authorMark Dickinson <dickinsm@gmail.com>
Sat, 3 Apr 2010 14:24:58 +0000 (14:24 +0000)
committerMark Dickinson <dickinsm@gmail.com>
Sat, 3 Apr 2010 14:24:58 +0000 (14:24 +0000)
Modules/_struct.c

index 6a89d8c403ffc26f24bea278dfc6852527343739..7f6e305134b0989d7c3db6dd5c2a5ab62e3d0e54 100644 (file)
@@ -132,7 +132,6 @@ get_long(PyObject *v, long *p)
 
 /* Same, but handling unsigned long */
 
-#ifndef PY_STRUCT_OVERFLOW_MASKING
 static int
 get_ulong(PyObject *v, unsigned long *p)
 {
@@ -153,7 +152,6 @@ get_ulong(PyObject *v, unsigned long *p)
        *p = x;
        return 0;
 }
-#endif  /* PY_STRUCT_OVERFLOW_MASKING */
 
 #ifdef HAVE_LONG_LONG