(subtype, shape, dtype)
| 138 | # so don't remove the name here, or you'll |
| 139 | # break backward compatibility. |
| 140 | def _reconstruct(subtype, shape, dtype): |
| 141 | return ndarray.__new__(subtype, shape, dtype) |
| 142 | |
| 143 | |
| 144 | # format_re was originally from numarray by J. Todd Miller |