Franck Pommereau

fixed typo and consequent bug

...@@ -1139,7 +1139,7 @@ class MultiArc (ArcAnnotation) : ...@@ -1139,7 +1139,7 @@ class MultiArc (ArcAnnotation) :
1139 # apidoc skip 1139 # apidoc skip
1140 def __hash__ (self) : 1140 def __hash__ (self) :
1141 # 1575269934 = hash("snakes.nets.MultiArc") 1141 # 1575269934 = hash("snakes.nets.MultiArc")
1142 - return reduce(operator.xor, (hash(c) for f in self._components), 1142 + return reduce(operator.xor, (hash(c) for c in self._components),
1143 1575269934) 1143 1575269934)
1144 def __contains__ (self, item) : 1144 def __contains__ (self, item) :
1145 """Test if an item is part of the multi-arc 1145 """Test if an item is part of the multi-arc
......