@@ -81,6 +81,7 @@ The complete set of fixers applied by ``futurize --stage1`` is:
81
81
82
82
lib2to3.fixes.fix_apply
83
83
lib2to3.fixes.fix_except
84
+ lib2to3.fixes.fix_exec
84
85
lib2to3.fixes.fix_exitfunc
85
86
lib2to3.fixes.fix_funcattrs
86
87
lib2to3.fixes.fix_has_key
@@ -224,9 +225,7 @@ becomes::
224
225
225
226
The complete list of fixers applied in Stage 2 is::
226
227
227
- lib2to3.fixes.fix_basestring
228
228
lib2to3.fixes.fix_dict
229
- lib2to3.fixes.fix_exec
230
229
lib2to3.fixes.fix_getcwdu
231
230
lib2to3.fixes.fix_input
232
231
lib2to3.fixes.fix_itertools
@@ -239,8 +238,9 @@ The complete list of fixers applied in Stage 2 is::
239
238
lib2to3.fixes.fix_raw_input
240
239
lib2to3.fixes.fix_zip
241
240
241
+ libfuturize.fixes.fix_basestring
242
242
libfuturize.fixes.fix_cmp
243
- libfuturize.fixes.fix_division
243
+ libfuturize.fixes.fix_division_safe
244
244
libfuturize.fixes.fix_execfile
245
245
libfuturize.fixes.fix_future_builtins
246
246
libfuturize.fixes.fix_future_standard_library
@@ -269,11 +269,6 @@ Not applied::
269
269
lib2to3.fixes.fix_xrange # Custom one because of a bug with Py3.3's lib2to3
270
270
271
271
272
- Fixes applied with the ``futurize --conservative`` option::
273
-
274
- libfuturize.fixes.fix_division_safe # instead of libfuturize.fixes.fix_division.
275
-
276
-
277
272
278
273
.. Ideally the output of this stage should not be a ``SyntaxError`` on either
279
274
.. Python 3 or Python 2.
0 commit comments