[pypy-svn] pypy out-of-line-guards: Disable jit_invariant_fields on celldict. There are limitations as of now that

fijal commits-noreply at bitbucket.org
Sun Jan 2 18:26:21 CET 2011


Author: Maciej Fijalkowski <fijall at gmail.com>
Branch: out-of-line-guards
Changeset: r40326:efe8911f5103
Date: 2011-01-02 17:05 +0200
http://bitbucket.org/pypy/pypy/changeset/efe8911f5103/

Log:	Disable jit_invariant_fields on celldict. There are limitations as
	of now that I don't really want to tackle

diff --git a/pypy/objspace/std/celldict.py b/pypy/objspace/std/celldict.py
--- a/pypy/objspace/std/celldict.py
+++ b/pypy/objspace/std/celldict.py
@@ -8,8 +8,6 @@
 from pypy.rlib import jit
 
 class ModuleCell(object):
-    _jit_invariant_fields_ = ['w_value']
-
     def __init__(self, w_value=None):
         self.w_value = w_value
 


More information about the Pypy-commit mailing list