15532th

Results 13 comments of 15532th

Got this when trying to download random ongoing streams for testing, and simply increasing timeout didn't really help much. I'm guessing that the reason timeout could never get triggered for...

Permalink to the [line](https://github.com/aio-libs/aiohttp/blob/0e91eb0bd94298e501084f245df44cc1772c49e5/aiohttp/cookiejar.py#L314) in question. On top of that line there is a comment, stating > # It's critical we use the Morsel so the coded_value > # (based...

Oh, sure, you should have asked sooner. Here is a minimal example based on the code snippet you provided: ```python >>> from aiohttp import CookieJar >>> from http.cookies import SimpleCookie...

The actual code from real project was referenced [above](https://github.com/aio-libs/aiohttp/issues/7478#ref-commit-9feb249), here is a self-contained example: ```python import asyncio from http import cookiejar from http.cookies import SimpleCookie from pathlib import Path from...

My initial expectations before coming across this issue were that content of a `CookieJar(quote_cookie=False)` will always be unquoted regardless of the input. Given that Morsel object contains both raw and...

You could argue that `'"value/one;"'` is a perfectly valid raw cookie value that just happened to look like it's quoted. There absolutely could exist a frontend-side javascript code that sets...

There is no need to perform unquoting (the process of removing quotes and restoring escaped special characters). As I said, `Morsel` object contains both escaped and raw values, so "quoting"...

Apparently making cross-platform links is not as simple as it seemed to be. Commiting with `git config core.symlinks` set to `true` makes symlink work correctly on Windows when repo is...

I have a feature request for this extractor. The site uses jwt token for authentification, and since it is stored in local storage instead of cookies, the extractor generates one...

Everything seems to be working fine in my tests. Thank you.