[pypy-svn] r44380 - pypy/extradoc/talk/ep2007

antocuni at codespeak.net antocuni at codespeak.net
Tue Jun 19 17:35:51 CEST 2007


Author: antocuni
Date: Tue Jun 19 17:35:51 2007
New Revision: 44380

Modified:
   pypy/extradoc/talk/ep2007/rpython.txt
Log:
some minor changes



Modified: pypy/extradoc/talk/ep2007/rpython.txt
==============================================================================
--- pypy/extradoc/talk/ep2007/rpython.txt	(original)
+++ pypy/extradoc/talk/ep2007/rpython.txt	Tue Jun 19 17:35:51 2007
@@ -12,11 +12,11 @@
 
 * Grown as side effect of the pypy project
 
-* Python is too slow
+* Python is too slow for some purposes
 
 * Pyrex/C are ugly
 
-* We want to play with Python as much as possible
+* We want to play as it were Python as much as possible
 
 What is RPython?
 ----------------
@@ -26,7 +26,7 @@
 
 * Restricted subset
 
-* Constructed from living objects - initialization
+* Constructed from live objects - initialization
   is fully done in Python
 
 * XXX more?
@@ -34,12 +34,15 @@
 Restricted, what do you mean?
 -----------------------------
 
-* No dynamic stuff (from __ methods only
-  __init__ and __del__ works)
+* Full type inference - you cannot mix incompatible types
 
-* No frames and such stuff
+* No dynamic stuff: switch class, add/remove methods, etc.
+
+* Java-like object model
 
-* Full type inference - you cannot mix types
+* No support for special methods (only __init__ and __del__ works)
+
+* No frames and such stuff
 
 XXX crappy examples expand or delete (probably would be
 XXX better to just say few words
@@ -55,9 +58,9 @@
 
 * Write code
 
-* test it
+* test/debug on top of CPython
 
-* compile it
+* compile
 
 * graph viewer
 



More information about the Pypy-commit mailing list