Convert to Cython.
authorW. Trevor King <wking@tremily.us>
Fri, 19 Oct 2012 03:30:30 +0000 (23:30 -0400)
committerW. Trevor King <wking@tremily.us>
Fri, 19 Oct 2012 03:34:29 +0000 (23:34 -0400)
commitb5d45edefecb90d5b34ac1185999c14a2a0a1b86
treeedf585f747e3251e3dd9d87ae83b3103da0645de
parent2c9e64792beb3c036752a9ca2b6fe058eb391ace
Convert to Cython.

With Cython we get easier memory handling and Python 3 compatibility.

Signed-off-by: W. Trevor King <wking@tremily.us>
13 files changed:
.gitignore [new file with mode: 0644]
kmod/__init__.py [new file with mode: 0644]
kmod/_libkmod_h.pxd [new file with mode: 0644]
kmod/error.py [new file with mode: 0644]
kmod/kmod.pxd [new file with mode: 0644]
kmod/kmod.pyx [new file with mode: 0644]
kmod/list.pxd [new file with mode: 0644]
kmod/list.pyx [new file with mode: 0644]
kmod/module.pxd [new file with mode: 0644]
kmod/module.pyx [new file with mode: 0644]
kmod/version.py [new file with mode: 0644]
libkmod.c [deleted file]
setup.py