]> granicus.if.org Git - python/commitdiff
Enable PY_USE_INT_WHEN_POSSIBLE in struct
authorBob Ippolito <bob@redivi.com>
Fri, 26 May 2006 14:29:35 +0000 (14:29 +0000)
committerBob Ippolito <bob@redivi.com>
Fri, 26 May 2006 14:29:35 +0000 (14:29 +0000)
Modules/_struct.c

index 8c98db85e513224219c851123a04691d045ecdae..95b5e0bb050977141eadd055d2c8835577266127 100644 (file)
@@ -16,12 +16,10 @@ typedef int Py_ssize_t;
 #endif
 
 
-/* PY_USE_INT_WHEN_POSSIBLE is an experimental flag that changes the 
+/* PY_USE_INT_WHEN_POSSIBLE is a flag that changes the 
    struct API to return int instead of long when possible. This is
    often a significant performance improvement. */
-/*
 #define PY_USE_INT_WHEN_POSSIBLE 1
-*/
 
 /* PY_STRUCT_RANGE_CHECKING performs range checking on all arguments
    to be packed. This will break some incorrect code that happened