Skip to content

Commit c19fa41

Browse files
committed
Remove outdated comment
1 parent 75159c7 commit c19fa41

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

mathics/core/atoms.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1153,8 +1153,6 @@ def __init__(self, value, dtype=None):
11531153
self._summary_string = f"{self._type_name}, {shape_string}"
11541154
self._hash = None
11551155

1156-
# TODO: this is potentially expensive - what if we left it unimplemented? is hashing a numpy array reasonable?
1157-
# TODO: to make it less expensive only look at first 100 bytes - ok? needed?
11581156
def __hash__(self):
11591157
if not self._hash:
11601158
self._hash = hash(("NumericArray", self.value.shape, id(self.value)))

0 commit comments

Comments
 (0)