[pypy-svn] r60539 - pypy/extradoc/talk/ecoop2009

antocuni at codespeak.net antocuni at codespeak.net
Wed Dec 17 14:32:47 CET 2008


Author: antocuni
Date: Wed Dec 17 14:32:45 2008
New Revision: 60539

Modified:
   pypy/extradoc/talk/ecoop2009/tlc.tex
Log:
minor language tweaks



Modified: pypy/extradoc/talk/ecoop2009/tlc.tex
==============================================================================
--- pypy/extradoc/talk/ecoop2009/tlc.tex	(original)
+++ pypy/extradoc/talk/ecoop2009/tlc.tex	Wed Dec 17 14:32:45 2008
@@ -38,7 +38,7 @@
 
 Obviously, not all the operations are applicable to all objects. For example,
 it is not possible to \lstinline{ADD} an integer and an object, or reading an
-attribute from an object which does not provide it.  Being a dynamic language,
+attribute from an object which does not provide it.  Being dynamically typed,
 the VM needs to do all these checks at runtime; in case one of the check
 fails, the execution is simply aborted.
 
@@ -70,8 +70,7 @@
 Since reading TLC programs at bytecode level is hard, in this paper we will
 use an invented Python-like syntax to describe examples, even if we need to
 remind that the actual programs are written in the assembler language showed
-above. The following listing shows the same example as above written in the
-Python-like syntax:
+above. Thus, the example above can be written in the following way:
 
 \begin{lstlisting}
 def main(n):



More information about the Pypy-commit mailing list