Almar Klein

Results 1566 comments of Almar Klein

Thanks! This looks really well done. The linter is complaining. I suspect this is because the latest `black` has some updates. Could you run `black .` to update the formatting?

> My main problem was that I was not able to push because mypaas pushed everything but the hardcoded ignore dirs. I've solved that in some projects by creating a...

Yes, a PR would be appreciated!

> It also does not specify the toml requirement. I just fixed this. Thanks for the heads-up! As for that certificate error. I read that _"Normally the python installation has...

The three of you should team up ;)

Well, it is arguably worth (briefly) considering the adoption of ASGI by frameworks such as Trio. From what I've understand, some Trio devs consider ASGI too asyncio-ish. But I don't...

Why not make uvloop optional? (especially with asyncio being quite a bit faster in Python 3.7)

We're running into similar issues and I'm playing with the suggestion above. An interesting case that I run into, that may be of interest: if an `Output` widgets is used...

Yes. So this works fine, printing "hello 2" in the cell output. ```py import asyncio ran = 0 def print_some(): global ran ran += 1 print("hello 2") loop = asyncio.get_event_loop()...

I'd love for this functionality to land, in particular to communicate images and volumetric data more efficiently. In addition to being more memory efficient, it would also improve the speed...