书栈网 · BookStack 本次搜索耗时 0.042 秒,为您找到 1044 个相关结果.
  • 速度

    速度 Context The GIL C 扩展 GIL C 扩展 Cython Pyrex Shedskin? Concurrency Concurrent.futures Threading Spawning Processes Multiprocessing 速度 CPython作为最流行的Python环境,对于CPU密...
  • 代码对象

    代码对象 附加信息 代码对象 代码对象是 CPython 实现的低层级细节。 每个代表一块尚未绑定到函数中的可执行代码。 type PyCodeObject 用于描述代码对象的对象的 C 结构。 此类型字段可随时更改。 PyTypeObject PyCode_Type 这一个代表 Python 代码对象 的 PyTypeObjec...
  • utime

    utime – 时间相关函数 函数 utime.localtime([secs]) utime.mktime() utime.sleep(seconds) utime.sleep_ms(ms) utime.sleep_us(us) utime.ticks_ms() utime.ticks_us() utime.ticks_cpu() utim...
  • Installing / Upgrading

    Installing / Upgrading Installing with pip Installing with easy_install Dependencies Installing from source Installing from source on Unix Installing from source on macOS / OSX...
  • Installing / Upgrading

    Installing / Upgrading Installing with pip Installing with easy_install Dependencies Installing from source Installing from source on Unix Installing from source on macOS / OSX...
  • 18. Continuous Integration

    18. Continuous Integration 18.1. Checking results of automatic builds 18.2. Stability 18.3. Flags-dependent failures 18.4. Ordering-dependent failures 18.5. Transient failures ...
  • sys —- 系统相关的参数和函数

    1069 2019-12-01 《Python 3.7 标准库》
    sys —- 系统相关的参数和函数 sys —- 系统相关的参数和函数 该模块提供了一些变量和函数。这些变量可能被解释器使用,也可能由解释器提供。这些函数会影响解释器。本模块总是可用的。 sys. abiflags 在POSIX系统上,以标准的 configure 脚本构建的 Python 中,这个变量会包含 PEP 3149 中定义...
  • 29.1. sys — 系统相关的参数和函数

    29.1. sys — 系统相关的参数和函数 29.1. sys — 系统相关的参数和函数 该模块提供了一些变量和函数。这些变量可能被解释器使用,也可能由解释器提供。这些函数会影响解释器。本模块总是可用的。 sys.abiflags 在POSIX系统上,以标准的 configure 脚本构建的 Python 中,这个变量会包含 PEP...
  • Python的新变化

    Python的新变化 Python的新变化 这个“Python 有什么新变化?”系列内容会带您浏览 Python 大版本之间重要的变化。在新版发布后,如果您希望掌握最新变化,请务必阅读这些内容。 Python 3.10 有什么新变化 摘要 — 发布重点 新的特性 有关类型提示的新增特性 其他语言特性修改 新增模块 改进的模块 性能优化...
  • 3.3.7. 模拟容器类型

    3.3.7. 模拟容器类型 3.3.7. 模拟容器类型 可以定义下列方法来实现容器对象。 容器通常属于序列(如列表或元组)或映射(如字典),但也存在其他形式的容器。 前几个方法集被用于模拟序列或是模拟映射;两者的不同之处在于序列允许的键应为整数 k 且 0 <= k < N 其中 N 是序列或定义指定区间的项的切片对象的长度。 此外还建议让映射提供...