diff options
author | Travis Oliphant <oliphant@enthought.com> | 2006-10-27 20:44:32 +0000 |
---|---|---|
committer | Travis Oliphant <oliphant@enthought.com> | 2006-10-27 20:44:32 +0000 |
commit | 0051241ac1e06cb13cda0bcc67410f361a97217f (patch) | |
tree | 4140952a3dc167b607ff4494181759c60a919ce4 /numpy/core/src/arrayobject.c | |
parent | cc32637e236429e582db471837cc6bb85b2df1b4 (diff) | |
download | numpy-0051241ac1e06cb13cda0bcc67410f361a97217f.tar.gz |
fixes to last commits.
Diffstat (limited to 'numpy/core/src/arrayobject.c')
-rw-r--r-- | numpy/core/src/arrayobject.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/core/src/arrayobject.c b/numpy/core/src/arrayobject.c index 311b7117e..802cf64f1 100644 --- a/numpy/core/src/arrayobject.c +++ b/numpy/core/src/arrayobject.c @@ -10663,7 +10663,7 @@ arraydescr_typename_get(PyArray_Descr *self) if (PyTypeNum_ISUSERDEF(self->type_num)) { if (typeobj == NULL) { - return PyString_FromFormat("%s%d (%d)", + return PyString_FromFormat("%c%d (%d)", self->kind, self->elsize, self->type_num); |