On Fri, Sep 18, 2020 at 12:32:32PM -0400, Wes Turner wrote:
Is there a list of supported preprocessor directives or compiler directives supported by CPython and other tools?
I expect that most tools will have their own list. Python doesn't really have directives other than `from __future__ import ...`.
You can view the available future imports by treating it as a regular module and inspecting that:
import __future__ dir(__future__)
There's also the command line options you can give when invoking the interpreter.