Skip to content

Commit

Permalink
[setup] don't remove xrange fixer from 3to2
Browse files Browse the repository at this point in the history
to see where transformations actually fail
  • Loading branch information
renefritze committed Jan 5, 2017
1 parent f8e9d65 commit 4228578
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -120,7 +120,7 @@ def __init__(self, *args, **kwargs):
'printfunction', 'raise', 'range', 'reduce', 'setliteral', 'str', 'super', 'throw', 'unittest',
'unpacking', 'with')]

for fix in ('fix_except', 'fix_int', 'fix_print', 'fix_range', 'fix_str', 'fix_throw',
for fix in ('fix_except', 'fix_int', 'fix_print', 'fix_str', 'fix_throw',
'fix_unittest', 'fix_absimport', 'fix_dctsetcomp', 'fix_setliteral', 'fix_with', 'fix_open'):
fixers.remove('lib3to2.fixes.{}'.format(fix))
fixers.append('fix_pymor_futures')
Expand Down

0 comments on commit 4228578

Please sign in to comment.