[pypy-commit] pypy detect-immutable-fields: Appease the great annotator in the sky

alex_gaynor noreply at buildbot.pypy.org
Thu Jan 23 21:00:50 CET 2014


Author: Alex Gaynor <alex.gaynor at gmail.com>
Branch: detect-immutable-fields
Changeset: r68873:9d227f7cb3c5
Date: 2014-01-23 13:59 -0600
http://bitbucket.org/pypy/pypy/changeset/9d227f7cb3c5/

Log:	Appease the great annotator in the sky

diff --git a/pypy/interpreter/baseobjspace.py b/pypy/interpreter/baseobjspace.py
--- a/pypy/interpreter/baseobjspace.py
+++ b/pypy/interpreter/baseobjspace.py
@@ -179,7 +179,7 @@
         return None
     def _set_mapdict_map(self, map):
         raise NotImplementedError
-    def _mapdict_read_storage(self, index):
+    def _mapdict_read_storage(self, index, pure=False):
         raise NotImplementedError
     def _mapdict_write_storage(self, index, value):
         raise NotImplementedError


More information about the pypy-commit mailing list