Thomas Kluyver

Results 876 comments of Thomas Kluyver

Thanks! What do you think about printing multiline matches by default, instead of requiring an extra option? It seems like a good idea if each match is just a few...

Sorry for the long delay! In this case, I think the best option is to let the behaviour differ by the version of Python in use, so newer versions of...

Yup, that would be nice. It's a bit fiddly, because Python only records the line where a node starts, not where it ends. I can think of two approaches to...

I'd guess not too hard. The biggest challenge would be the differences in AST structure - it changes a bit on each Python version. My docs here have some notes...

Thanks, that's useful to know. Sympy is quite a bit bigger than IPython, according to Ohloh. If you have a spare moment to time a simple search, I'd be interested...

You've already done more careful measurements than me ;-). In my brief experiments with IPython, different simple queries all seemed to take about the same time. When I tried profiling...

Hi Stefan, you can take that LICENSE file (as it is in 0.2) to apply to 0.1 as well if you want.

My `/etc/profile.d/vte.sh` contains a check that it's running under VTE, which skips the VTE integration if not: ```shell # Not running under vte? [ "${VTE_VERSION:-0}" -ge 3405 ] || return...

It's certainly not expected behaviour, but bash_kernel is a bit fragile about things like this, because it's really running bash in an invisible terminal, sending commands to it and collecting...

That PS1 is fine - in fact, it's part of how bash_kernel works, so if you did manage to get rid of it, it would break - it needs to...