Antony Lee
Antony Lee
FWIW, this seems related to the use of the C.UTF-8 locale, which is present on e.g. Debian but not on Arch. Not sure there's much to do about it in...
For Extension building, perhaps it would be simpler to simply dump everything returned by `pkgconfig.cflags` into `extra_compile_args` and everything returned by `pkg_config.libs` into `extra_link_args`? Sure, you lose a bit of...
I think the image refactor of 2.0 made this irrelevant. Suggesting to close this. Edit: or perhaps not, it still looks faster.
> The extension module is called (empty string) > It could be the build trickery it engages in in its setup.py. I used to do very weird things in setup.py,...
Thanks for the investigation. Looks like the `if` check and early return are actually unnecessary since https://github.com/pypa/setuptools/pull/1150 (which installs setup_requires very early); I pushed a commit on mplcairo that removes...
As a tangent, note that the warnings go to stderr and at least in some cases Appveyor seems to treat (by default, at least in some cases?) any (powershell) script...
Something like ``` diff --git i/syntax/rst.vim w/syntax/rst.vim index a0e2806..9cd38ca 100644 --- i/syntax/rst.vim +++ w/syntax/rst.vim @@ -88,44 +88,31 @@ execute 'syn region rstExDirective contained matchgroup=rstDirective' . execute 'syn match rstSubstitutionDefinition contained'...
Sphinx has `.. highlight::` which sets the default language (http://www.sphinx-doc.org/en/stable/markup/code.html). Now a quick look suggests (I'm not sure) that this is not part of the docutils spec; on the other...
There's no hurry, I'm fine with this issue tracker being a TODO list :-) I can probably implement this "at some point" but #reallife is also catching up.
Note for whoever tries to implement this (perhaps myself): it may be possible (or not) to implement this in a reasonably robust manner by having `.. highlight::` start a new...