Thomas Kluyver
Thomas Kluyver
For non-trivial code, matches are not produced in the order they appear in the file (`ast.walk()` is documented as running 'in no specified order'). This makes it harder for a...
Without indexing, searching the IPython codebase takes a little under 4s (on my PC). Of this, about 0.8s is parsing, and 2.5s is walking the nodes. This is usable, but...
E.g. `JUPYTER_BASH_KERNEL=1` Code can already look for `JPY_PARENT_PID`, but that's not really intended for this.
As of PR #7, the labels on Latex cross links look like: *Chapter 2* or *Section 2.1*. How do we let people configure these? Command line options? Notebook metadata? Nbconvert...
Currently, I think notebooks have to match the regex `(\d+)-(.+)\.ipynb` (e.g. `01-introduction.ipynb`) for everything to work correctly. They are sorted lexicographically, and then the latex export uses its own numbering...
Thanks for this tool, which we're using for h5py. :slightly_smiling_face: We're running this inside `pre-commit` on https://pre-commit.ci/ (a dedicated CI platform for pre-commit). At the moment, we have version 0.39,...
This is a follow up to an issue opened on Jupyter: https://github.com/jupyter/notebook/issues/3631 send2trash on Windows uses the `SHFileOperation` interface with the `FOF_ALLOWUNDO` flag to move files to the recycle bin....
In a GUI application considering using send2trash, we would like to have an 'undo' button, similar to the experience when you delete a conversation in GMail. I've no idea how...
### Versions RedNotebook version (make sure you have the latest version): 2.18 Operating system and version: Linux, Fedora 31 ### Details (Hi again Jendrik! I contributed a couple of years...
`SimpleAsyncHTTPClient` accepts a custom `resolver` instance, and this can be used to make an HTTP connection to Unix sockets (see also #2671). I would like to do the same with...