Searched refs:getlist (Results 1 – 6 of 6) sorted by relevance
/third_party/python/Doc/library/ |
D | cgi.rst | 131 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/ |
D | cgi.py | 216 return {k: fs.getlist(k) for k in fs} 556 def getlist(self, key): member in FieldStorage
|
/third_party/python/Lib/test/ |
D | test_cgi.py | 112 result[k] = isinstance(v, list) and form.getlist(k) or v.value
|
D | test_configparser.py | 1989 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/ |
D | ip.c | 234 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/ |
D | 3.5.rst | 1010 >>> cfg.getlist('s', 'list') 1013 >>> section.getlist('list')
|