[pypy-commit] lang-smalltalk storage: Removed obsolete method.

anton_gulenko noreply at buildbot.pypy.org
Wed Mar 26 15:55:17 CET 2014


Author: Anton Gulenko <anton.gulenko at googlemail.com>
Branch: storage
Changeset: r699:12f5258a6002
Date: 2014-03-26 13:20 +0100
http://bitbucket.org/pypy/lang-smalltalk/changeset/12f5258a6002/

Log:	Removed obsolete method.

diff --git a/spyvm/model.py b/spyvm/model.py
--- a/spyvm/model.py
+++ b/spyvm/model.py
@@ -166,9 +166,6 @@
     def invariant(self):
         return isinstance(self.value, int) and self.value < 0x8000
 
-    def make_copy(self, space):
-        return space.wrap_int(space.unwrap_int(self))
-    
     def lshift(self, space, shift):
         from rpython.rlib.rarithmetic import ovfcheck, intmask, r_uint
         # shift > 0, therefore the highest bit of upperbound is not set,


More information about the pypy-commit mailing list