@@ -71,14 +71,14 @@ first positional parameter.
71
71
72
72
A multidict with all the variables in the query string.
73
73
74
- Read-only :class: `~aiohttp.multidict.MultiDict ` lazy property.
74
+ Read-only :class: `~aiohttp.multidict.MultiDictProxy ` lazy property.
75
75
76
76
.. attribute :: POST
77
77
78
78
A multidict with all the variables in the POST parameters.
79
79
POST property available only after :meth: `Request.post ` coroutine call.
80
80
81
- Read-only :class: `~aiohttp.multidict.MultiDict `.
81
+ Read-only :class: `~aiohttp.multidict.MultiDictProxy `.
82
82
83
83
:raises RuntimeError: if :meth: `Request.post ` was not called \
84
84
before accessing the property.
@@ -87,7 +87,7 @@ first positional parameter.
87
87
88
88
A case-insensitive multidict with all headers.
89
89
90
- Read-only :class: `~aiohttp.multidict.CIMultiDict `
90
+ Read-only :class: `~aiohttp.multidict.CIMultiDictProxy `
91
91
lazy property.
92
92
93
93
.. attribute :: keep_alive
@@ -129,7 +129,7 @@ first positional parameter.
129
129
130
130
A multidict of all request's cookies.
131
131
132
- Read-only :class: `~aiohttp.multidict.MultiDict ` lazy property.
132
+ Read-only :class: `~aiohttp.multidict.MultiDictProxy ` lazy property.
133
133
134
134
.. attribute :: payload
135
135
@@ -218,7 +218,7 @@ first positional parameter.
218
218
A :ref: `coroutine <coroutine >` that reads POST parameters from
219
219
request body.
220
220
221
- Returns :class: `~aiohttp.multidict.MultiDict ` instance filled
221
+ Returns :class: `~aiohttp.multidict.MultiDictProxy ` instance filled
222
222
with parsed data.
223
223
224
224
If :attr: `method ` is not *POST *, *PUT * or *PATCH * or
0 commit comments