* pygnulib/GLModuleSystem.py (GLModuleTable.__hash__): Only use the
module name in hash computations.
+2024-04-16 Collin Funk <collin.funk1@gmail.com>
+
+ gnulib-tool.py: Make GLModule's __eq__ and __hash__ method agree.
+ * pygnulib/GLModuleSystem.py (GLModuleTable.__hash__): Only use the
+ module name in hash computations.
+
2024-04-16 Bruno Haible <bruno@clisp.org>
setpayloadsigl: Add tests.
def __hash__(self) -> int:
'''x.__hash__() <==> hash(x)'''
- result = hash(self.name) ^ hash(self.patched)
+ result = hash(self.name)
return result
def __le__(self, module: object) -> bool: