From a9ec085cc41a95b36680f4a20a450fde18493f53 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johannes=20Sch=C3=B6nberger?= Date: Sun, 24 Feb 2013 12:22:24 +0100 Subject: [PATCH] Add note about proper use of Py_ssize_t --- DEVELOPMENT.txt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/DEVELOPMENT.txt b/DEVELOPMENT.txt index 8726394b..daffe705 100644 --- a/DEVELOPMENT.txt +++ b/DEVELOPMENT.txt @@ -81,6 +81,9 @@ Stylistic Guidelines hough(canny(my_image)) + * Use `Py_ssize_t` as data type for all indexing, shape and size variables in + C/C++ and Cython code. + Test coverage -------------