diff options
author | Gregory P. Smith <greg@krypto.org> | 2012-02-12 23:56:49 (GMT) |
---|---|---|
committer | Gregory P. Smith <greg@krypto.org> | 2012-02-12 23:56:49 (GMT) |
commit | db66310e8f81415645ee27ebfa61043a078a2d3c (patch) | |
tree | df0d3506c44a24fc39101266a765165ab2ef01f1 /Misc | |
parent | c7551a16c7211301c51d15084894e0fed49fe086 (diff) | |
parent | 58f23ffb21b0fadb8df91c7c9735401f50b3e844 (diff) | |
download | cpython-db66310e8f81415645ee27ebfa61043a078a2d3c.zip cpython-db66310e8f81415645ee27ebfa61043a078a2d3c.tar.gz cpython-db66310e8f81415645ee27ebfa61043a078a2d3c.tar.bz2 |
Issue #13930: Adds ability for 2to3 to write its output to a different
directory tree instead of overwriting the input files. Adds three command
line options: -o/--output-dir, -W/--write-unchanged-files and --add-suffix.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -466,6 +466,10 @@ Core and Builtins Library ------- +- Issue #13930: lib2to3 now supports writing converted output files to another + directory tree as well as copying unchanged files and altering the file + suffix. + - Issue #9750: Fix sqlite3.Connection.iterdump on tables and fields with a name that is a keyword or contains quotes. Patch by Marko Kohtala. @@ -1927,6 +1931,11 @@ IDLE Tools/Demos ----------- +- Issue #13930: 2to3 is now able to write its converted output files to another + directory tree as well as copying unchanged files and altering the file + suffix. See its new -o, -W and --add-suffix options. This makes it more + useful in many automated code translation workflows. + - Issue #13628: python-gdb.py is now able to retrieve more frames in the Python traceback if Python is optimized. |