书栈网 · BookStack 本次搜索耗时 0.022 秒,为您找到 1044 个相关结果.
  • runpy —- Locating and executing Python modules

    runpy —- Locating and executing Python modules runpy —- Locating and executing Python modules Source code: Lib/runpy.py The runpy module is used to locate and run Pyt...
  • 4. 构建C/C++扩展

    4. 构建C/C++扩展 4.1. 使用 setuptools 构建 C 和 C++ 扩展 4. 构建C/C++扩展 一个CPython的C扩展是一个共享库(例如一个Linux上的 .so ,或者Windows上的 .pyd ),其会导出一个 初始化函数 。 为了可导入,共享库必须在 PYTHONPATH 中列出,且必须按照模块名称命名,并带...
  • Using PyMongo with MongoDB Atlas

    Using PyMongo with MongoDB Atlas Using PyMongo with MongoDB Atlas Atlas is MongoDB, Inc.’s hosted MongoDB as a service offering. To connect to Atlas, pass the connection string...
  • The PyPy plugin

    The PyPy plugin Introduction Install uWSGI with PyPy support The PyPy home The PyPy setup file WSGI support RPC support IPython trick uWSGI API status Options Notes T...
  • Installation guide

    Installation guide Installing Scrapy Things that are good to know Using a virtual environment (recommended) Platform specific installation notes Windows Ubuntu 14.04 or above ...
  • tomllib —- 解析 TOML 文件

    tomllib —- 解析 TOML 文件 例子 转换表 tomllib —- 解析 TOML 文件 3.11 新版功能. 源代码: Lib/tomllib 这个模块提供了一个解析 TOML (Tom’s Obvious Minimal Language, https://toml.io )接口。该模块不支持写 TOML。 参见 ...
  • 0.26 (2017-07-19)

    0.26 (2017-07-19) Features added Bugs fixed Other changes 0.26 (2017-07-19) Features added Pythran can be used as a backend for evaluating NumPy array expressions.Patch b...
  • C API 的稳定性

    C API 的稳定性 不稳定 C API 应用程序二进制接口的稳定版 受限 C API 稳定 ABI 受限 API 的作用域和性能 受限 API 警示 平台的考虑 受限 API 的内容 C API 的稳定性 除非另有文档说明,Python 的 C API 将遵循 PEP 387 所描述的向下兼容策略。 对它的大部分改变都是源代码级兼容...
  • PyPy’s sandboxing features

    659 2020-04-19 《PyPy Documentation》
    PyPy’s sandboxing features Introduction Overview Howto PyPy’s sandboxing features Warning This describes the old, unmaintained version. A new versionis in progress and shou...
  • 代码对象

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