[pypy-svn] r21573 - pypy/extradoc/talk/22c3

arigo at codespeak.net arigo at codespeak.net
Tue Dec 27 18:04:55 CET 2005


Author: arigo
Date: Tue Dec 27 18:04:53 2005
New Revision: 21573

Modified:
   pypy/extradoc/talk/22c3/hpk-tech.txt
Log:
Typos


Modified: pypy/extradoc/talk/22c3/hpk-tech.txt
==============================================================================
--- pypy/extradoc/talk/22c3/hpk-tech.txt	(original)
+++ pypy/extradoc/talk/22c3/hpk-tech.txt	Tue Dec 27 18:04:53 2005
@@ -36,7 +36,7 @@
 
 - implements full Python language in Python itself 
 - parts implemented in a restricted subset: RPython 
-- "static enough" for full-programm type inference
+- "static enough" for full-program type inference
 - but at boot time we allow unrestricted python! 
 - 350 subscribers to pypy-dev, 150.000 LOCs, 20.000 visitors per month, 
 - MIT license 
@@ -143,11 +143,11 @@
 ====================
 
 - implementation decisions (GC, threading, CC) at translation time 
-- most language implementation do a "fixed" decision 
+- most other language implementations do a "fixed" decision 
 - translation aspects are weaved into the produced code
 - independent from language semantics (python interpreter)
 
-aspects: Memory Models
+Aspects: Memory Models
 ===================================
 
 - Currently implemented: refcounting, Boehm-collector
@@ -206,7 +206,7 @@
 the speed issue
 ===============
 - currently 5-15 times slower than CPython 
-- now seriously starting with optmisations at various levels 
+- now seriously starting with optimisations at various levels 
 - pypy can translate (R-)python code to something 10-50 times
   faster compared to running on top of CPython 
 
@@ -221,7 +221,7 @@
 ======================
 
 - specialising JIT-compiler, processor backends
-- stackless/non-c calling conventions (CPS)
+- stackless/non-C calling conventions (CPS)
 - GC / threading integration + extensions
 - orthogonal persistence and distribution (see thunk example)
 - built-in security (e-lang ...)



More information about the Pypy-commit mailing list