Enable PY_USE_INT_WHEN_POSSIBLE in struct
diff --git a/Modules/_struct.c b/Modules/_struct.c
index 8c98db8..95b5e0b 100644
--- a/Modules/_struct.c
+++ b/Modules/_struct.c
@@ -16,12 +16,10 @@
 #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