Tin Tvrtković
Tin Tvrtković
Sure, if someone contributed it ;)
So here's the thing. The entire async ecosystem is built with cancellation in mind; cancelling asyncio tasks and writing async code so that it handles cancellation is a routine thing....
Yeah, that sounds about right, but you'll need to remember to `await temp_file.__aexit__(None, None, None)` when you're done with the file. (Or I guess you can let the garbage collector...
The way aiofiles works is by wrapping blocking calls in a function that uses threads. This unfortunately has inherent limitations, for example threads can't be portably and safely cancelled, unlike...
Do you go through `__init__` when decoding? You don't, right?
cattrs goes through `__init__` so converters run, and I think folks would expect them to (also probably safer). attrs validators too!
My initial thoughts were not focused on serialization, although that's a part of it. Even if serialization wasn't part of the story, I also wouldn't discount the benefits of faster...
Hi, I caught a cold so my replies here will be somewhat delayed, sorry ;)
Yessir, putting this on my shortlist
Hello, I've kinda had to declare open source bankruptcy recently since I'm way behind on everything, hence all the delays. So let me try answering some of your questions. I...