[pypy-svn] extradoc extradoc: Finish renaming 'version number' into 'version object'.

arigo commits-noreply at bitbucket.org
Sun Mar 27 20:19:18 CEST 2011


Author: Armin Rigo <arigo at tunes.org>
Branch: extradoc
Changeset: r3431:736c5eb6bfb4
Date: 2011-03-27 20:16 +0200
http://bitbucket.org/pypy/extradoc/changeset/736c5eb6bfb4/

Log:	Finish renaming 'version number' into 'version object'.

diff --git a/talk/icooolps2011/paper.tex b/talk/icooolps2011/paper.tex
--- a/talk/icooolps2011/paper.tex
+++ b/talk/icooolps2011/paper.tex
@@ -711,8 +711,6 @@
 Every time the class changes, \texttt{find\_method} can potentially return a
 new value.
 
-XXX should we say ``version number'' all around when it is really an object?
-
 Therefore, we give every class a version object, which is changed every time a
 class gets changed (i.e., the content of the \texttt{methods} dictionary changes).
 This means that the result of \texttt{methods.get()} for a given \texttt{(name,
@@ -729,7 +727,7 @@
 
 What is interesting here is that \texttt{\_find\_method} takes the \texttt{version}
 argument but it does not use it at all. Its only purpose is to make the call
-pure, because when the version number changes, the result of the call might be
+pure, because when the version object changes, the result of the call might be
 different than the previous one.
 
 \begin{figure}


More information about the Pypy-commit mailing list