Ask contributors to wrap Cython functions in Python

This commit is contained in:
Juan Nunez-Iglesias
2015-06-30 22:49:48 +10:00
parent f5bf1dd3b9
commit e1afe7e65a
+4
View File
@@ -166,6 +166,10 @@ Stylistic Guidelines
* Use ``Py_ssize_t`` as data type for all indexing, shape and size variables
in C/C++ and Cython code.
* Wrap Cython code in a pure Python function, which defines the API. This
improves compatibility with code introspection tools, which are often not
aware of Cython code.
Test coverage
-------------