summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTravis Oliphant <oliphant@enthought.com>2006-09-15 19:31:48 +0000
committerTravis Oliphant <oliphant@enthought.com>2006-09-15 19:31:48 +0000
commit9ac3b0e5c2e181873221ff0160b882772ea9d435 (patch)
treedb18074017fd8e2c7701ae51e4939425429a94d4
parent3cf31df5d76acf7ff31c23d6a387824fce68e9df (diff)
downloadnumpy-9ac3b0e5c2e181873221ff0160b882772ea9d435.tar.gz
Add 'a' to sctypeDict. Fixes #279
-rw-r--r--numpy/core/numerictypes.py2
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):