Author: Carl Friedrich Bolz <cfb...@gmx.de> Branch: celldict-versions Changeset: r45251:461d9041e1d7 Date: 2011-07-01 23:12 +0200 http://bitbucket.org/pypy/pypy/changeset/461d9041e1d7/
Log: typos (?!) 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 @@ -45,7 +45,7 @@ def getdictvalue_no_unwrapping(self, w_dict, key): return self._getdictvalue_no_unwrapping_pure(self.version, w_dict, key) - @jit.elidablefunction_promote('0,1,2') + @jit.elidable_promote('0,1,2') def _getdictvalue_no_unwrapping_pure(self, version, w_dict, key): return self.unerase(w_dict.dstorage).get(key, None) diff --git a/pypy/objspace/std/test/test_celldict.py b/pypy/objspace/std/test/test_celldict.py --- a/pypy/objspace/std/test/test_celldict.py +++ b/pypy/objspace/std/test/test_celldict.py @@ -2,7 +2,7 @@ from pypy.conftest import gettestobjspace, option from pypy.objspace.std.dictmultiobject import W_DictMultiObject from pypy.objspace.std.celldict import ModuleCell, ModuleDictStrategy -from pypy.objspace.std.test.test_dictmultiobject import FakeSpace. \ +from pypy.objspace.std.test.test_dictmultiobject import FakeSpace, \ BaseTestRDictImplementation, BaseTestDevolvedDictImplementation from pypy.interpreter import gateway _______________________________________________ pypy-commit mailing list pypy-commit@python.org http://mail.python.org/mailman/listinfo/pypy-commit