书栈网 · BookStack 本次搜索耗时 0.041 秒,为您找到 1044 个相关结果.
  • Argument Clinic How-To

    Argument Clinic How-To The Goals Of Argument Clinic Basic Concepts And Usage Converting Your First Function Advanced Topics Symbolic default values Renaming the C functions and...
  • Python id()函数

    Python id() 函数 Python id() 函数 原文: https://thepythonguru.com/python-builtin-functions/id/ 于 2020 年 1 月 7 日更新 id() 函数返回与对象关联的唯一数字标识符。 在标准 Python(即 CPython)中,标识符表示对象的内存地址...
  • Argument Clinic How-To

    Argument Clinic How-To The Goals Of Argument Clinic Basic Concepts And Usage Converting Your First Function Advanced Topics Symbolic default values Renaming the C functions and...
  • 代码对象

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

    uWSGI 2.0.3 Bugfixes New features Emperor SIGWINCH and SIGURG Building plugins on-the-fly from git repositories uwsgi.add_var(key, value) ‘disableheaders’ routing action Smart...
  • Software Transactional Memory

    891 2020-04-19 《PyPy Documentation》
    Software Transactional Memory What pypy-stm is for …and what pypy-stm is not for Getting Started Current status (stmgc-c7) Python 3, CPython, and others User Guide How to writ...
  • Implementing the buffer protocol

    Implementing the buffer protocol A matrix class Memory safety and reference counting Flags References Implementing the buffer protocol Cython objects can expose memory buff...
  • Implementing the buffer protocol

    Implementing the buffer protocol A matrix class Memory safety and reference counting Flags References Implementing the buffer protocol Cython objects can expose memory buff...
  • 内存分配

    内存分配 内存分配 原文: http://docs.cython.org/en/latest/src/tutorial/memory_allocation.html 动态内存分配在 Python 中大多不是问题。一切都是对象,引用计数系统和垃圾收集器在不再使用时自动将内存返回给系统。 当谈到更多低级数据缓冲区时,Cython 通过 Num...
  • 1. 简介

    1196 2018-07-23 《Python 2 语言参考》
    1. 简介 1.1. 各种实现 1.2. 语法符号 1. 简介 这份参考手册讲述Python编程语言。它并不打算作为一个教程。 除了语法和词法分析,在尽可能精确的同时,对所有内容我选择使用英语而不是形式化的说明。这应该使得这份文档对一般读者更容易理解, 但将导致某些地方意义不明确。因此, 如果你来自火星并试图仅仅通过这份文档重新实现 Pytho...