⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 setup.java

📁 无线通信的主要编程软件,是无线通信工作人员的必备工具,关天相关教程我会在后续传上.
💻 JAVA
字号:
// Copyright (c) Corporation for National Research Initiativespackage org.python.modules;// This is sort of analogous to CPython's Modules/Setup file.  Use this to// specify additional builtin modules.public class Setup{    // Each element of this array is a string naming a builtin module to    // add to the system.  The string has the following allowable forms:    //    // name    //     The module name is `name' and the class name is    //     org.python.modules.name    //    // name:class    //     The module name is `name' and the class name is `class' where    //     class must be a fully qualified Java class name    //    // name:null    //     The module `name' is removed from the list of builtin modules    //    // That isn't very useful here, but you can add additional builtin    // modules by editing the JPython registry file.  See the property    // python.modules.builtin for details.    public static String[] builtinModules = {        "jarray",        "math",        "thread",        "operator",        "time",        "os",        "types",        "py_compile",        "pre:org.python.modules.re",        "_sre",        "synchronize",        "cPickle",        "cStringIO",        "struct",        "binascii",        "md5:org.python.modules.MD5Module",        "exceptions:org.python.core.exceptions",        "_codecs",        "imp",        "sha",        "ucnhash",        "_jython",        "new:org.python.modules.newmodule",        "_weakref",        "xreadlines",        "errno",    };}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -