diff options
author | Maciej Fijalkowski <fijall@gmail.com> | 2012-10-10 11:12:37 +0200 |
---|---|---|
committer | Maciej Fijalkowski <fijall@gmail.com> | 2012-10-10 11:12:37 +0200 |
commit | 943a78faf78bb527184b18fa5d6ffdc0eea1b5e3 (patch) | |
tree | 2e23fee933e6f1474e8ccb5c6bc4386793e25787 /pypy/bin | |
parent | kill the ability to not pass arguments to translate (diff) | |
download | pypy-943a78faf78bb527184b18fa5d6ffdc0eea1b5e3.tar.gz pypy-943a78faf78bb527184b18fa5d6ffdc0eea1b5e3.tar.bz2 pypy-943a78faf78bb527184b18fa5d6ffdc0eea1b5e3.zip |
fix test_interactive
Diffstat (limited to 'pypy/bin')
-rwxr-xr-x | pypy/bin/translatorshell.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pypy/bin/translatorshell.py b/pypy/bin/translatorshell.py index a5690ca09b..ab9014f461 100755 --- a/pypy/bin/translatorshell.py +++ b/pypy/bin/translatorshell.py @@ -8,10 +8,10 @@ Can be used for interactive testing of the translator. Example: - t = Translation(func) + t = Translation(func, [int]) # pass the list of args types t.view() # control flow graph - t.annotate([int]) # pass the list of args types + t.annotate() t.view() # graph + annotations under the mouse t.rtype() # use low level operations |