Implement F407 (#158)

This commit is contained in:
Charlie Marsh
2022-09-11 18:05:28 -04:00
committed by GitHub
parent 549732b1da
commit 02ab52b3e2
11 changed files with 70 additions and 2 deletions

13
src/python/future.rs Normal file
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",
];