Switch to python3
This commit is contained in:
parent
531041e89a
commit
9ba4b6a91a
5286 changed files with 677347 additions and 576888 deletions
|
|
@ -0,0 +1,28 @@
|
|||
Metadata-Version: 1.1
|
||||
Name: cffi
|
||||
Version: 0.8.6
|
||||
Summary: Foreign Function Interface for Python calling C code.
|
||||
Home-page: http://cffi.readthedocs.org
|
||||
Author: Armin Rigo, Maciej Fijalkowski
|
||||
Author-email: python-cffi@googlegroups.com
|
||||
License: MIT
|
||||
Description:
|
||||
CFFI
|
||||
====
|
||||
|
||||
Foreign Function Interface for Python calling C code.
|
||||
Please see the `Documentation <http://cffi.readthedocs.org/>`_.
|
||||
|
||||
Contact
|
||||
-------
|
||||
|
||||
`Mailing list <https://groups.google.com/forum/#!forum/python-cffi>`_
|
||||
|
||||
Platform: UNKNOWN
|
||||
Classifier: Programming Language :: Python
|
||||
Classifier: Programming Language :: Python :: 2
|
||||
Classifier: Programming Language :: Python :: 2.6
|
||||
Classifier: Programming Language :: Python :: 2.7
|
||||
Classifier: Programming Language :: Python :: 3
|
||||
Classifier: Programming Language :: Python :: 3.2
|
||||
Classifier: Programming Language :: Python :: 3.3
|
||||
|
|
@ -0,0 +1,104 @@
|
|||
LICENSE
|
||||
MANIFEST.in
|
||||
setup.cfg
|
||||
setup.py
|
||||
setup_base.py
|
||||
c/_cffi_backend.c
|
||||
c/file_emulator.h
|
||||
c/malloc_closure.h
|
||||
c/minibuffer.h
|
||||
c/misc_thread.h
|
||||
c/misc_win32.h
|
||||
c/test_c.py
|
||||
c/wchar_helper.h
|
||||
c/libffi_msvc/ffi.c
|
||||
c/libffi_msvc/ffi.h
|
||||
c/libffi_msvc/ffi_common.h
|
||||
c/libffi_msvc/fficonfig.h
|
||||
c/libffi_msvc/ffitarget.h
|
||||
c/libffi_msvc/prep_cif.c
|
||||
c/libffi_msvc/types.c
|
||||
c/libffi_msvc/win32.c
|
||||
c/libffi_msvc/win64.asm
|
||||
c/libffi_msvc/win64.obj
|
||||
cffi/__init__.py
|
||||
cffi/api.py
|
||||
cffi/backend_ctypes.py
|
||||
cffi/commontypes.py
|
||||
cffi/cparser.py
|
||||
cffi/ffiplatform.py
|
||||
cffi/gc_weakref.py
|
||||
cffi/lock.py
|
||||
cffi/model.py
|
||||
cffi/vengine_cpy.py
|
||||
cffi/vengine_gen.py
|
||||
cffi/verifier.py
|
||||
cffi.egg-info/PKG-INFO
|
||||
cffi.egg-info/SOURCES.txt
|
||||
cffi.egg-info/dependency_links.txt
|
||||
cffi.egg-info/not-zip-safe
|
||||
cffi.egg-info/requires.txt
|
||||
cffi.egg-info/top_level.txt
|
||||
demo/_curses.py
|
||||
demo/api.py
|
||||
demo/bsdopendirtype.py
|
||||
demo/btrfs-snap.py
|
||||
demo/cffi-cocoa.py
|
||||
demo/fastcsv.py
|
||||
demo/gmp.py
|
||||
demo/pwuid.py
|
||||
demo/py.cleanup
|
||||
demo/pyobj.py
|
||||
demo/readdir.py
|
||||
demo/readdir2.py
|
||||
demo/readdir_ctypes.py
|
||||
demo/setup.py
|
||||
demo/winclipboard.py
|
||||
demo/xclient.py
|
||||
doc/Makefile
|
||||
doc/design.rst
|
||||
doc/make.bat
|
||||
doc/source/conf.py
|
||||
doc/source/index.rst
|
||||
testing/__init__.py
|
||||
testing/backend_tests.py
|
||||
testing/callback_in_thread.py
|
||||
testing/support.py
|
||||
testing/test_cdata.py
|
||||
testing/test_ctypes.py
|
||||
testing/test_ffi_backend.py
|
||||
testing/test_function.py
|
||||
testing/test_model.py
|
||||
testing/test_ownlib.py
|
||||
testing/test_parsing.py
|
||||
testing/test_platform.py
|
||||
testing/test_unicode_literals.py
|
||||
testing/test_verify.py
|
||||
testing/test_verify2.py
|
||||
testing/test_version.py
|
||||
testing/test_vgen.py
|
||||
testing/test_vgen2.py
|
||||
testing/test_zdistutils.py
|
||||
testing/test_zintegration.py
|
||||
testing/udir.py
|
||||
testing/snippets/distutils_module/setup.py
|
||||
testing/snippets/distutils_module/snip_basic_verify.py
|
||||
testing/snippets/distutils_module/build/lib.linux-x86_64-2.7/snip_basic_verify.py
|
||||
testing/snippets/distutils_package_1/setup.py
|
||||
testing/snippets/distutils_package_1/build/lib.linux-x86_64-2.7/snip_basic_verify1/__init__.py
|
||||
testing/snippets/distutils_package_1/snip_basic_verify1/__init__.py
|
||||
testing/snippets/distutils_package_2/setup.py
|
||||
testing/snippets/distutils_package_2/build/lib.linux-x86_64-2.7/snip_basic_verify2/__init__.py
|
||||
testing/snippets/distutils_package_2/snip_basic_verify2/__init__.py
|
||||
testing/snippets/infrastructure/setup.py
|
||||
testing/snippets/infrastructure/build/lib.linux-x86_64-2.7/snip_infrastructure/__init__.py
|
||||
testing/snippets/infrastructure/snip_infrastructure/__init__.py
|
||||
testing/snippets/setuptools_module/setup.py
|
||||
testing/snippets/setuptools_module/snip_setuptools_verify.py
|
||||
testing/snippets/setuptools_module/build/lib.linux-x86_64-2.7/snip_setuptools_verify.py
|
||||
testing/snippets/setuptools_package_1/setup.py
|
||||
testing/snippets/setuptools_package_1/build/lib.linux-x86_64-2.7/snip_setuptools_verify1/__init__.py
|
||||
testing/snippets/setuptools_package_1/snip_setuptools_verify1/__init__.py
|
||||
testing/snippets/setuptools_package_2/setup.py
|
||||
testing/snippets/setuptools_package_2/build/lib.linux-x86_64-2.7/snip_setuptools_verify2/__init__.py
|
||||
testing/snippets/setuptools_package_2/snip_setuptools_verify2/__init__.py
|
||||
|
|
@ -0,0 +1 @@
|
|||
|
||||
|
|
@ -0,0 +1,32 @@
|
|||
../cffi/lock.py
|
||||
../cffi/backend_ctypes.py
|
||||
../cffi/__init__.py
|
||||
../cffi/ffiplatform.py
|
||||
../cffi/vengine_gen.py
|
||||
../cffi/commontypes.py
|
||||
../cffi/vengine_cpy.py
|
||||
../cffi/api.py
|
||||
../cffi/gc_weakref.py
|
||||
../cffi/verifier.py
|
||||
../cffi/cparser.py
|
||||
../cffi/model.py
|
||||
../cffi/__pycache__/lock.cpython-34.pyc
|
||||
../cffi/__pycache__/backend_ctypes.cpython-34.pyc
|
||||
../cffi/__pycache__/__init__.cpython-34.pyc
|
||||
../cffi/__pycache__/ffiplatform.cpython-34.pyc
|
||||
../cffi/__pycache__/vengine_gen.cpython-34.pyc
|
||||
../cffi/__pycache__/commontypes.cpython-34.pyc
|
||||
../cffi/__pycache__/vengine_cpy.cpython-34.pyc
|
||||
../cffi/__pycache__/api.cpython-34.pyc
|
||||
../cffi/__pycache__/gc_weakref.cpython-34.pyc
|
||||
../cffi/__pycache__/verifier.cpython-34.pyc
|
||||
../cffi/__pycache__/cparser.cpython-34.pyc
|
||||
../cffi/__pycache__/model.cpython-34.pyc
|
||||
../_cffi_backend.cpython-34m.so
|
||||
./
|
||||
dependency_links.txt
|
||||
PKG-INFO
|
||||
SOURCES.txt
|
||||
not-zip-safe
|
||||
top_level.txt
|
||||
requires.txt
|
||||
|
|
@ -0,0 +1 @@
|
|||
|
||||
|
|
@ -0,0 +1 @@
|
|||
pycparser
|
||||
|
|
@ -0,0 +1,2 @@
|
|||
cffi
|
||||
_cffi_backend
|
||||
Loading…
Add table
Add a link
Reference in a new issue