From ba1c79f22b3730efcb8e86beca3b432d8c9ce5d6 Mon Sep 17 00:00:00 2001 From: Pauli Virtanen Date: Fri, 2 Oct 2009 19:38:35 +0000 Subject: Final doc import cleanups. Thanks to all contributors for the preceding commits! There are still some docstrings in the queue -- those'll be committed in later. --- doc/source/user/c-info.beyond-basics.rst | 2 ++ numpy/__init__.py | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/doc/source/user/c-info.beyond-basics.rst b/doc/source/user/c-info.beyond-basics.rst index 491c2c9ae..703124b58 100644 --- a/doc/source/user/c-info.beyond-basics.rst +++ b/doc/source/user/c-info.beyond-basics.rst @@ -378,6 +378,8 @@ register ufuncs for user-defined data-types. ... +.. _user.user-defined-data-types: + User-defined data-types ======================= diff --git a/numpy/__init__.py b/numpy/__init__.py index 1592dc8cb..897c14060 100644 --- a/numpy/__init__.py +++ b/numpy/__init__.py @@ -93,7 +93,7 @@ the source code). Copies vs. in-place operation ----------------------------- Most of the functions in `numpy` return a copy of the array argument -(e.g., `sort`). In-place versions of these functions are often +(e.g., `np.sort`). In-place versions of these functions are often available as array methods, i.e. ``x = np.array([1,2,3]); x.sort()``. Exceptions to this rule are documented. -- cgit v1.2.1