Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Allow hashing of ErrorDetail #5932

Merged
merged 1 commit into from Apr 20, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 3 additions & 0 deletions rest_framework/exceptions.py
Expand Up @@ -91,6 +91,9 @@ def __repr__(self):
self.code,
))

def __hash__(self):
return hash(str(self))


class APIException(Exception):
"""
Expand Down
4 changes: 4 additions & 0 deletions tests/test_exceptions.py
Expand Up @@ -81,6 +81,10 @@ def test_str(self):
assert str(ErrorDetail('msg1')) == 'msg1'
assert str(ErrorDetail('msg1', 'code')) == 'msg1'

def test_hash(self):
assert hash(ErrorDetail('msg')) == hash('msg')
assert hash(ErrorDetail('msg', 'code')) == hash('msg')


class TranslationTests(TestCase):

Expand Down