Skip to content

Commit cfb7379

Browse files
committed
fixed bad immutable flags
1 parent 0a76f8e commit cfb7379

3 files changed

Lines changed: 1 addition & 4 deletions

File tree

pixie/vm/array.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
class Array(object.Object):
1515
_type = object.Type(u"pixie.stdlib.Array")
16-
_immutable_fields_ = ["_list[*]"]
16+
_immutable_fields_ = ["_list"]
1717
def type(self):
1818
return Array._type
1919

pixie/vm/keyword.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010

1111
class Keyword(Object):
1212
_type = Type(u"pixie.stdlib.Keyword")
13-
_immutable_fields_ = ["_hash"]
1413
def __init__(self, name):
1514
self._str = name
1615
self._w_name = None

pixie/vm/symbol.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@
1010

1111
class Symbol(object.Object):
1212
_type = object.Type(u"pixie.stdlib.Symbol")
13-
_immutable_fields_ = ["_hash"]
14-
1513
def __init__(self, s, meta=nil):
1614
#assert isinstance(s, unicode)
1715
self._str = s

0 commit comments

Comments
 (0)