[pypy-commit] lang-smalltalk default: added prebuild class "Bitmap" needed for assignment from image, the interpreter proxy and (maybe eventually) bitblt

lwassermann noreply at buildbot.pypy.org
Mon Jun 10 19:30:59 CEST 2013


Author: Lars Wassermann <lars.wassermann at gmail.com>
Branch: 
Changeset: r445:ab55fd796e76
Date: 2013-06-10 19:30 +0200
http://bitbucket.org/pypy/lang-smalltalk/changeset/ab55fd796e76/

Log:	added prebuild class "Bitmap" needed for assignment from image, the
	interpreter proxy and (maybe eventually) bitblt

diff --git a/spyvm/objspace.py b/spyvm/objspace.py
--- a/spyvm/objspace.py
+++ b/spyvm/objspace.py
@@ -94,6 +94,7 @@
         define_cls("w_ArrayedCollection", "w_SequenceableCollection")
         define_cls("w_Array", "w_ArrayedCollection", varsized=True)
         define_cls("w_String", "w_ArrayedCollection", format=shadow.BYTES)
+        define_cls("w_Bitmap", "w_ArrayedCollection", varsized=True, format=shadow.WORDS)
         define_cls("w_UndefinedObject", "w_Object")
         define_cls("w_Boolean", "w_Object")
         define_cls("w_True", "w_Boolean")


More information about the pypy-commit mailing list