summaryrefslogtreecommitdiffstats
path: root/2to3c
diff options
context:
space:
mode:
authorDavid Malcolm <dmalcolm@redhat.com>2009-11-20 16:02:06 -0500
committerDavid Malcolm <dmalcolm@redhat.com>2009-11-20 16:02:06 -0500
commit3a85de47fa4ce3ec6fa46a84de78f8e18727d99e (patch)
treef794c79f3a148a703aed4f5e797da80d9d5084a8 /2to3c
parent1cc12923d5b14848bd153e0eee96770073483302 (diff)
download2to3c-3a85de47fa4ce3ec6fa46a84de78f8e18727d99e.tar.gz
2to3c-3a85de47fa4ce3ec6fa46a84de78f8e18727d99e.tar.xz
2to3c-3a85de47fa4ce3ec6fa46a84de78f8e18727d99e.zip
Start trying to fixup module initialization
Diffstat (limited to '2to3c')
-rwxr-xr-x2to3c3
1 files changed, 2 insertions, 1 deletions
diff --git a/2to3c b/2to3c
index 2be282d..ede6fb2 100755
--- a/2to3c
+++ b/2to3c
@@ -4,7 +4,8 @@ def get_fixers():
from fixes.typeobject import FixTypeobjectInitializers
from fixes import CocciFix
fixes = [FixTypeobjectInitializers()]
- for filename in ['RO.cocci', 'int-to-long.cocci', 'ob_type.cocci', 'repr.cocci']:
+ for filename in ['RO.cocci', 'int-to-long.cocci', 'ob_type.cocci',
+ 'repr.cocci', 'init-module.cocci']:
fixes.append(CocciFix(filename))
return fixes