[pypy-svn] r39104 - pypy/release/0.99.x/pypy/doc
hpk at codespeak.net
hpk at codespeak.net
Sat Feb 17 14:49:18 CET 2007
Author: hpk
Date: Sat Feb 17 14:49:17 2007
New Revision: 39104
Modified:
pypy/release/0.99.x/pypy/doc/getting-started.txt
Log:
i think it flows better to generally "cd pypy"
instead of sometimes "cd pypy" and sometimes "cd pypy/bin"
Modified: pypy/release/0.99.x/pypy/doc/getting-started.txt
==============================================================================
--- pypy/release/0.99.x/pypy/doc/getting-started.txt (original)
+++ pypy/release/0.99.x/pypy/doc/getting-started.txt Sat Feb 17 14:49:17 2007
@@ -155,8 +155,8 @@
To start interpreting Python with PyPy, use Python 2.3 or greater::
- cd pypy/bin
- python py.py
+ cd pypy
+ python bin/py.py
After a few seconds (remember: this is running on top of CPython),
you should be at the PyPy prompt, which is the same as the Python
@@ -180,8 +180,8 @@
To list the PyPy interpreter command line options, type::
- cd pypy/bin
- python py.py --help
+ cd pypy
+ python bin/py.py --help
py.py supports most of the options that CPython supports too (in addition to a
large amount of options that can be used to customize py.py).
@@ -258,8 +258,8 @@
object space, providing lazily-computed objects in a fully
transparent manner::
- cd pypy/bin
- python py.py -o thunk
+ cd pypy
+ python bin/py.py -o thunk
>>>> from pypymagic import thunk
>>>> def longcomputation(lst):
@@ -301,8 +301,8 @@
Try it out::
- cd pypy/bin
- python py.py -o logic
+ cd pypy
+ python bin/py.py -o logic
>>>> X = newvar() # a logic variable
>>>> bind(X, 42) # give it a value
@@ -388,8 +388,8 @@
To start the interactive translator shell do::
- cd pypy/bin
- python translatorshell.py
+ cd pypy
+ python bin/translatorshell.py
Test snippets of translatable code are provided in the file
``pypy/translator/test/snippet.py``, which is imported under the name
More information about the Pypy-commit
mailing list