• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..--

c/23-Nov-2023-20,74316,929

cffi/23-Nov-2023-9,1587,340

demo/23-Nov-2023-3,0372,288

doc/23-Nov-2023-5,8704,300

testing/23-Nov-2023-17,23915,017

AUTHORSD23-Nov-2023208 95

Android.bpD23-Nov-2023987 3229

LICENSED23-Nov-20231.3 KiB2720

MANIFEST.inD23-Nov-2023280 76

METADATAD23-Nov-2023348 1816

MODULE_LICENSE_MITD23-Nov-20230

README.mdD23-Nov-2023779 3121

requirements.txtD23-Nov-202317 32

setup.cfgD23-Nov-202334 32

setup.pyD23-Nov-20238.9 KiB251197

setup_base.pyD23-Nov-2023913 2318

README.md

1CFFI
2====
3
4Foreign Function Interface for Python calling C code.
5Please see the [Documentation](http://cffi.readthedocs.org/) or uncompiled
6in the doc/ subdirectory.
7
8Download
9--------
10
11[Download page](https://bitbucket.org/cffi/cffi/downloads)
12
13Contact
14-------
15
16[Mailing list](https://groups.google.com/forum/#!forum/python-cffi)
17
18Testing/development tips
19------------------------
20
21To run tests under CPython, run::
22
23    pip install pytest     # if you don't have py.test already
24    pip install pycparser
25    python setup.py build_ext -f -i
26    py.test c/ testing/
27
28If you run in another directory (either the tests or another program),
29you should use the environment variable ``PYTHONPATH=/path`` to point
30to the location that contains the ``_cffi_backend.so`` just compiled.
31