Thomas Kluyver
Thomas Kluyver
I've tried filing an issue on pre-commit.ci itself - we'll see what comes of that: https://github.com/pre-commit-ci/runner-image/issues/114
Anthony - the maintainer of pre-commit - pointed out that network access is disabled when hooks run, so installing stuff in a virtualenv wouldn't work anyway, and the only option...
Recovery tools may still be able to help: deleting a file doesn't usually overwrite the data, it just marks the area as not in use. So recovery tools work by...
I think we ran across something like this before. Are you running Jupyter in some kind of container? My memory of it is fuzzy, but if I recall correctly, the...
Thanks for the idea and the offer to work on it. However, I don't think that Windows shell integration is in scope for Pynsist itself. I've written a doc page...
> appending is an interesting case. I guess the options are... `pwritev2` has an RWF_APPEND flag to write at the end of the file regardless of the offset, and if...
> Should memory channels have a sync close() method? They could easily, they only reason not to is that it makes life simpler for hypothetical IPC channels. I have no...
I've just run into the distinction between `SocketType` and `_SocketType` - there seems to be no way to use it as a type annotation so that PyCharm is happy. Is...
I think this is the same as ipython/ipython#136 and ipython/ipython#62. When you're already inside a function scope, list comprehensions effectively make a closure, but you can't define closures in dynamically...
As in outside a debugger? Global variables work differently to variables in nested non-local scopes, so we're not actually defining closures there. Functions have a reference to the global _namespace_,...