[Python-checkins] r56942 - sandbox/trunk/2to3/README
neal.norwitz
python-checkins at python.org
Sun Aug 12 03:00:41 CEST 2007
Author: neal.norwitz
Date: Sun Aug 12 03:00:41 2007
New Revision: 56942
Modified:
sandbox/trunk/2to3/README
Log:
Add a description of fix_execfile
Modified: sandbox/trunk/2to3/README
==============================================================================
--- sandbox/trunk/2to3/README (original)
+++ sandbox/trunk/2to3/README Sun Aug 12 03:00:41 2007
@@ -43,6 +43,8 @@
* **fix_exec** - convert "exec" statements to exec() function calls.
+* **fix_execfile** - execfile(filename, ...) -> exec(open(filename).read())
+
* **fix_filter** - changes filter(F, X) into list(filter(F, X)).
* **fix_funcattrs** - fix function attribute names (f.func_x -> f.__x__).
More information about the Python-checkins
mailing list