[pypy-commit] extradoc extradoc: tweaks

arigo noreply at buildbot.pypy.org
Fri Oct 4 11:24:44 CEST 2013


Author: Armin Rigo <arigo at tunes.org>
Branch: extradoc
Changeset: r5068:0f46fb1f8767
Date: 2013-10-04 11:22 +0200
http://bitbucket.org/pypy/extradoc/changeset/0f46fb1f8767/

Log:	tweaks

diff --git a/talk/pyconza2013/talk.pdf b/talk/pyconza2013/talk.pdf
index 80a179ffd04df370eb9f786822977148c46dc6be..fec69aacfbd0fc9af5c9c60eb65501eed188fc5a
GIT binary patch

[cut]

diff --git a/talk/pyconza2013/talk.rst b/talk/pyconza2013/talk.rst
--- a/talk/pyconza2013/talk.rst
+++ b/talk/pyconza2013/talk.rst
@@ -14,6 +14,8 @@
 Introduction
 ------------
 
+* me: Armin Rigo
+
 * what is PyPy: an alternative implementation of Python
 
 * very compatible
@@ -25,7 +27,7 @@
 ------------
 
 .. image:: speed.png
-   :scale: 65%
+   :scale: 67%
    :align: center
 
 
@@ -138,9 +140,9 @@
 
 ::
 
-    with the_lock:      with the_lock:        with ..
-      x = obj.val         x = obj.val           x =..
-      obj.val = x + 1     obj.val = x + 1       obj..
+    with the_lock:     with the_lock:        with ..
+      x = obj.val        x = obj.val           x =..
+      obj.val = x + 1    obj.val = x + 1       obj..
 
 
 Locks != Transactions
@@ -148,9 +150,9 @@
 
 ::
 
-    with atomic:        with atomic:          with ..
-      x = obj.val         x = obj.val           x =..
-      obj.val = x + 1     obj.val = x + 1       obj..
+    with atomic:       with atomic:          with ..
+      x = obj.val        x = obj.val           x =..
+      obj.val = x + 1    obj.val = x + 1       obj..
 
 
 STM
@@ -192,9 +194,9 @@
 
 * no, it would be quite hard to implement it in standard CPython
 
-* but not completely impossible
+* too bad for now, only in PyPy
 
-* too bad for now, only in PyPy
+* but it would not be completely impossible
 
 
 But...
@@ -242,7 +244,7 @@
 
   for account in all_accounts:
      add_task(account.apply_interest)
-  run_tasks()
+  run_all_tasks()
 
 
 Internally


More information about the pypy-commit mailing list