Move python into its own ruff_python crate (#2593)

This commit is contained in:
Charlie Marsh 2023-02-05 17:53:58 -05:00 committed by GitHub
parent ecc9f5de99
commit 87d0aa5561
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
33 changed files with 158 additions and 119 deletions

View 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",
];