When the parameter to PyInt_AsLong() has already been checked with
PyInt_Check(), use PyInt_AS_LONG() instead (two places).
diff --git a/Modules/parsermodule.c b/Modules/parsermodule.c
index d0ba9e9..6dd3be3 100644
--- a/Modules/parsermodule.c
+++ b/Modules/parsermodule.c
@@ -670,7 +670,7 @@
 	ok = (temp != NULL) && PyInt_Check(temp);
 	if (ok)
 	    /* this is used after the initial checks: */
-	    start_sym = PyInt_AsLong(temp);
+	    start_sym = PyInt_AS_LONG(temp);
 	Py_XDECREF(temp);
     }
     if (ok) {
@@ -810,7 +810,7 @@
 	    else {
 		ok = PyInt_Check(temp);
 		if (ok)
-		    type = PyInt_AsLong(temp);
+		    type = PyInt_AS_LONG(temp);
 		Py_DECREF(temp);
 	    }
 	}