From 2a1c3f740dfe3bb5f899cc4ccb2cf15461c5f950 Mon Sep 17 00:00:00 2001 From: Chris McDonough Date: Fri, 13 May 2011 02:28:05 -0400 Subject: - Added documentation for a "multidict" (e.g. the API of ``request.POST``) as interface API documentation. --- docs/api/interfaces.rst | 4 ++++ docs/api/request.rst | 6 ++++++ 2 files changed, 10 insertions(+) (limited to 'docs/api') diff --git a/docs/api/interfaces.rst b/docs/api/interfaces.rst index 54afdc830..ac282fbcc 100644 --- a/docs/api/interfaces.rst +++ b/docs/api/interfaces.rst @@ -54,3 +54,7 @@ Other Interfaces .. autointerface:: IViewMapper :members: + .. autointerface:: IMultiDict + :members: + + diff --git a/docs/api/request.rst b/docs/api/request.rst index 639d0fcd8..8cb424658 100644 --- a/docs/api/request.rst +++ b/docs/api/request.rst @@ -177,3 +177,9 @@ (such as the status code, a header, the content type, etc) see, :ref:`response_prefixed_attrs`. +.. note:: + + For information about the API of a :term:`multidict` structure (such as + that used as ``request.GET``, ``request.POST``, and ``request.params``), + see :class:`pyramid.interfaces.IMultiDict`. + -- cgit v1.2.3