Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2022-09-19 | compilers: directly import from subpackages | Eli Schwartz | 1 | -1/+1 | |
It turns out we don't generally need to proxy every compiler ever through the top-level package. The number of times we directly poke at one is negligible and direct imports are pretty clean. | |||||
2022-08-26 | Fix purely white space issues reported by flake8 | Alf Henrik Sauge | 1 | -6/+6 | |
2022-08-17 | interpreter: move handling of module stability to interpreter | Dylan Baker | 1 | -0/+360 | |
Thanks to `ModuleInfo`, all modules are just named `foo.py` instead of `unstable_foo.py`, which simplifies the import method a bit. This also allows for accurate FeatureNew/FeatureDeprecated use, as we know when the module was added and if/when it was stabilized. |