diff options
author | Travis Oliphant <oliphant@enthought.com> | 2006-09-15 19:31:48 +0000 |
---|---|---|
committer | Travis Oliphant <oliphant@enthought.com> | 2006-09-15 19:31:48 +0000 |
commit | 9ac3b0e5c2e181873221ff0160b882772ea9d435 (patch) | |
tree | db18074017fd8e2c7701ae51e4939425429a94d4 /numpy | |
parent | 3cf31df5d76acf7ff31c23d6a387824fce68e9df (diff) | |
download | numpy-9ac3b0e5c2e181873221ff0160b882772ea9d435.tar.gz |
Add 'a' to sctypeDict. Fixes #279
Diffstat (limited to 'numpy')
-rw-r--r-- | numpy/core/numerictypes.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/core/numerictypes.py b/numpy/core/numerictypes.py index 8fcbd213e..00c3682ed 100644 --- a/numpy/core/numerictypes.py +++ b/numpy/core/numerictypes.py @@ -444,7 +444,7 @@ for key, val in _typestr.items(): # Add additional strings to the sctypeDict _toadd = ['int', 'float', 'complex', 'bool', 'object', 'string', ('str', allTypes['string_']), - 'unicode', 'object'] + 'unicode', 'object', ('a', allTypes['string_'])] for name in _toadd: if isinstance(name, tuple): |