Коренберг Марк

Results 147 comments of Коренберг Марк

``` pylint 3.0.4 astroid 3.0.3 Python 3.12.2 (main, Feb 21 2024, 00:00:00) [GCC 13.2.1 20231205 (Red Hat 13.2.1-6)] ``` Still actual

@Pierre-Sassoulas I would call `useless-f-string`

@DanielNoord ``` In [1]: timeit f'{42}' 70 ns ± 1.14 ns per loop (mean ± std. dev. of 7 runs, 10,000,000 loops each) In [2]: timeit str(42) 71.9 ns ±...

I'm against. Because it predates RFC. I don't see any real case where we should not decompress automatically. The Content-Encoding header is not related to data contents actually. It is...

https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Encoding The Content-Encoding entity header is used to compress the media-type. When present, its value indicates which encodings were applied to the entity-body. It lets the client know how to...

@JustAnotherArchivist I've updated the comment, sorry for the long delay.

Regarding `curl`, it has `--compressed`. This option makes it understand `content-encoding` the same way as a browser. The same for wget , but `--compression=auto`. Well. We may argue more and...