书栈网 · BookStack 本次搜索耗时 0.065 秒,为您找到 1044 个相关结果.
  • Python 3.11 有什么新变化

    Python 3.11 有什么新变化 摘要 — 发布重点 新的特性 PEP 657:回溯信息中标注更详细的错误位置 PEP 654:异常组与 except* PEP 678:可用注释丰富异常 Windows 下的 py.exe 启动器改进 有关类型提示的新增特性 PEP 646:可变参数泛型 PEP 655:将单个 TypedDict 项...
  • inspect —- 检查对象

    inspect —- 检查对象 类型和成员 Retrieving source code Introspecting callables with the Signature object 类与函数 The interpreter stack Fetching attributes statically Current State of Gene...
  • 安装指南

    733 2022-11-26 《Nornir 中文手册》
    安装指导 安装 Nornir 插件 安装指导 安装 Nornir 在安装 Nornir 之前,建议你创建自己的 Python 虚拟环境(Virtualenv)。这样可以保证你的操作不会影响到系统中 Python 的环境。 本教程不提供 Python 虚拟环境的安装指导;也不提供 pip 相关的安装方法,假设你已经在系统中装好了这些。 N...
  • Argument Clinic 的用法

    Argument Clinic 的用法 Argument Clinic 的设计目标 基本概念和用法 函数的转换 进阶 符号化默认值 对 Argument Clinic 生成的 C 函数和变量进行重命名 函数转换会用到 PyArg_UnpackTuple 可选参数组 采用真正的 Argument Clinic 转换器,而不是 “传统转换器” P...
  • Initializing and finalizing the interpreter

    Initializing and finalizing the interpreter Initializing and finalizing the interpreter void Py_Initialize () Initialize the Python interpreter. In an application embedding Py...
  • inspect —- 检查对象

    inspect —- 检查对象类型和成员 Retrieving source code Introspecting callables with the Signature object 类与函数 The interpreter stack Fetching attributes statically Current State of Ge...
  • Python 3.7 有什么新变化

    Python 3.7 有什么新变化 摘要 - 发布重点 新的特性 PEP 563:延迟的标注求值 PEP 538: 传统 C 区域强制转换 PEP 540: 强制 UTF-8 运行时模式 PEP 553: 内置的 breakpoint() PEP 539: 用于线程局部存储的新 C API PEP 562: 定制对模块属性的访问 PEP 56...
  • 3. 定义扩展类型:已分类主题

    3. 定义扩展类型:已分类主题 3.1. 终结和内存释放 3.2. 对象展示 3.3. 属性管理 3.3.1. 泛型属性管理 3.3.2. Type-specific Attribute Management 3.4. Object Comparison 3.5. Abstract Protocol Support 3.6. Weak Refe...
  • 3. 定义扩展类型:已分类主题

    3. 定义扩展类型:已分类主题 3.1. 终结和内存释放 3.2. 对象展示 3.3. 属性管理 3.3.1. 泛型属性管理 3.3.2. Type-specific Attribute Management 3.4. Object Comparison 3.5. Abstract Protocol Support 3.6. Weak Refe...
  • 调用协议

    调用协议 tp_call 协议 Vectorcall 协议 递归控制 Vectorcall 支持 API 调用对象的 API 调用支持 API 调用协议 CPython 支持两种不同的调用协议:tp_call 和矢量调用。 tp_call 协议 设置 tp_call 的类的实例都是可调用的。 槽位的签名为: PyObject *...