[pypy-commit] lang-smalltalk default: fixed weird translation bug where keyword arguments are required by translator, instead of relying on sequence

lwassermann noreply at buildbot.pypy.org
Thu Jun 20 13:27:09 CEST 2013


Author: Lars Wassermann <lars.wassermann at gmail.com>
Branch: 
Changeset: r471:064a045efe5b
Date: 2013-06-20 13:26 +0200
http://bitbucket.org/pypy/lang-smalltalk/changeset/064a045efe5b/

Log:	fixed weird translation bug where keyword arguments are required by
	translator, instead of relying on sequence

diff --git a/spyvm/model.py b/spyvm/model.py
--- a/spyvm/model.py
+++ b/spyvm/model.py
@@ -937,7 +937,7 @@
 
     def __del__(self):
         if self.words is None:
-            lltype.free(self.c_words, 'raw')
+            lltype.free(self.c_words, flavor='raw')
 
 
 NATIVE_DEPTH = 32


More information about the pypy-commit mailing list