File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -14,6 +14,24 @@ Changelog
1414
1515.. towncrier release notes start
1616
17+ 6.7.0
18+ =====
19+
20+ *(2025-10-05) *
21+
22+
23+ Contributor-facing changes
24+ --------------------------
25+
26+ - Updated tests and added CI for CPython 3.14 -- by :user: `kumaraditya303 `.
27+
28+ *Related issues and pull requests on GitHub: *
29+ :issue: `1235 `.
30+
31+
32+ ----
33+
34+
17356.6.4
1836=====
1937
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1- """Multidict implementation.
1+ """
2+ Multidict implementation.
23
34HTTP Headers and URL query string require specific data structure:
45multidict. It behaves mostly like a dict but it can have
1112from ._compat import USE_EXTENSIONS
1213
1314__all__ = (
14- "MultiMapping" ,
15- "MutableMultiMapping" ,
16- "MultiDictProxy" ,
15+ "CIMultiDict" ,
1716 "CIMultiDictProxy" ,
1817 "MultiDict" ,
19- "CIMultiDict " ,
20- "upstr " ,
21- "istr " ,
18+ "MultiDictProxy " ,
19+ "MultiMapping " ,
20+ "MutableMultiMapping " ,
2221 "getversion" ,
22+ "istr" ,
23+ "upstr" ,
2324)
2425
25- __version__ = "6.6.4 "
26+ __version__ = "6.7.0 "
2627
2728
2829if TYPE_CHECKING or not USE_EXTENSIONS :
You can’t perform that action at this time.
0 commit comments