[pypy-svn] r71444 - pypy/trunk/pypy/objspace/std

cfbolz at codespeak.net cfbolz at codespeak.net
Wed Feb 24 13:56:42 CET 2010


Author: cfbolz
Date: Wed Feb 24 13:56:40 2010
New Revision: 71444

Modified:
   pypy/trunk/pypy/objspace/std/typeobject.py
Log:
fix comment


Modified: pypy/trunk/pypy/objspace/std/typeobject.py
==============================================================================
--- pypy/trunk/pypy/objspace/std/typeobject.py	(original)
+++ pypy/trunk/pypy/objspace/std/typeobject.py	Wed Feb 24 13:56:40 2010
@@ -128,7 +128,7 @@
         if (not we_are_jitted() or w_self.is_heaptype() or not
             w_self.space.config.objspace.std.immutable_builtintypes):
             return w_self._version_tag
-        # pure objects cannot get their version_tag changed
+        # heap objects cannot get their version_tag changed
         return w_self._pure_version_tag()
 
     def getattribute_if_not_from_object(w_self):



More information about the Pypy-commit mailing list