• Home
Name Date Size #Lines LOC

..--

Cython/03-May-2024-86,71567,917

Tools/03-May-2024-3,0882,746

bin/03-May-2024-309259

pyximport/03-May-2024-913705

CHANGES.rstD03-May-202436.3 KiB917552

COPYING.txtD03-May-2024436 138

INSTALL.txtD03-May-2024542 2315

LICENSE.txtD03-May-20249.9 KiB177150

MANIFEST.inD03-May-2024932 3430

MakefileD03-May-2024774 4232

PKG-INFOD03-May-20241.8 KiB3833

README.txtD03-May-20242.2 KiB6945

ToDo.txtD03-May-20247.1 KiB290162

USAGE.txtD03-May-20242.6 KiB7652

cygdb.pyD03-May-2024123 94

cython.pyD03-May-2024478 2410

pylintrcD03-May-20247.4 KiB260172

runtests.pyD03-May-202474.7 KiB1,9311,639

setup.pyD03-May-202412.4 KiB338284

setupegg.pyD03-May-2024109 53

README.txt

1Welcome to Cython!
2=================
3
4Cython (http://cython.org) is a language that makes writing C extensions for
5the Python language as easy as Python itself.  Cython is based on the
6well-known Pyrex, but supports more cutting edge functionality and
7optimizations.
8
9The Cython language is very close to the Python language, but Cython
10additionally supports calling C functions and declaring C types on variables
11and class attributes.  This allows the compiler to generate very efficient C
12code from Cython code.
13
14This makes Cython the ideal language for wrapping external C libraries, and
15for fast C modules that speed up the execution of Python code.
16
17LICENSE:
18
19The original Pyrex program was licensed "free of restrictions" (see
20below).  Cython itself is licensed under the permissive
21
22   Apache License
23
24See LICENSE.txt.
25
26
27--------------------------
28
29Note that Cython used to ship the full version control repository in its source
30distribution, but no longer does so due to space constraints.  To get the
31full source history, make sure you have git installed, then step into the
32base directory of the Cython source distribution and type
33
34    make repo
35
36Alternatively, check out the latest developer repository from
37
38    https://github.com/cython/cython
39
40
41
42The following is from Pyrex:
43------------------------------------------------------
44This is a development version of Pyrex, a language
45for writing Python extension modules.
46
47For more info, see:
48
49    Doc/About.html for a description of the language
50    INSTALL.txt    for installation instructions
51    USAGE.txt      for usage instructions
52    Demos          for usage examples
53
54Comments, suggestions, bug reports, etc. are
55welcome!
56
57Copyright stuff: Pyrex is free of restrictions. You
58may use, redistribute, modify and distribute modified
59versions.
60
61The latest version of Pyrex can be found here:
62
63http://www.cosc.canterbury.ac.nz/~greg/python/Pyrex/
64
65Greg Ewing, Computer Science Dept, +--------------------------------------+
66University of Canterbury,          | A citizen of NewZealandCorp, a       |
67Christchurch, New Zealand          | wholly-owned subsidiary of USA Inc.  |
68greg@cosc.canterbury.ac.nz         +--------------------------------------+
69