/external/chromium-trace/catapult/third_party/WebOb/webob/ |
D | multidict.py | 21 class MultiDict(MutableMapping): class 281 class GetDict(MultiDict): 287 MultiDict.__init__(self, data) 295 MultiDict.__setitem__(self, key, value) 298 MultiDict.add(self, key, value) 301 MultiDict.__delitem__(self, key) 304 MultiDict.clear(self) 307 result = MultiDict.setdefault(self, key, default) 311 result = MultiDict.pop(self, key, *args) 315 result = MultiDict.popitem(self) [all …]
|
D | headers.py | 6 from webob.multidict import MultiDict 10 class ResponseHeaders(MultiDict):
|
D | request.py | 76 MultiDict, 803 vars = MultiDict.from_fieldstorage(fs) 809 vars = MultiDict.from_fieldstorage(fs)
|
/external/chromium-trace/catapult/third_party/Paste/tests/ |
D | test_request_form.py | 4 from paste.util.multidict import MultiDict 29 assert isinstance(d, MultiDict) 30 assert d == MultiDict([('a', '1'), ('b', '2'), ('c', '3'), ('b', '4')])
|
D | test_multidict.py | 10 from paste.util.multidict import MultiDict, UnicodeMultiDict 13 d = MultiDict({'a': 1}) 60 d = UnicodeMultiDict(MultiDict({b'a': 'a test'}))
|
/external/chromium-trace/catapult/third_party/webapp2/docs/guide/ |
D | request.rst | 51 ``.GET`` is a `MultiDict`_: it is like a dictionary but the same key can have 58 # The whole MultiDict: 68 # An iterable with alll items in the MultiDict: 84 It is also a `MultiDict`_ and can be accessed in the same way as ``.GET``. 91 # The whole MultiDict: 101 # An iterable with alll items in the MultiDict: 211 .. _MultiDict: http://pythonpaste.org/webob/class-webob.multidict.MultiDict.html target in Learn more about WebOb
|
/external/chromium-trace/catapult/third_party/Paste/paste/ |
D | request.py | 36 from paste.util.multidict import MultiDict 132 return MultiDict() 139 multi = MultiDict(parsed) 192 formvars = MultiDict()
|
D | wsgiwrappers.py | 21 from paste.util.multidict import MultiDict, UnicodeMultiDict 243 params = MultiDict()
|
/external/chromium-trace/catapult/third_party/Paste/docs/modules/ |
D | util.multidict.txt | 9 .. autoclass:: MultiDict
|
/external/chromium-trace/catapult/third_party/WebOb/docs/modules/ |
D | webob.txt | 86 .. autoclass:: MultiDict
|
/external/chromium-trace/catapult/third_party/WebOb/docs/ |
D | differences.txt | 110 variables). The equivalent in WebOb is MultiDict. 117 I believe Django does not order the keys fully; MultiDict is a 122 These return all values in MultiDict, but only the last value for 123 a QueryDict. That is, given ``a=1&a=2`` with MultiDict 142 The MultiDict object has a ``d.getone(key)`` method, that raises 160 ``res.headers``. In WebOb this is a MultiDict.
|
D | reference.txt | 188 For these variables WebOb uses a `MultiDict 189 <class-webob.multidict.MultiDict.html>`_, which is basically a 202 MultiDict([(u'check', u'a'), (u'check', u'b'), (u'name', u'Bob')]) 222 MultiDict([(u'name', u'Joe'), (u'email', u'joe@example.com')]) 258 MultiDict([(u'check', u'a'), (u'check', u'b'), (u'name', u'Bob')]) 260 MultiDict([(u'var1', u'value1'), (u'var2', u'value2'), (u'rep', u'1'), (u'rep', u'2')]) 277 MultiDict([(u'check', u'a'), (u'check', u'b'), (u'name', u'Bob')]) 289 MultiDict([(u'test', u'value')])
|
D | news.txt | 174 to Request.blank is a MultiDict. See https://github.com/Pylons/webob/pull/96 409 ``Request.POST`` is now just a plain ``MultiDict``. 561 * Hide password values in ``MultiDict.__repr__`` 646 * WebOb 1.0.1 changed the behavior of ``MultiDict.update`` to be more in line with 721 * Change the behaviour of ``MultiDict.update`` to overwrite existing header 1044 * ``request.params.copy()`` now returns a writable MultiDict (before
|
/external/chromium-trace/catapult/third_party/Paste/paste/util/ |
D | multidict.py | 15 class MultiDict(DictMixin): class 138 return MultiDict(self)
|
/external/chromium-trace/catapult/third_party/Paste/docs/ |
D | news.txt | 194 * In :class:`paste.fixture.TestApp` Accept MultiDict values for the 510 ``MultiDict``\ s. 694 ``paste.util.multidict.MultiDict`` 756 * Changed usage of ``paste.request.MultiDict`` to
|
D | do-it-yourself-framework.txt | 132 module (the ``FieldStorage`` class) and turns that into a MultiDict.
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/six/documentation/ |
D | index.rst | 202 <http://werkzeug.pocoo.org/docs/datastructures/#werkzeug.datastructures.MultiDict>`_.
|
/external/chromium-trace/catapult/third_party/six/documentation/ |
D | index.rst | 202 <http://werkzeug.pocoo.org/docs/datastructures/#werkzeug.datastructures.MultiDict>`_.
|