[pypy-commit] extradoc extradoc: Fixes

arigo noreply at buildbot.pypy.org
Sat Aug 25 19:17:40 CEST 2012


Author: Armin Rigo <arigo at tunes.org>
Branch: extradoc
Changeset: r4721:6976b2cb96bc
Date: 2012-08-24 15:06 +0200
http://bitbucket.org/pypy/extradoc/changeset/6976b2cb96bc/

Log:	Fixes

diff --git a/talk/stm2012/stmimpl.rst b/talk/stm2012/stmimpl.rst
--- a/talk/stm2012/stmimpl.rst
+++ b/talk/stm2012/stmimpl.rst
@@ -171,7 +171,7 @@
         W->h_global = False
         W->h_possibly_outdated = False
         W->h_written = True
-        W->h_revision = 0
+        W->h_revision = 1
         return W
 
 
@@ -447,10 +447,10 @@
 
 Hand-wavy pseudo-code::
 
-    def TransactionEnd():
+    def FinishTransaction():
         FindRootsForLocalCollect()
         PerformLocalCollect()
-        TransactionCommit()          # see below
+        CommitTransaction()          # see below
 
     def FindRootsForLocalCollect():
         for (R, L) in global_to_local:


More information about the pypy-commit mailing list