Partitioned cookies on Python <3.14
未关闭
- 主要语言
- Python
- 星标
- 16.5k
- 派生
- 2.4k
- 平均合并
- 17 小时 22 分钟
- 30 天内合并 PR
- 212
描述
In aiohttp 3.12 we'll have support for partitioned cookies, but this is dependent on upstream support in Python 3.14+.
If anyone needs support in an older release of Python, it can be monkey patched with this code:
```python
if sys.version_info < (3, 14):
from http import cookies
# See: https://github.com/python/cpython/issues/112713
cookies.Morsel._reserved["partitioned"] = "partitioned"
cookies.Morsel._flags.add("partitioned")
```
I'll leave this as a pinned issue for a couple of years until the feature is more widely available without monkey patching.
贡献指南
评估
这个 Issue 还没有评估数据。