compilerflags.java
来自「tinyos最新版」· Java 代码 · 共 23 行
JAVA
23 行
package org.python.core;public class CompilerFlags extends Object { public CompilerFlags() {} public CompilerFlags(int co_flags) { if ((co_flags & org.python.core.PyTableCode.CO_NESTED) != 0) nested_scopes = true; if ((co_flags & org.python.core.PyTableCode.CO_FUTUREDIVISION) != 0) division = true; if ((co_flags & org.python.core.PyTableCode.CO_GENERATOR_ALLOWED) != 0) generator_allowed = true; } public boolean nested_scopes = true; public boolean division; public boolean generator_allowed; public String encoding;}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?