@@ -6,31 +6,31 @@ public enum FutureFeature implements Pragma {
6
6
/**
7
7
* Enables nested scopes.
8
8
*/
9
- // nested_scopes(CodeFlag.CO_NESTED),
9
+ nested_scopes (CodeFlag .CO_NESTED ),
10
10
/**
11
11
* Makes integer / integer division return float.
12
12
*/
13
- // division(CodeFlag.CO_FUTURE_DIVISION),
13
+ division (CodeFlag .CO_FUTURE_DIVISION ),
14
14
/**
15
15
* Enables generators.
16
16
*/
17
- // generators(CodeFlag.CO_GENERATOR_ALLOWED),
17
+ generators (CodeFlag .CO_GENERATOR_ALLOWED ),
18
18
/**
19
19
* Enables absolute imports.
20
20
*/
21
- // absolute_import(CodeFlag.CO_FUTURE_ABSOLUTE_IMPORT),
21
+ absolute_import (CodeFlag .CO_FUTURE_ABSOLUTE_IMPORT ),
22
22
/**
23
23
* Enables the with statement.
24
24
*/
25
- // with_statement(CodeFlag.CO_FUTURE_WITH_STATEMENT),
25
+ with_statement (CodeFlag .CO_FUTURE_WITH_STATEMENT ),
26
26
/**
27
27
* Enables the print function.
28
28
*/
29
- // print_function(CodeFlag.CO_FUTURE_PRINT_FUNCTION),
29
+ print_function (CodeFlag .CO_FUTURE_PRINT_FUNCTION ),
30
30
/**
31
31
* Enables unicode literals.
32
32
*/
33
- // unicode_literals(CodeFlag.CO_FUTURE_UNICODE_LITERALS),
33
+ unicode_literals (CodeFlag .CO_FUTURE_UNICODE_LITERALS ),
34
34
/**
35
35
* Use braces for block delimiters instead of indentation.
36
36
*/
0 commit comments