Home
last modified time | relevance | path

Searched refs:getlist (Results 1 – 6 of 6) sorted by relevance

/third_party/python/Doc/library/
Dcgi.rst131 same name), use the :meth:`~FieldStorage.getlist` method, which always returns
136 value = form.getlist("username")
242 and :meth:`~FieldStorage.getlist` provided by this higher level interface.
256 .. method:: FieldStorage.getlist(name)
267 for item in form.getlist("item"):
/third_party/python/Lib/
Dcgi.py216 return {k: fs.getlist(k) for k in fs}
556 def getlist(self, key): member in FieldStorage
/third_party/python/Lib/test/
Dtest_cgi.py112 result[k] = isinstance(v, list) and form.getlist(k) or v.value
Dtest_configparser.py1989 self.assertEqual(cfg.getlist('s', 'list'), ['a', 'b', 'c', 'd',
1995 self.assertEqual(s.getlist('list'), ['a', 'b', 'c', 'd',
/third_party/toybox/toys/pending/
Dip.c234 static struct arglist **getlist(u_int8_t whichDB) in getlist() function
313 alist = getlist(whichDB); in namefromRPDB()
329 for (alist = getlist(whichDB); i < RPDB_ENTRIES; i++) { in idxfromRPDB()
/third_party/python/Doc/whatsnew/
D3.5.rst1010 >>> cfg.getlist('s', 'list')
1013 >>> section.getlist('list')