|
12 | 12 |
|
13 | 13 |
|
14 | 14 | from typing import (
|
15 |
| - List, |
16 |
| - Sequence, |
17 |
| - Set, |
18 |
| - Tuple, |
| 15 | + List, |
| 16 | + Sequence, |
| 17 | + Set, |
| 18 | + Tuple, |
19 | 19 | )
|
20 | 20 |
|
21 | 21 | import os
|
|
28 | 28 | # Also we can use other ones.
|
29 | 29 |
|
30 | 30 | available_futures = {
|
31 |
| - # mypy-specific features |
32 |
| - 'mypy-codec': '0.0', |
33 |
| - # platform.python_implementation() |
34 |
| - 'variant-CPython': '0.0', |
35 |
| - 'variant-PyPy': '0.0', |
36 |
| - 'variant-Jython': '0.0', |
37 |
| - 'variant-IronPython': '0.0', |
38 |
| - # real ones |
39 |
| - 'nested_scopes': '2.1', |
40 |
| - 'generators': '2.2', |
41 |
| - 'division': '2.2', |
42 |
| - 'absolute_import': '2.5', |
43 |
| - 'with_statement': '2.5', |
44 |
| - 'print_function': '2.6', |
45 |
| - 'unicode_literals': '2.6', |
46 |
| - 'barry_as_FLUFL': '3.1', |
| 31 | + # mypy-specific features |
| 32 | + 'mypy-codec': '0.0', |
| 33 | + # platform.python_implementation() |
| 34 | + 'variant-CPython': '0.0', |
| 35 | + 'variant-PyPy': '0.0', |
| 36 | + 'variant-Jython': '0.0', |
| 37 | + 'variant-IronPython': '0.0', |
| 38 | + # real ones |
| 39 | + 'nested_scopes': '2.1', |
| 40 | + 'generators': '2.2', |
| 41 | + 'division': '2.2', |
| 42 | + 'absolute_import': '2.5', |
| 43 | + 'with_statement': '2.5', |
| 44 | + 'print_function': '2.6', |
| 45 | + 'unicode_literals': '2.6', |
| 46 | + 'barry_as_FLUFL': '3.1', |
47 | 47 | }
|
48 | 48 |
|
49 | 49 |
|
|
0 commit comments