Emma Smith
Emma Smith
We've cut things down to under 15MB so I think we don't need to do this. If we add more modules and the binary size creeps back up I think...
Yeah we should do certain checks that what we are building is reasonable (e.g. that it includes zlib, that we are under 20MB, etc).
I've been thinking about this a bit recently. I think a lot of people will want to only include certain modules (whether Python or C) and add custom libraries, since...
A custom finder/loader would definitely be a good option. It might be nice to have a tool that runs `installer` into a temporary directory, zips that up, then you can...
I'm actually surprised a nanosecond timer works at all considering the spectre mitigations
Protocols just landed in Mypy, so you could use Mypy from git (Zulip does this), you can take advantage of Protocols ~~today~~ once they are in typing extensions or mypy...
Mypy does do *static* type inference. For example: ``` a = {} .... print(a['test']) ``` We don't know the best way to safely type `a`, so mypy asks the user...
@jcfr thanks for the quick response! I forgot libm was a thing, so perhaps it just isn't linking to Python period? Also, I'm not entirely sure how the repo you...
Okay, I am building based off of [these changes](https://github.com/ethanhs/python-cmake-buildsystem) (I know this isn't very clean if I make a PR I will restart from a clean pull and follow the...
It looks like #980 will implement for `[usize; T]` using const generics, so in 0.16.x you should be able to use `array[[i, j, k, l, m, n, o, p]]`, and...