From 2b732ba7b51dd137a9ed8f55f83f48b9f8743bf5 Mon Sep 17 00:00:00 2001 From: Abdullah Alrasheed Date: Thu, 14 Jan 2016 17:25:48 +0800 Subject: Fix number sequence I have found that there are two missing numbers in a sequence in the documentation. http://docs.scipy.org/doc/numpy/user/misc.html#interfacing-to-c It goes 1,2,3,5,7,8 with missing 4 and 6. --- numpy/doc/misc.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'numpy/doc/misc.py') diff --git a/numpy/doc/misc.py b/numpy/doc/misc.py index e30caf0cb..37ebca572 100644 --- a/numpy/doc/misc.py +++ b/numpy/doc/misc.py @@ -138,7 +138,7 @@ Only a survey of the choices. Little detail on how each works. - Can write code in non-standard form which may become obsolete - Not as flexible as manual wrapping -4) ctypes +3) ctypes - Plusses: @@ -160,7 +160,7 @@ Only a survey of the choices. Little detail on how each works. - can't use for writing code to be turned into C extensions, only a wrapper tool. -5) SWIG (automatic wrapper generator) +4) SWIG (automatic wrapper generator) - Plusses: @@ -178,7 +178,7 @@ Only a survey of the choices. Little detail on how each works. - doesn't necessarily avoid reference counting issues or needing to know API's -7) scipy.weave +5) scipy.weave - Plusses: @@ -192,7 +192,7 @@ Only a survey of the choices. Little detail on how each works. - Future very uncertain: it's the only part of Scipy not ported to Python 3 and is effectively deprecated in favor of Cython. -8) Psyco +6) Psyco - Plusses: -- cgit v1.2.1