Author: Lars Wassermann <[email protected]>
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
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to