Matan Gover

Results 84 comments of Matan Gover

I agree `-i` could be nice to have. `git clang-format` is good for formatting single files or commits, but I want to reformat the whole source tree of my project...

For anyone else coming here looking how to run Python with ALPN support (OpenSSL 1.0.2) on Heroku, see instructions here: [Compiling Python with custom OpenSSL on Heroku](https://gist.github.com/matangover/82b2c005740f0a2db8a91e910ddd2f0a). Hope this helps...

@gvanrossum, is there any news regarding integration of mypy with various editors? I could not find any information. I am interested on working on a mypy-based language server -- I've...

I can reproduce this easily by copying the code from the example notebook posted above, and adjusting the column contents to long values instead of the given short values. @ibdafna...

Screenshot - I would expect "col1" to be resized based on the cell contents. ![image](https://user-images.githubusercontent.com/5028956/162637405-47da976b-1ca7-44fc-a109-a245b7f38158.png)

(Perhaps this is simply a missing feature)

Cool. I know some tools that make it easier to add type annotations for existing code using static inference / runtime introspection. If I have time I'll try running one...

Gotcha. Precise numpy typing is definitely nice to have but we could also do that as a second step

I actually was thinking it's better to keep most of the annotations in the code itself (as opposed to in separate pyi files) where possible. I also ran stubgen and...

I added annotations to librosa, please check the [typing branch](https://github.com/matangover/librosa/tree/typing) of my fork. I should open a PR at some point after some more clean up How I did it:...