2to3 help 

Python $ 2to3 --help

Usage: 2to3 [options] file|dir ...


Options:

  -h, --help            show this help message and exit

  -d, --doctests_only   Fix up doctests only

  -f FIX, --fix=FIX     Each FIX specifies a transformation; default: all

  -j PROCESSES, --processes=PROCESSES

                        Run 2to3 concurrently

  -x NOFIX, --nofix=NOFIX

                        Prevent a transformation from being run

  -l, --list-fixes      List available transformations

  -p, --print-function  Modify the grammar so that print() is a function

  -v, --verbose         More verbose logging

  --no-diffs            Don't show diffs of the refactoring

  -w, --write           Write back modified files

  -n, --nobackups       Don't write backups for modified files

  -o OUTPUT_DIR, --output-dir=OUTPUT_DIR

                        Put output files in this directory instead of

                        overwriting the input files.  Requires -n.

  -W, --write-unchanged-files

                        Also write files even if no changes were required

                        (useful with --output-dir); implies -w.

  --add-suffix=ADD_SUFFIX

                        Append this string to all output filenames. Requires

                        -n if non-empty.  ex: --add-suffix='3' will generate

                        .py3 files.


실제 파일을 변경하지 않고 변경할 내역만 확인 할때는 -w 옵션을 주지 않고 사용

변경: 2to3 -w 파일명, 원본 파일은  파일명.bak으로 저장됨

'컴&프로그래밍 > Python' 카테고리의 다른 글

5. 클래스  (0) 2014.12.20
4. 제어  (0) 2014.12.19
Google Python Tutorial - Basic Python Exercises #2 List  (0) 2014.12.11
Google Python Tutorial - Basic Python Exercises #1 String  (0) 2014.12.05
튜플 자료형 특이사항  (0) 2014.10.19
자료형과 연산자  (0) 2014.10.18
Hello Python  (0) 2014.10.15
Mac에서 python 3. x 버전 사용 하기  (3) 2014.10.12
Upgrading Python 2.7 to 3.3 on MAC OS X  (0) 2013.12.03