(self, data=data, headers={})
| 98 | docstring = docstring or "`%s` status" % status |
| 99 | |
| 100 | def __init__(self, data=data, headers={}): |
| 101 | HTTPError.__init__(self, status, headers, data) |
| 102 | |
| 103 | # trick to create class dynamically with dynamic docstring. |
| 104 | return type( |