summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Malcolm <dmalcolm@redhat.com>2009-11-19 16:47:13 -0500
committerDavid Malcolm <dmalcolm@redhat.com>2009-11-19 16:47:13 -0500
commit1ed1f9101cabbbe4c82dd9b4e615bfb8d02f02d1 (patch)
tree99f36adcf30030267de4ce7ba6b152884929c5a5
parenteb3fa5c64f7bfd9e26320500a114f00d2cb80bd8 (diff)
download2to3c-1ed1f9101cabbbe4c82dd9b4e615bfb8d02f02d1.tar.gz
2to3c-1ed1f9101cabbbe4c82dd9b4e615bfb8d02f02d1.tar.xz
2to3c-1ed1f9101cabbbe4c82dd9b4e615bfb8d02f02d1.zip
Change references to PyInt_Type to PyLong_Type
-rw-r--r--int-to-long.cocci5
1 files changed, 5 insertions, 0 deletions
diff --git a/int-to-long.cocci b/int-to-long.cocci
index b09c87c..110d97d 100644
--- a/int-to-long.cocci
+++ b/int-to-long.cocci
@@ -75,3 +75,8 @@ expression E1;
@@
-PyNumber_Int(E1)
+PyNumber_Long(E1)
+
+@@
+@@
+-PyInt_Type
++PyLong_Type \ No newline at end of file