summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorMaciej Fijalkowski <fijall@gmail.com>2012-06-14 16:18:49 +0200
committerMaciej Fijalkowski <fijall@gmail.com>2012-06-14 16:18:49 +0200
commit994850199d7b172a12df4dd0062b8e0db441ea46 (patch)
treea154e448a72b6efbc63244a002020eb4e40459d2 /README.md
parente2ce756b812ce5ff00fd67f7c077a02d7572ada4 (diff)
downloadcffi-994850199d7b172a12df4dd0062b8e0db441ea46.tar.gz
syntax
Diffstat (limited to 'README.md')
-rw-r--r--README.md12
1 files changed, 5 insertions, 7 deletions
diff --git a/README.md b/README.md
index 8b46daa..8ae81b6 100644
--- a/README.md
+++ b/README.md
@@ -7,14 +7,12 @@ The interface is based on [luajit FFI](http://luajit.org/ext_ffi.html) and follo
* You want to use C code from Python code, so you should be able to do so
without needing to learn a 3rd language
- (unlike Cython or SWIG or ctypes)
+ (unlike [Cython](http://www.cython.org) or [SWIG](http://www.swig.org/) or ctypes)
-* Keep all the python-related logic in Python instead of C (unlike CPython
- native C extensions)
+* Keep all the python-related logic in Python instead of C (unlike
+ [CPython native C extensions](http://docs.python.org/extending/extending.html))
-* Be complete and work on the level of API (unlike ctypes)
-
-.. _`luajit FFI`:
+* Be complete and work on the level of API (unlike [ctypes](http://docs.python.org/library/ctypes.html))
Simple example
--------------
@@ -30,7 +28,7 @@ Simple example
Contact
-------
-Mailing list: https://groups.google.com/forum/#!forum/python-cffi
+[Mailing list](https://groups.google.com/forum/#!forum/python-cffi)
Initial motivation