[pypy-svn] r36084 - pypy/dist/pypy/doc/js

fijal at codespeak.net fijal at codespeak.net
Mon Jan 1 11:51:11 CET 2007


Author: fijal
Date: Mon Jan  1 11:51:09 2007
New Revision: 36084

Modified:
   pypy/dist/pypy/doc/js/webapps_with_pypy.txt
Log:
* Added important sentence (what is rpython)
* Reworded CPython/Python


Modified: pypy/dist/pypy/doc/js/webapps_with_pypy.txt
==============================================================================
--- pypy/dist/pypy/doc/js/webapps_with_pypy.txt	(original)
+++ pypy/dist/pypy/doc/js/webapps_with_pypy.txt	Mon Jan  1 11:51:09 2007
@@ -26,7 +26,9 @@
 JavaScript code. Unlike other libraries that perform similar functionality,
 PyPy really interprets the code, and produces 'lower level' JavaScript code,
 so it implements Python core language features like list comprehensions, and
-really behaves like Python (it's not Python syntax with JS semantics). 
+really behaves like Python (it's not Python syntax with JS semantics).
+This particulary means that when a program is in RPython, you can run it
+on top of Python interpreter with the same results as translated to JS version.
 
 However, mostly for demonstration purposes, some other interesting code is
 available in the PyPy code package that may help developing web apps. The most
@@ -52,7 +54,7 @@
 A quick overview of the (main) layers of code in the application we're going
 to write:
 
-  * HTTP server implementation - 'normal' (C-)Python code
+  * HTTP server implementation - 'normal' Python code
   
     the web server code, the code that handles dealing with the HTTP API and
     dispatching to application code is written in 'normal' Python code, and is



More information about the Pypy-commit mailing list