书栈网 · BookStack 本次搜索耗时 0.038 秒,为您找到 369 个相关结果.
  • 入门

    入门 入门 Cython - 概述 安装 Cython 构建 Cython 代码 通过静态类型更快的代码
  • Getting Started

    Getting Started Getting Started Cython - an overview Installing Cython Building Cython code Building a Cython module using distutils Using the Jupyter notebook Using the ...
  • Getting Started

    Getting Started Getting Started Cython - an overview Installing Cython Building Cython code Building a Cython module using setuptools Using the Jupyter notebook Using the...
  • Language Basics

    Language Basics Declaring Data Types C variable and type definitions Types Grouping multiple C declarations Python functions vs. C functions Python objects as parameters and re...
  • 源文件和编译

    源文件和编译 从命令行编译 使用cython 命令进行编译 使用cythonize 命令进行编译 基本 setup.py 配置 C-Build Cythonize 参数 包中的多个 Cython 文件 分发 Cython 模块 集成多个模块 用pyximport 编译 参数 依赖性处理 限制 用cython.inline 编译 ...
  • 0.21 (2014-09-10)

    0.21 (2014-09-10) Features added Optimizations Bugs fixed Other changes 0.21 (2014-09-10) Features added C (cdef) functions allow inner Python functions. Enums can now b...
  • 0.15 (2011-08-05)

    0.15 (2011-08-05) Features added Bugs fixed Other changes 0.15 (2011-08-05) Features added Generators (yield) - Cython has full support for generators, generator expressi...
  • Faster code via static typing

    Faster code via static typing Typing Variables Typing Functions Determining where to add types Faster code via static typing Cython is a Python compiler. This means that it ...
  • Tutorials

    Tutorials Tutorials Basic Tutorial The Basics of Cython Cython Hello World Fibonacci Fun Primes Primes with C++ Language Details Calling C functions Dynamic linking ...
  • 扩展类型(又名.cdef 类)

    扩展类型(又名.cdef 类) 扩展类型(又名.cdef 类) 原文: http://docs.cython.org/en/latest/src/tutorial/cdef_classes.html 为了支持面向对象的编程,Cython 支持编写与 Python 完全相同的普通 Python 类: class MathFunction...