We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0a76f8e commit cfb7379Copy full SHA for cfb7379
3 files changed
pixie/vm/array.py
@@ -13,7 +13,7 @@
13
14
class Array(object.Object):
15
_type = object.Type(u"pixie.stdlib.Array")
16
- _immutable_fields_ = ["_list[*]"]
+ _immutable_fields_ = ["_list"]
17
def type(self):
18
return Array._type
19
pixie/vm/keyword.py
@@ -10,7 +10,6 @@
10
11
class Keyword(Object):
12
_type = Type(u"pixie.stdlib.Keyword")
- _immutable_fields_ = ["_hash"]
def __init__(self, name):
self._str = name
self._w_name = None
pixie/vm/symbol.py
@@ -10,8 +10,6 @@
class Symbol(object.Object):
_type = object.Type(u"pixie.stdlib.Symbol")
-
def __init__(self, s, meta=nil):
#assert isinstance(s, unicode)
self._str = s
0 commit comments