mirror of
https://github.com/python/cpython.git
synced 2025-08-02 08:02:56 +00:00
Don't abbreviate ABS, use long name ABSOLUTE.
This commit is contained in:
parent
f5af2aac38
commit
cbce280d4f
6 changed files with 8 additions and 8 deletions
|
@ -64,7 +64,7 @@ __all__ = ["all_feature_names"] + all_feature_names
|
|||
CO_NESTED = 0x0010 # nested_scopes
|
||||
CO_GENERATOR_ALLOWED = 0 # generators (obsolete, was 0x1000)
|
||||
CO_FUTURE_DIVISION = 0x2000 # division
|
||||
CO_FUTURE_ABSIMPORT = 0x4000 # absolute_import
|
||||
CO_FUTURE_ABSOLUTE_IMPORT = 0x4000 # perform absolute imports by default
|
||||
CO_FUTURE_WITH_STATEMENT = 0x8000 # with statement
|
||||
|
||||
class _Feature:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue