You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

gzip.py 253B

12345
  1. from django.middleware.gzip import GZipMiddleware
  2. from django.utils.decorators import decorator_from_middleware
  3. gzip_page = decorator_from_middleware(GZipMiddleware)
  4. gzip_page.__doc__ = "Decorator for views that gzips pages if the client supports it."