[pypy-svn] r68700 - pypy/trunk/pypy/doc/config
arigo at codespeak.net
arigo at codespeak.net
Wed Oct 21 19:11:02 CEST 2009
Author: arigo
Date: Wed Oct 21 19:11:01 2009
New Revision: 68700
Modified:
pypy/trunk/pypy/doc/config/objspace.std.withshadowtracking.txt
Log:
Kill the link to 'withmultidict'.
Modified: pypy/trunk/pypy/doc/config/objspace.std.withshadowtracking.txt
==============================================================================
--- pypy/trunk/pypy/doc/config/objspace.std.withshadowtracking.txt (original)
+++ pypy/trunk/pypy/doc/config/objspace.std.withshadowtracking.txt Wed Oct 21 19:11:01 2009
@@ -1,5 +1,5 @@
Enable "shadow tracking". This means a special dict representation is used
-together with `multidicts`_. This dict representation is used only for instance
+-- but only for instance
dictionaries. The instance dictionary tracks whether an instance attribute
shadows an attribute of its class. This makes method calls slightly faster in
the following way: When calling a method the first thing that is checked is the
@@ -7,5 +7,3 @@
instance dictionary is then checked for instance attributes shadowing the class
attribute. If we know that there is no shadowing (since our instance dict tells
us that) we can save this lookup on the instance dictionary.
-
-.. _`multidicts`: objspace.std.withmultidict.html
More information about the Pypy-commit
mailing list