Thomas Kluyver

Results 876 comments of Thomas Kluyver

+1 For an easier starting point, maybe add a text repr that pretty prints it? I use an ast pretty printer which I stole off someone's blog: https://bitbucket.org/takluyver/greentreesnakes/src/96d6e70210789c0b743eabbbb57d9282b7e41d8c/astpp.py?at=default http://alexleone.blogspot.co.uk/2010/01/python-ast-pretty-printer.html It...

> Confusion with sparklyr Yeah, let's pick a different name ;-)

I'm not familiar with git terminology, but it sounds like you're suggesting it should only upload changed files, not new files?

I don't think we should need a separate command to add a file to the website - that's common enough (for images etc.) that I want it to be simple....

I think we should definitely include things like screencasts, whether we find a more general description of the section or have a separate section. In your case, it might make...

I'd just redirect to the notebook docs landing page. It has to be a js fake redirect, though - we can't do proper redirects on github pages, unless they've added...

The discussion on discourse was - at least as I understood it - about what to do for distribution names in wheel filenames. The agreement is to move towards similar...

[In the spec](https://packaging.python.org/en/latest/specifications/binary-distribution-format/#escaping-and-unicode), the name normalisation based on PEP 503 is a 'should' and we've said that "tools consuming wheels must be prepared to accept `.` (FULL STOP) and uppercase...

For reference (not saying this is the right way to do it), Pexpect supports `yield from s.expect('...', async=True)` within asyncio coroutines. The [pexpect.async module](https://github.com/pexpect/pexpect/blob/master/pexpect/async.py) is what powers that. I hope...

I don't have strong feelings either way on this, but I'd mention that it should be unnecessary once we implement jupyter/nbconvert#363, which will allow kernels to provide a hint for...