Parent Directory
|
Revision Log
Merged changes across from the attempt2 branch. This version builds and passes python2 tests. It also passes most python3 tests.
1 | from __future__ import print_function |
2 | import py_compile |
3 | from sys import * |
4 | |
5 | if len(argv)!=3: |
6 | print("%s source dest"%argv[0], file=stderr) |
7 | exit(2) |
8 | try: |
9 | py_compile.compile(argv[1], argv[2], argv[1], True) |
10 | except Exception as e: |
11 | print(e.args) |
12 | exit(1) |
13 |
ViewVC Help | |
Powered by ViewVC 1.1.26 |