diff options
author | Travis Oliphant <oliphant@enthought.com> | 2005-12-13 05:33:13 +0000 |
---|---|---|
committer | Travis Oliphant <oliphant@enthought.com> | 2005-12-13 05:33:13 +0000 |
commit | f0995b54db038fa8e1ecfecf51c2519e48e10043 (patch) | |
tree | 456bd1ad7f3817ea948004305812b73094d749e6 /scipy/base/src/ufuncobject.c | |
parent | aea56a2d4c50cbedd4591aa970c1ac2578666d5a (diff) | |
download | numpy-f0995b54db038fa8e1ecfecf51c2519e48e10043.tar.gz |
Fixed array pickle to handle subclasses.
Diffstat (limited to 'scipy/base/src/ufuncobject.c')
-rw-r--r-- | scipy/base/src/ufuncobject.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/scipy/base/src/ufuncobject.c b/scipy/base/src/ufuncobject.c index a3d508a7d..4cf5b9c41 100644 --- a/scipy/base/src/ufuncobject.c +++ b/scipy/base/src/ufuncobject.c @@ -1374,10 +1374,10 @@ _printcastbuf(PyUFuncLoopObject *loop, int bufnum) /* currently generic ufuncs cannot be built for use on flexible arrays. The cast functions in the generic loop would need to be fixed to pass - something besides NULL, NULL. + in something besides NULL, NULL. - Also the underlying ufunc loops would not know the array size unless - that were passed in as data. + Also the underlying ufunc loops would not know the element-size unless + that was passed in as data (which could be arranged). */ |