[Numpy-svn] r4477 - trunk/numpy/lib

numpy-svn at scipy.org numpy-svn at scipy.org
Tue Nov 20 09:27:51 EST 2007


Author: rc
Date: 2007-11-20 08:26:44 -0600 (Tue, 20 Nov 2007)
New Revision: 4477

Modified:
   trunk/numpy/lib/arraysetops.py
Log:
Edited module docstring.


Modified: trunk/numpy/lib/arraysetops.py
===================================================================
--- trunk/numpy/lib/arraysetops.py	2007-11-20 13:58:47 UTC (rev 4476)
+++ trunk/numpy/lib/arraysetops.py	2007-11-20 14:26:44 UTC (rev 4477)
@@ -1,7 +1,7 @@
 """
 Set operations for 1D numeric arrays based on sorting.
 
-Contains:
+:Contains:
   ediff1d,
   unique1d,
   intersect1d,
@@ -11,6 +11,8 @@
   union1d,
   setdiff1d
 
+:Notes:
+
 All functions work best with integer numerical arrays on input (e.g. indices).
 For floating point arrays, innacurate results may appear due to usual round-off
 and floating point comparison issues.
@@ -25,10 +27,10 @@
 
 To do: Optionally return indices analogously to unique1d for all functions.
 
-Author: Robert Cimrman
-
 created:       01.11.2005
 last revision: 07.01.2007
+
+:Author: Robert Cimrman
 """
 __all__ = ['ediff1d', 'unique1d', 'intersect1d', 'intersect1d_nu', 'setxor1d',
            'setmember1d', 'union1d', 'setdiff1d']




More information about the Numpy-svn mailing list