Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(459)

Unified Diff: venv/Lib/site-packages/django/http/__init__.py

Issue 554060043: testMe
Patch Set: Created 2 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « venv/Lib/site-packages/django/forms/widgets.py ('k') | venv/Lib/site-packages/django/http/cookie.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: venv/Lib/site-packages/django/http/__init__.py
===================================================================
new file mode 100644
--- /dev/null
+++ b/venv/Lib/site-packages/django/http/__init__.py
@@ -0,0 +1,21 @@
+from django.http.cookie import SimpleCookie, parse_cookie
+from django.http.request import (
+ HttpRequest, QueryDict, RawPostDataException, UnreadablePostError,
+)
+from django.http.response import (
+ BadHeaderError, FileResponse, Http404, HttpResponse,
+ HttpResponseBadRequest, HttpResponseForbidden, HttpResponseGone,
+ HttpResponseNotAllowed, HttpResponseNotFound, HttpResponseNotModified,
+ HttpResponsePermanentRedirect, HttpResponseRedirect,
+ HttpResponseServerError, JsonResponse, StreamingHttpResponse,
+)
+
+__all__ = [
+ 'SimpleCookie', 'parse_cookie', 'HttpRequest', 'QueryDict',
+ 'RawPostDataException', 'UnreadablePostError',
+ 'HttpResponse', 'StreamingHttpResponse', 'HttpResponseRedirect',
+ 'HttpResponsePermanentRedirect', 'HttpResponseNotModified',
+ 'HttpResponseBadRequest', 'HttpResponseForbidden', 'HttpResponseNotFound',
+ 'HttpResponseNotAllowed', 'HttpResponseGone', 'HttpResponseServerError',
+ 'Http404', 'BadHeaderError', 'JsonResponse', 'FileResponse',
+]
« no previous file with comments | « venv/Lib/site-packages/django/forms/widgets.py ('k') | venv/Lib/site-packages/django/http/cookie.py » ('j') | no next file with comments »

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b