Bartosz Sławecki

Results 110 comments of Bartosz Sławecki

OK, I think it's done. I haven't added the `uncached` API mentioned in the issue—we can add it upon request.

An extra optimization would be to add a possibility to inform the decorator the method is final, so we can fall back to old behavior with no hierarchy-based resolution in...

`sys.intern()` very slightly improves the performance on my attribute lookup stress tests.

> This functionality was more than a convenience. It addressed a real-world use-case, where if the method wasn't present, it led to an interface inconsistency forcing the consumer to handle...

I asked for opinions on this implementation on [Python Discord](https://discord.com/invite/python) ([`#internals-and-peps`](https://discord.com/channels/267624335836053506/709904092280914030)). I got some excellent input from @Sachaa-Thanasius and @JelleZijlstra (thanks!) about a similar case for `functools.cached_property`. I learned that...

Marking as a draft until we reach consensus on the design and the preferred implementation.

If I could suggest something, it would be just using `[:1]` instead of `[0:1]`, as the former simply works and is less unnecessarily explicit. Similarly to how you would probably...

No, it's not your code that has an error. This "error" has no consequences other than the confusing message in stderr upon closing the network IO communication. A fix will...

@agronholm Hi! I reached out to you via e-mail. Let me know if you're interested in me taking the full responsibility of resolving this.

I'll suggest adding this to our _How-to_.