[Python-checkins] r79676 - python/branches/py3k/Modules/_struct.c

mark.dickinson python-checkins at python.org
Sat Apr 3 16:24:58 CEST 2010


Author: mark.dickinson
Date: Sat Apr  3 16:24:58 2010
New Revision: 79676

Log:
Remove unused define.

Modified:
   python/branches/py3k/Modules/_struct.c

Modified: python/branches/py3k/Modules/_struct.c
==============================================================================
--- python/branches/py3k/Modules/_struct.c	(original)
+++ python/branches/py3k/Modules/_struct.c	Sat Apr  3 16:24:58 2010
@@ -132,7 +132,6 @@
 
 /* Same, but handling unsigned long */
 
-#ifndef PY_STRUCT_OVERFLOW_MASKING
 static int
 get_ulong(PyObject *v, unsigned long *p)
 {
@@ -153,7 +152,6 @@
 	*p = x;
 	return 0;
 }
-#endif  /* PY_STRUCT_OVERFLOW_MASKING */
 
 #ifdef HAVE_LONG_LONG
 


More information about the Python-checkins mailing list