Home
last modified time | relevance | path

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

/external/python/cpython2/Lib/plat-mac/
Dgensuitemodule.py341 def getlist(f, description, getitem): function
383 (getlist, "optional arguments", getargument)
392 (getlist, "keyform", getostype)
398 (getlist, "properties", getproperty),
399 (getlist, "elements", getelement)
413 (getlist, "enumerator", getenumerator)
421 (getlist, "events", getevent),
422 (getlist, "classes", getclass),
423 (getlist, "comparisons", getcomparison),
424 (getlist, "enumerations", getenumeration)
[all …]
/external/python/cpython2/Lib/test/
Dtest_cgi.py119 result[k] = isinstance(v, list) and form.getlist(k) or v.value
172 self.assertItemsEqual(sd.getlist(key), expect_val)
/external/python/oauth2client/oauth2client/contrib/django_util/
Dviews.py184 scopes = request.GET.getlist('scopes', django_util.oauth2_settings.scopes)
/external/python/cpython2/Lib/
Dcgi.py568 def getlist(self, key): member in FieldStorage
819 def getlist(self, key): member in SvFormContentDict
/external/python/cpython2/Doc/library/
Dcgi.rst132 same name), use the :meth:`~FieldStorage.getlist` method, which always returns
137 value = form.getlist("username")
230 and :meth:`~FieldStorage.getlist` provided by this higher level interface.
244 .. method:: FieldStorage.getlist(name)
255 for item in form.getlist("item"):
/external/python/cpython3/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"):
/external/python/oauth2client/oauth2client/contrib/
Dflask_util.py373 args['scopes'] = request.args.getlist('scopes')
/external/python/cpython3/Lib/
Dcgi.py216 return {k: fs.getlist(k) for k in fs}
556 def getlist(self, key): member in FieldStorage
/external/python/cpython3/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',
/external/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()
/external/python/cpython3/Doc/whatsnew/
D3.5.rst1010 >>> cfg.getlist('s', 'list')
1013 >>> section.getlist('list')