diff options
Diffstat (limited to 'numpy')
-rw-r--r-- | numpy/ctypeslib.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/ctypeslib.py b/numpy/ctypeslib.py index 367b08f49..c11900947 100644 --- a/numpy/ctypeslib.py +++ b/numpy/ctypeslib.py @@ -40,8 +40,8 @@ in-place. For example:: We wrap it using: ->>> lib.foo_func.restype = None #doctest: +SKIP ->>> lib.foo.argtypes = [array_1d_double, c_int] #doctest: +SKIP +>>> _lib.foo_func.restype = None #doctest: +SKIP +>>> _lib.foo_func.argtypes = [array_1d_double, c_int] #doctest: +SKIP Then, we're ready to call ``foo_func``: |