Searched refs:MiniFieldStorage (Results 1 – 5 of 5) sorted by relevance
/external/python/cpython2/Lib/ |
D | cgi.py | 327 class MiniFieldStorage: class 612 list.append(MiniFieldStorage(key, value)) 626 self.list.append(MiniFieldStorage(key, value))
|
/external/python/cpython3/Lib/ |
D | cgi.py | 261 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/ |
D | cgi.rst | 120 :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/ |
D | cgi.rst | 121 :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/ |
D | 3.7.2rc1.rst | 482 by limiting the number of ``MiniFieldStorage`` objects created by
|