Results 18 comments of Brian Hou

@madan96 Since we're updating clang-format to 6.0, I think we should be able to use this new option to automatically format header blocks. Can you try this out? (And simultaneously...

I suspect this is because this doesn't use the new API at all, so we're forgetting to check it appropriately.

@gilwoolee @aditya-vk @egordon is this still an issue?

Oh yeah! I think we didn't use it earlier because we were limiting ourselves to Python 3.2 features, but it might be promising. I'll try to investigate this weekend.

So as far as I can tell, `subprocess` is just for shell things. I tried re-implementing the timeout with `multiprocessing.Process` rather than `threading.Thread` (per http://eli.thegreenplace.net/2011/08/22/how-not-to-set-a-timeout-on-a-computation-in-python), but ran into issues with...

Nope, I didn't know they existed.

I took a look into Futures and it looks like it's just a wrapper around threading/multiprocessing that's [basically what we're doing](https://hg.python.org/cpython/file/3.4/Lib/concurrent/futures/_base.py#l375), so it seems likely that it'd run into the...

This was mostly resolved by #136, but Albert had some comments that we should consider. > How does this behave when a sqlite test case has multiple prompts? > >...