<div dir="ltr"><div>Hello<br></div><div><br></div><div>I am having issues with PyQt5.QtCore.Alignment values. I cannot use then as dict keys because those values are not hashable.</div><div>The issue can be seen in the following snippet:</div><div><br></div><div>    # AlignmentFlag Works fine</div><div>    alignment_flag = Qt.AlignTop</div><div>    assert hasattr(alignment_flag, '__hash__')</div><div>    assert hash(alignment_flag) == 32</div><div>    assert alignment_flag.__hash__() == 32</div><div>    </div><div>    # Alignment is unhashable</div><div>    alignment  =  Qt.AlignTop | Qt.AlignLeft</div><div>    assert hasattr(alignment, '__hash__')</div><div>    assert hash(alignment) != 0 # <- TypeError: unhashable type: 'Alignment'</div><div>    assert alignment.__hash__() != 0  # <- TypeError: 'NoneType' object is not callable</div><div><br></div><div>The Alignment class overrides the __eq__ method but does not provide an implementation for __hash__ method, and this makes the object unhashable.</div><div><br></div><div>This code worked with python 2.7 pyqt 5.5.1</div><div><br></div><div>I am having issues with python 3.5.2 and pyqt  5.6.0</div><div><br></div><div>Thanks in advance</div><div><br></div><div>Gabriel</div><div><br></div></div>