docstring for TahoeLAFSRequest

This commit is contained in:
Jean-Paul Calderone 2020-10-22 07:22:41 -04:00
parent e3b1d4f536
commit 8401547b35

View File

@ -31,6 +31,14 @@ from .web.storage_plugins import (
)
class TahoeLAFSRequest(Request, object):
"""
``TahoeLAFSRequest`` adds several features to a Twisted Web ``Request``
that are useful for Tahoe-LAFS.
:ivar NoneType|FieldStorage fields: For POST requests, a structured
representation of the contents of the request body. For anything
else, ``None``.
"""
fields = None
_tahoe_request_had_error = None