Home
last modified time | relevance | path

Searched refs:MiniFieldStorage (Results 1 – 5 of 5) sorted by relevance

/external/python/cpython2/Lib/
Dcgi.py327 class MiniFieldStorage: class
612 list.append(MiniFieldStorage(key, value))
626 self.list.append(MiniFieldStorage(key, value))
/external/python/cpython3/Lib/
Dcgi.py261 class MiniFieldStorage: class
607 self.list = [MiniFieldStorage(key, value) for key, value in query]
623 self.list.extend(MiniFieldStorage(key, value) for key, value in query)
/external/python/cpython3/Doc/library/
Dcgi.rst120 :class:`FieldStorage` (or :class:`MiniFieldStorage`, depending on the form
128 :class:`MiniFieldStorage` instance but a list of such instances. Similarly, in
177 actually be instances of the class :class:`MiniFieldStorage`. In this case, the
181 :class:`FieldStorage` and :class:`MiniFieldStorage` items.
/external/python/cpython2/Doc/library/
Dcgi.rst121 :class:`FieldStorage` (or :class:`MiniFieldStorage`, depending on the form
129 :class:`MiniFieldStorage` instance but a list of such instances. Similarly, in
172 actually be instances of the class :class:`MiniFieldStorage`. In this case, the
176 :class:`FieldStorage` and :class:`MiniFieldStorage` items.
/external/python/cpython3/Misc/NEWS.d/
D3.7.2rc1.rst482 by limiting the number of ``MiniFieldStorage`` objects created by