[pypy-svn] r12320 - pypy/dist/pypy/documentation

hpk at codespeak.net hpk at codespeak.net
Sun May 15 19:57:58 CEST 2005


Author: hpk
Date: Sun May 15 19:57:58 2005
New Revision: 12320

Modified:
   pypy/dist/pypy/documentation/getting_started.txt
Log:
i am unsure what to do about things 
such as t.view() which start a full gui. 

commenting t.view() out for now 
to stop the tests opening pygame-windows 



Modified: pypy/dist/pypy/documentation/getting_started.txt
==============================================================================
--- pypy/dist/pypy/documentation/getting_started.txt	(original)
+++ pypy/dist/pypy/documentation/getting_started.txt	Sun May 15 19:57:58 2005
@@ -188,7 +188,7 @@
    ``test/snippet.py``.  For example::
 
         >>> t = Translator(test.is_perfect_number)
-        >>> t.view()
+        >>> #t.view()
         
 .. >>> from pypy.translator.translator import Translator 
 .. >>> from pypy.translator.test import snippet as test 
@@ -197,7 +197,7 @@
    ``is_perfect_number``::
 
         >>> a = t.annotate([int])
-        >>> t.view()
+        >>> #t.view()
 
    Move the mouse over variable names (in red) to see their inferred types. To
    perform simplifications based on the annotation you can do::



More information about the Pypy-commit mailing list