Guest User

Untitled

a guest
May 26th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1. class HttpResponseGone(HttpResponse):
  2. status_code = 410
  3.  
  4. def __init__(self, *args, **kwargs):
  5. HttpResponse.__init__(self, *args, **kwargs)
Add Comment
Please, Sign In to add comment