mirror of
https://github.com/astral-sh/ruff.git
synced 2025-08-24 12:24:36 +00:00
Move python
into its own ruff_python
crate (#2593)
This commit is contained in:
parent
ecc9f5de99
commit
87d0aa5561
33 changed files with 158 additions and 119 deletions
13
crates/ruff_python/src/future.rs
Normal file
13
crates/ruff_python/src/future.rs
Normal file
|
@ -0,0 +1,13 @@
|
|||
/// 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",
|
||||
];
|
Loading…
Add table
Add a link
Reference in a new issue