[pypy-svn] r71294 - pypy/branch/string-promote/pypy/objspace/std
fijal at codespeak.net
fijal at codespeak.net
Thu Feb 18 16:11:05 CET 2010
Author: fijal
Date: Thu Feb 18 16:11:03 2010
New Revision: 71294
Modified:
pypy/branch/string-promote/pypy/objspace/std/celldict.py
Log:
An attempt to reduce number of promotes on string
Modified: pypy/branch/string-promote/pypy/objspace/std/celldict.py
==============================================================================
--- pypy/branch/string-promote/pypy/objspace/std/celldict.py (original)
+++ pypy/branch/string-promote/pypy/objspace/std/celldict.py Thu Feb 18 16:11:03 2010
@@ -31,7 +31,7 @@
return self._getcell_makenew(key)
return self.content.get(key, None)
- @jit.purefunction_promote
+ @jit.purefunction
def _getcell_makenew(self, key):
res = self.content.get(key, None)
if res is not None:
More information about the Pypy-commit
mailing list