Brett Cannon
Brett Cannon
Another possibility is PyPI provides a service the communicates with a service run by various platform providers that perform the actual builds. For example, if Red Hat wanted to provide...
Another benefit to this is moving the entire community to a new Python release very quickly compared to having to wait for wheels to percolate up your dependency tree from...
A PR would be appreciated!
Please feel free to propose a PR!
Yes, ideally there would be no errors, but this is software so that's not about to happen. ;) I'll open a separate issue to more clearly explain what a stale...
Actually, now I see the issue: the brotli package you are pulling in is not hosted on PyPI/pypi.io and so distlib doesn't know anything about it. So this isn't a...
It's not only possible but I once had code to do it when http://py3ksupport.appspot.com/ was running. But I also found it wasn't worth the hassle and extra overhead. I have...
If I end up trying to use parso for the source transformation stuff that I'm thinking about I can look at writing the docs. I assume Jedi has the best...
Looking at the code it seems the `refactor()` method is meant for 1:1 statement/exression replacements, and I need 1:many for my project. So I don't expect to be using parso...
To give context, this is for my [syntactic sugar blog posts](https://snarky.ca/tag/syntactic-sugar/) that I have been writing. One of the things I'm going to tackle is rewriting `for` loops in terms...