Author: Armin Rigo <[email protected]> Branch: Changeset: r1249:5d2980c12007 Date: 2013-05-05 14:55 +0200 http://bitbucket.org/cffi/cffi/changeset/5d2980c12007/
Log: Document a more "real" implementation :-) diff --git a/demo/gmp.py b/demo/gmp.py --- a/demo/gmp.py +++ b/demo/gmp.py @@ -1,6 +1,12 @@ import sys import cffi +# +# This is only a demo based on the GMP library. +# There is a rather more complete version available at: +# http://bazaar.launchpad.net/~tolot-solar-empire/+junk/gmpy_cffi/files +# + ffi = cffi.FFI() ffi.cdef(""" _______________________________________________ pypy-commit mailing list [email protected] http://mail.python.org/mailman/listinfo/pypy-commit
