[pypy-svn] r16691 - pypy/release/0.7.x/pypy/translator/goal

arigo at codespeak.net arigo at codespeak.net
Fri Aug 26 21:21:43 CEST 2005


Author: arigo
Date: Fri Aug 26 21:21:42 2005
New Revision: 16691

Modified:
   pypy/release/0.7.x/pypy/translator/goal/translate_pypy.py
Log:
default target: targetpypystandalone

Modified: pypy/release/0.7.x/pypy/translator/goal/translate_pypy.py
==============================================================================
--- pypy/release/0.7.x/pypy/translator/goal/translate_pypy.py	(original)
+++ pypy/release/0.7.x/pypy/translator/goal/translate_pypy.py	Fri Aug 26 21:21:42 2005
@@ -10,7 +10,7 @@
               targetspec.py is a python file defining
               what is the translation target and setting things up for it,
               it should have a target function returning an entry_point ...;
-              defaults to targetpypymain. The .py suffix is optional.
+              defaults to targetpypystandalone. The .py suffix is optional.
    -text      Don't start the Pygame viewer
    -no-a      Don't infer annotations, just translate everything
    -no-t      Don't type-specialize the graph operations with the C typer
@@ -334,7 +334,7 @@
 
 if __name__ == '__main__':
 
-    targetspec = 'targetpypymain'
+    targetspec = 'targetpypystandalone'
     huge = 100
     load_file = None
     save_file = None



More information about the Pypy-commit mailing list