Antony Lee
Antony Lee
Fair, but note that https://www.python.org/dev/peps/pep-0008/#module-level-dunder-names specifically does not consider `__version__` to be worth adding to `__all__`.
It's not a very serious example, but it's also the only thing (AFAICT) in the reference docs that addresses this point...
To be clear, this is not really about `import *`, but about how to reuse `__version__` defined in a helper module.
Well, another argument given above is that PEP8 explicitly does not add `"__version__"` to `__all__`. Yes, the example is clearly a bit tongue-in-cheek, but, given its clean history (it was...
> This project looks for high confidence lints that it can report. My second point in my previous message is that this is with high confidence an invalid lint, and...
In the same vein, the style options (https://github.com/tmux/tmux/wiki/FAQ#how-do-i-translate--fg--bg-and--attr-options-into--style-options) need to be updated.
In fact you can just use ctypes for this; see e.g. https://github.com/anntzer/mpl_cairo/blob/master/mpl_cairo/__init__.py (let me know if the example is unclear). The advantage of using ctypes is that you can write...
FWIW if auditwheel was updated to support the most recent version of wheel (but see #102), this would not need to be implemented on auditwheel's side, but would just be...
@jnothman I have a long-term todo of rewriting numpydoc to work by parsing the *original* input into a docutils tree (using the default parser), then do a transform on that...
Bumping it on my todo list...