@@ expression E, E2; @@ ( - (PyInt_Check(E) || PyLong_Check(E)) + _PyAnyInt_Check(E) | - PyInt_Check(E) || PyLong_Check(E) + _PyAnyInt_Check(E) | - !PyInt_Check(E) && !PyLong_Check(E) + !_PyAnyInt_Check(E) | - (PyInt_CheckExact(E) || PyLong_CheckExact(E)) + _PyAnyInt_CheckExact(E) | - PyInt_CheckExact(E) || PyLong_CheckExact(E) + _PyAnyInt_CheckExact(E) | - !PyInt_CheckExact(E) && !PyLong_CheckExact(E) + !_PyAnyInt_CheckExact(E) | - E2 || PyInt_Check(E) || PyLong_Check(E) + E2 || _PyAnyInt_Check(E) | - E2 && !PyInt_Check(E) && !PyLong_Check(E) + E2 && !_PyAnyInt_Check(E) | - E2 || PyInt_CheckExact(E) || PyLong_CheckExact(E) + E2 || _PyAnyInt_CheckExact(E) | - E2 && !PyInt_CheckExact(E) && !PyLong_CheckExact(E) + E2 && !_PyAnyInt_CheckExact(E) )