summaryrefslogtreecommitdiff
path: root/numpy/add_newdocs.py
diff options
context:
space:
mode:
authorTravis Oliphant <oliphant@enthought.com>2006-01-05 10:28:41 +0000
committerTravis Oliphant <oliphant@enthought.com>2006-01-05 10:28:41 +0000
commit8b1e2f929fdfb79e0a446a1fb7bec33a799d492b (patch)
tree588d1fb59f52798ef54a98dbe5ef20210dd16eae /numpy/add_newdocs.py
parentb97663c8b33bbce12926887bf6ddac68fbadb42d (diff)
downloadnumpy-8b1e2f929fdfb79e0a446a1fb7bec33a799d492b.tar.gz
Add a few more docstrings using add_docstring.
Diffstat (limited to 'numpy/add_newdocs.py')
-rw-r--r--numpy/add_newdocs.py16
1 files changed, 16 insertions, 0 deletions
diff --git a/numpy/add_newdocs.py b/numpy/add_newdocs.py
new file mode 100644
index 000000000..156f4f698
--- /dev/null
+++ b/numpy/add_newdocs.py
@@ -0,0 +1,16 @@
+
+from lib import add_newdoc
+
+add_newdoc('numpy.core','dtypedescr',
+ [('fields', "Fields of the data-typedescr if any."),
+ ('alignment', "Needed alignment for this data-type"),
+ ('byteorder',
+ "Little-endian (<), big-endian (>), native (=), or "\
+ "not-applicable (|)"),
+ ('char', "Letter typecode for this descriptor"),
+ ('dtype', "Typeobject associated with this descriptor"),
+ ('kind', "Character giving type-family of this descriptor"),
+ ('itemsize', "Size of each item"),
+ ('num', "Internally-used number for builtin base")
+ ]
+ )