Ravencentric
Ravencentric
I don't think this is a good idea. Sometimes extension might be the only difference between two files. Extensions also hold important information. Example: ``` Some Show - S01E01.mkv Some...
How would a case like this be covered? Where you're extending the wrapped function with your own params? For example, consider this wrapper around httpx.Client: ```py from collections.abc import Callable...
Thank you for the detailed example! My apologies for going off-topic initially, this will be my last off-topic message just to add some of the discussion links I found relating...
My current workaround for this is loading the pickled response and recasting it: ```py with open("pickled_response", "rb") as file: response: Response = pickle.load(file) return Response(status_code=response.status_code, content=response.content) ```
I think v1.0.0 should wait till proper `mode='a'` support. ~~I'll make an issue about it in more details later~~. Here https://github.com/miurahr/py7zr/issues/603
Yep! Python 3.8 will also be EOL this month so I think it's time to drop 3.8, add support for 3.13 and release 1.0.0
3.13 is now supported, all that's left is a new release!
Feel free to make a PR.
> What would exactly be the ask here? Keeping the docs up to date with specific docker hashes? I'm just asking the docs to talk about pinning by hashes, which...
@zluckytraveler Can you please fix the lint error?