mirror of
https://github.com/astral-sh/ruff.git
synced 2025-08-11 14:18:28 +00:00

In hindsight, `ruff_python` is too general. A good giveaway is that it's actually a prefix of some other crates. The intent of this crate is to reimplement pieces of the Python standard library and CPython itself, so `ruff_python_stdlib` feels appropriate.
13 lines
300 B
Rust
13 lines
300 B
Rust
/// A copy of `__future__.all_feature_names`.
|
|
pub const ALL_FEATURE_NAMES: &[&str] = &[
|
|
"nested_scopes",
|
|
"generators",
|
|
"division",
|
|
"absolute_import",
|
|
"with_statement",
|
|
"print_function",
|
|
"unicode_literals",
|
|
"barry_as_FLUFL",
|
|
"generator_stop",
|
|
"annotations",
|
|
];
|