Added module docstring and corrected order of imports to adhere to PEP 8.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@6505 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Gary Wilson Jr 2007-10-14 04:10:02 +00:00
parent 5f9821a5d0
commit a3d015fad0
1 changed files with 9 additions and 3 deletions

View File

@ -1,6 +1,8 @@
from django.template import loader """
from django.http import Http404, HttpResponse, HttpResponseRedirect, HttpResponseNotModified Views and functions for serving static files. These are only to be used
from django.template import Template, Context, TemplateDoesNotExist during development, and SHOULD NOT be used in a production setting.
"""
import mimetypes import mimetypes
import os import os
import posixpath import posixpath
@ -9,6 +11,10 @@ import rfc822
import stat import stat
import urllib import urllib
from django.template import loader
from django.http import Http404, HttpResponse, HttpResponseRedirect, HttpResponseNotModified
from django.template import Template, Context, TemplateDoesNotExist
def serve(request, path, document_root=None, show_indexes=False): def serve(request, path, document_root=None, show_indexes=False):
""" """
Serve static files below a given point in the directory structure. Serve static files below a given point in the directory structure.