Charles Bouchard-Légaré
Charles Bouchard-Légaré
Hello there, and thanks @nedbat for coverage.py which is absolutely great. In case it helps you narrow down the issue, I had the same problem here, without using pytest-cov, and...
@ashb It is indeed not trivial. One could assemble an Inventory manually using [sphobjinv](https://sphobjinv.readthedocs.io/en/latest/) but this would be tedious. But Sphinx is one of the best documentation processor in my...
Got a similar error when I have class definitions nested in functions ```python def some_function(): class SomeClass: pass ``` ``` Extension error (sphinx_autodoc_typehints): Handler for event 'autodoc-process-docstring' threw an exception...
Found the root cause in my case. To reproduce, document an `async` function wih a nested function definition. Example ```python async def async_function(): class InnerClass: def __init__(self): pass ``` the...
Thank you for this feedback. I am myself still working my mind around this. I feel that some hindrances to this objectives could be lifted with a few changes in...
Once installed on your system, here is a TeX snippet to make it easy to user fontawesome from markdown. In your style file (say [chmduquesne.tex](https://github.com/mszep/pandoc_resume/blob/master/styles/chmduquesne.tex)) ```tex \usesymbols[fontawesome] \def\fa#1{\symbol[fontawesome][#1]} ``` in...
I tend to use sphinx for my doc. Mostly prose, but I like generated api doc to exist so I can hyperlink to it. That being said, there is no...
@detroitcoder You can also embed your templates within a python package, give your package a console entry point that reads some values (from env variables, for instance) and then use...
> If you can do that, it would be great to avoid regressions. Avoiding regression is great, but in the meantime, the tool is broken. Please consider merging this as-is