[pypy-svn] r20954 - pypy/dist/pypy/rpython

arigo at codespeak.net arigo at codespeak.net
Fri Dec 9 18:04:30 CET 2005


Author: arigo
Date: Fri Dec  9 18:04:29 2005
New Revision: 20954

Modified:
   pypy/dist/pypy/rpython/rstr.py
Log:
(mwh, arigo)

More of the same as the previous check-in, left behind by mistake.


Modified: pypy/dist/pypy/rpython/rstr.py
==============================================================================
--- pypy/dist/pypy/rpython/rstr.py	(original)
+++ pypy/dist/pypy/rpython/rstr.py	Fri Dec  9 18:04:29 2005
@@ -26,8 +26,7 @@
 #    }
 
 STR = GcStruct('rpy_string', ('hash',  Signed),
-                             ('chars', Array(Char)))
-
+                             ('chars', Array(Char, hints={'immutable': True})))
 SIGNED_ARRAY = GcArray(Signed)
 
 



More information about the Pypy-commit mailing list