Opened 8 years ago

Last modified 8 years ago

#27309 closed Bug

Missing Hash function in CallableBool — at Initial Version

Reported by: Reto Aebersold Owned by: nobody
Component: Utilities Version: 1.10
Severity: Normal Keywords:
Cc: Triage Stage: Ready for checkin
Has patch: yes Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

As CallableBool has no hash function, membership test operations for sets do not work:

from django.utils.deprecation import CallableTrue
assert CallableTrue in {True}

TypeError: unhashable type: 'CallableBool'

Adding a hash function solves this problem:

def __hash__(self):
    return hash(self.value)

I'm happy to create a PR if this make sense.

Change History (0)

Note: See TracTickets for help on using tickets.
Back to Top