Bugfixes
-
Restored back
MultiDict
,CIMultiDict
,MultiDictProxy
, and
CIMutiDictProxy
generic type arguments; they are parameterized by value type, but the
key type is fixed by container class.MultiDict[int]
meansMutableMultiMapping[str, int]
. The key type of
MultiDict
is alwaysstr
, while all str-like keys are accepted by API and
converted tostr
internally.The same is true for
CIMultiDict[int]
which meansMutableMultiMapping[istr, int]
. str-like keys are accepted but converted toistr
internally. ((#682))