Sidney Cadot

Results 9 comments of Sidney Cadot

I checked out that branch. What is the proper way of testing it -- should I just do a "python setup.py install" (does that work properly on Python 3.3) ?...

@tk0miya Any chance this could be reviewed? The PR has been in the pipeline for few years now. This feature is pretty vital -- the fact that you cannot sanely...

@eric-wieser @tk0miya The patch works as promised for the HTML backend, but there seems to be an ordering issue with the latexpdf backend. Please verify this before merging the patch....

I toyed around with the approach of PR #8847 (which was rejected), hoping that this would behave nicer in PDF. However, there too, the Latex-rendered version doesn't pick up on...

Seems like something deeper is going wrong. The LaTeX ToC isn't properly updated, but the same is true for a HTML ToC, it seems; they both go wrong in much...

@lsaffre @boypeet you both approved this PR; but there is a known issue with at least the LateX backend (see https://github.com/sphinx-doc/sphinx/pull/3622#issuecomment-848804244). Much as I like a good solution to the...

Hi Jesse, To be honest: I can't remember. I did quite a bit of work on this a few years ago but due to time pressure I haven't been able...

I had a cursory look at some different stm32 mcu's startup code assembly, it appears that this is done this way across the startup code of more STM32 families; the...

I concur with this assessment. The line ``` buff.extend([0] * (8 - (length % 8))) ``` could be replaced by ``` buff.extend([0] * (-length % 8)) ``` to get the...