diff options
author | Travis Oliphant <oliphant@enthought.com> | 2007-02-28 04:32:25 +0000 |
---|---|---|
committer | Travis Oliphant <oliphant@enthought.com> | 2007-02-28 04:32:25 +0000 |
commit | f26b78ba6c9a7de9c989c3abc87f457f3b183c30 (patch) | |
tree | a559d7c4e22088b52310d5425bb27c0507f761d0 | |
parent | 514e1f74f8aec7da732a181a071afc060ef1669e (diff) | |
download | numpy-f26b78ba6c9a7de9c989c3abc87f457f3b183c30.tar.gz |
Changes to pep.
-rw-r--r-- | numpy/doc/pep_buffer.txt | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/numpy/doc/pep_buffer.txt b/numpy/doc/pep_buffer.txt index 9b8e7272a..9d9c560c8 100644 --- a/numpy/doc/pep_buffer.txt +++ b/numpy/doc/pep_buffer.txt @@ -225,12 +225,10 @@ Additions to the struct string-syntax Character Description ============================================================= - '1' bit (number before states how many bits) - 't' platform _Bool type if available + 't' bit (number before states how many bits) + '?' platform _Bool type 'g' long double - 'F' complex float - 'D' complex double - 'G' complex long double + 'Z' complex (whatever the next specifier is) 'c' ucs-1 (latin-1) encoding 'u' ucs-2 'w' ucs-4 @@ -271,7 +269,7 @@ Examples of Data-Format Descriptions float 'f' complex double - 'F' or 'ff' + 'zd' RGB Pixel data 'BBB' or 'B:r: B:g: B:b:' Mixed endian (weird but possible) |