| Modifier and Type | Field and Description |
|---|---|
| private static Iterable | |
| public static final CodeFlag | CO_FUTURE_ABSOLUTE_IMPORT
Absolute import. |
| public static final CodeFlag | CO_FUTURE_DIVISION
Standard division of integers returns float, truncating division needs to be enforced. |
| public static final CodeFlag | CO_FUTURE_PRINT_FUNCTION
print function. |
| public static final CodeFlag | CO_FUTURE_UNICODE_LITERALS
unicode literals. |
| public static final CodeFlag | CO_FUTURE_WITH_STATEMENT
With statement. |
| public static final CodeFlag | CO_GENERATOR
The compiled code block is a generator code block. |
| public static final CodeFlag | CO_GENERATOR_ALLOWED
Denotes that generators are enabled in the code block. |
| public static final CodeFlag | CO_NESTED
Denotes that nested scopes are enabled in the code block. |
| public static final CodeFlag | CO_NEWLOCALS
Denotes that a new dictionary should be created for the code block. |
| public static final CodeFlag | CO_OPTIMIZED
Denotes that the code block uses fast locals. |
| public static final CodeFlag | CO_VARARGS
The compiled code block has a varargs argument. |
| public static final CodeFlag | CO_VARKEYWORDS
The compiled code block has a varkeyword argument. |
| public final int |
| Access | Constructor and Description |
|---|---|
| private |
| Modifier and Type | Method and Description |
|---|---|
| public boolean | |
| pack-priv static Iterable | |
| public static CodeFlag | |
| public static CodeFlag[] |
| allFlags | back to summary |
|---|---|
| private static Iterable<CodeFlag> allFlags | |
| CO_FUTURE_ABSOLUTE_IMPORT | back to summary |
|---|---|
| public static final CodeFlag CO_FUTURE_ABSOLUTE_IMPORT Absolute import. | |
| CO_FUTURE_DIVISION | back to summary |
|---|---|
| public static final CodeFlag CO_FUTURE_DIVISION Standard division of integers returns float, truncating division needs to be enforced. | |
| CO_FUTURE_PRINT_FUNCTION | back to summary |
|---|---|
| public static final CodeFlag CO_FUTURE_PRINT_FUNCTION print function. | |
| CO_FUTURE_UNICODE_LITERALS | back to summary |
|---|---|
| public static final CodeFlag CO_FUTURE_UNICODE_LITERALS unicode literals. | |
| CO_FUTURE_WITH_STATEMENT | back to summary |
|---|---|
| public static final CodeFlag CO_FUTURE_WITH_STATEMENT With statement. | |
| CO_GENERATOR | back to summary |
|---|---|
| public static final CodeFlag CO_GENERATOR The compiled code block is a generator code block. | |
| CO_GENERATOR_ALLOWED | back to summary |
|---|---|
| public static final CodeFlag CO_GENERATOR_ALLOWED Denotes that generators are enabled in the code block. | |
| CO_NESTED | back to summary |
|---|---|
| public static final CodeFlag CO_NESTED Denotes that nested scopes are enabled in the code block. | |
| CO_NEWLOCALS | back to summary |
|---|---|
| public static final CodeFlag CO_NEWLOCALS Denotes that a new dictionary should be created for the code block. | |
| CO_OPTIMIZED | back to summary |
|---|---|
| public static final CodeFlag CO_OPTIMIZED Denotes that the code block uses fast locals. | |
| CO_VARARGS | back to summary |
|---|---|
| public static final CodeFlag CO_VARARGS The compiled code block has a varargs argument. | |
| CO_VARKEYWORDS | back to summary |
|---|---|
| public static final CodeFlag CO_VARKEYWORDS The compiled code block has a varkeyword argument. | |
| flag | back to summary |
|---|---|
| public final int flag | |
| CodeFlag | back to summary |
|---|---|
| private CodeFlag(int flag) | |
| isFlagBitSetIn | back to summary |
|---|---|
| public boolean isFlagBitSetIn(int flags) | |
| parse | back to summary |
|---|---|
| pack-priv static Iterable | |
| valueOf | back to summary |
|---|---|
| public static CodeFlag valueOf(String name) | |
| values | back to summary |
|---|---|
| public static CodeFlag[] values() | |