Author: Stephan <[email protected]>
Branch: 
Changeset: r137:f8380e4cbe5a
Date: 2011-10-25 12:58 +0200
http://bitbucket.org/pypy/lang-js/changeset/f8380e4cbe5a/

Log:    marked W_Root strval as imutable

diff --git a/js/jsobj.py b/js/jsobj.py
--- a/js/jsobj.py
+++ b/js/jsobj.py
@@ -32,7 +32,7 @@
     return Property(name, value, True, True, True, True)
 
 class W_Root(object):
-
+    _immutable_fields_ = ['strval']
     def __init__(self):
         pass
     #def GetValue(self):
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to