Closed
Description
python -c 'import rdflib; print hash(rdflib.URIRef("hi"))'
13312079974552043
python -c 'import rdflib; print hash(rdflib.URIRef("hi"))'
13312079974020587
It would be nice if this was stable. The fix is in term.py, where we should perhaps use hash(type(self).name) instead of hash(type(self)) .