Skip to content

Instantly share code, notes, and snippets.

@qoelet
Created May 23, 2010 13:13
Show Gist options
  • Save qoelet/410921 to your computer and use it in GitHub Desktop.
Save qoelet/410921 to your computer and use it in GitHub Desktop.
class HttpResponseGone(HttpResponse):
status_code = 410
def __init__(self, *args, **kwargs):
HttpResponse.__init__(self, *args, **kwargs)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment