Opened 12 years ago
Closed 12 years ago
#20321 closed Cleanup/optimization (fixed)
MergeDict should give key as argument to KeyError
Reported by: | Owned by: | nobody | |
---|---|---|---|
Component: | Utilities | Version: | 1.4 |
Severity: | Normal | Keywords: | |
Cc: | Triage Stage: | Accepted | |
Has patch: | no | Needs documentation: | no |
Needs tests: | no | Patch needs improvement: | no |
Easy pickings: | yes | UI/UX: | no |
Description
Normally when a dict raises a KeyError
it passes the key to .args[0]
, but MergeDict
does not do this.
to fix simply change raise KeyError
to raise KeyError(key)
on line 23 of utils/datastructures.py
I'm making a REST-like API that takes input on either POST or GET I wanted to wrap my whole thing in a try...except KeyError, and then give an appropriate error message with the missing field, but unlike request.GET and response.POST which are real dicts, request.REQUEST is a MergeDict and does not pass they key that failed as an argument.
Change History (2)
comment:1 by , 12 years ago
Has patch: | unset |
---|---|
Triage Stage: | Unreviewed → Accepted |
Type: | Bug → Cleanup/optimization |
comment:2 by , 12 years ago
Resolution: | → fixed |
---|---|
Status: | new → closed |
In 4769db6b5fddaed93a8d8d03d0c36f7262e9ac8b: