File tree Expand file tree Collapse file tree 3 files changed +27
-9
lines changed Expand file tree Collapse file tree 3 files changed +27
-9
lines changed Original file line number Diff line number Diff line change @@ -14,6 +14,24 @@ Changelog
14
14
15
15
.. towncrier release notes start
16
16
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
+
17
35
6.6.4
18
36
=====
19
37
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
- """Multidict implementation.
1
+ """
2
+ Multidict implementation.
2
3
3
4
HTTP Headers and URL query string require specific data structure:
4
5
multidict. It behaves mostly like a dict but it can have
11
12
from ._compat import USE_EXTENSIONS
12
13
13
14
__all__ = (
14
- "MultiMapping" ,
15
- "MutableMultiMapping" ,
16
- "MultiDictProxy" ,
15
+ "CIMultiDict" ,
17
16
"CIMultiDictProxy" ,
18
17
"MultiDict" ,
19
- "CIMultiDict " ,
20
- "upstr " ,
21
- "istr " ,
18
+ "MultiDictProxy " ,
19
+ "MultiMapping " ,
20
+ "MutableMultiMapping " ,
22
21
"getversion" ,
22
+ "istr" ,
23
+ "upstr" ,
23
24
)
24
25
25
- __version__ = "6.6.4 "
26
+ __version__ = "6.7.0 "
26
27
27
28
28
29
if TYPE_CHECKING or not USE_EXTENSIONS :
You can’t perform that action at this time.
0 commit comments