summaryrefslogtreecommitdiff
path: root/numpy/doc/structured_arrays.py
diff options
context:
space:
mode:
authorMark Wiebe <mwwiebe@gmail.com>2010-11-10 17:08:45 -0800
committerCharles Harris <charlesr.harris@gmail.com>2010-12-01 20:02:15 -0700
commit9b72aa96cec9d182062f378fca869aaa303f1ca9 (patch)
tree15a2a98c221552c2306bbc4edf2aacdd9533c6f1 /numpy/doc/structured_arrays.py
parent632ba9b0cfc07ef7ca49fedc698ebfd3a9031be2 (diff)
downloadnumpy-9b72aa96cec9d182062f378fca869aaa303f1ca9.tar.gz
DOC: core: Update docs for half/float16 type
Diffstat (limited to 'numpy/doc/structured_arrays.py')
-rw-r--r--numpy/doc/structured_arrays.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/doc/structured_arrays.py b/numpy/doc/structured_arrays.py
index 21fdf87ea..6eafd71cd 100644
--- a/numpy/doc/structured_arrays.py
+++ b/numpy/doc/structured_arrays.py
@@ -70,10 +70,10 @@ In this case, the constructor expects a comma-separated list of type
specifiers, optionally with extra shape information.
The type specifiers can take 4 different forms: ::
- a) b1, i1, i2, i4, i8, u1, u2, u4, u8, f4, f8, c8, c16, a<n>
+ a) b1, i1, i2, i4, i8, u1, u2, u4, u8, f2, f4, f8, c8, c16, a<n>
(representing bytes, ints, unsigned ints, floats, complex and
fixed length strings of specified byte lengths)
- b) int8,...,uint8,...,float32, float64, complex64, complex128
+ b) int8,...,uint8,...,float16, float32, float64, complex64, complex128
(this time with bit sizes)
c) older Numeric/numarray type specifications (e.g. Float32).
Don't use these in new code!