Edit comments to discourage creation of new OutputTransforms.

This commit is contained in:
Ben Darnell 2014-06-21 13:37:59 -04:00
parent b3ccb7b964
commit 3a62caf91c
1 changed files with 3 additions and 3 deletions

View File

@ -2501,9 +2501,9 @@ class FallbackHandler(RequestHandler):
class OutputTransform(object): class OutputTransform(object):
"""A transform modifies the result of an HTTP request (e.g., GZip encoding) """A transform modifies the result of an HTTP request (e.g., GZip encoding)
A new transform instance is created for every request. See the Applications are not expected to create their own OutputTransforms
GZipContentEncoding example below if you want to implement a or interact with them directly; the framework chooses which transforms
new Transform. (if any) to apply.
""" """
def __init__(self, request): def __init__(self, request):
pass pass