Antony Lee
Antony Lee
When using a package versioning helper such as setuptools_scm, it is quite natural to write, in a package's toplevel `__init__.py`, something like ``` from ._version import version as __version__ ```...
See https://pandoc.org/MANUAL.html#emphasis: > A * or _ character surrounded by spaces, or backslash-escaped, will not trigger emphasis: > `This is * not emphasized *, and \*neither is this\*.` This can...
numpydoc generates rather verbose outputs for namedtuples, especially when combined with autosummary: ``` $ sphinx-quickstart -q -m --sep -pfoo -afoo --extensions=sphinx.ext.autosummary,numpydoc ``` then edit `source/index.rst` to contain ```rst .. autosummary::...
foobar.py: ```python def main(): """ Some fooings, refer to :ref:`the-title` and :doc:`/index`. See Also -------- :ref:`the-title` :doc:`/index` """ ``` index.rst ```rst .. _the-title: Welcome to foo's documentation! =============================== .. toctree::...
It would be nice if it was possible to have subsections either in the "main" description or in the Notes section. Right now Matplotlib just uses bold to delineate such...
Currently, if a line takes a very long time to execute, the profiler output gets misaligned vertically: ``` import time @profile def func(): 1 # just to show the alignment...
On mintty 3.5.0 + wsl (shell: /bin/sh, no prompt), requesting XTVERSION and then the Primary DA (`printf '\033[>0q\033[c'`) yields `^[[?1;0c^[P>|mintty 3.5.0^[\`, i.e. the replies are correct, but made out of...
This is only a very minor annoyance, but would it be possible to put .testmondata in .cache/, either via the pytest-cache API (which is part of pytest-core since 2.8), or...
It would be useful if the qtconsole has a shortcut for reverse-searching the history, similar to readline and ipython (via ptk)'s ctrl-r (reverse-i-search).
Currently, the qtconsole still shows tooltips upon opening a parenthesis, whereas the notebook has switched (for reasonable reasons) to requiring shift-tab for triggering the tooltip (jupyter/notebook#167) -- a shortcut that...