[Numpy-discussion] Bug in np.records?

Pierre Barbier de Reuille pierre.barbierdereuille at gmail.com
Wed Mar 20 09:57:59 EDT 2013


Hey,

I am trying to use titles for the record arrays. In the documentation, it
is specified that any column can set to "None". However, trying this fails
on numpy 1.6.2 because in np.core.records, on line 195, the "strip" method
is called on the title object. This is really annoying. Could we fix this
by replacing line 195 with:


    self._titles = [n.strip() if n is not None else None for n in
titles[:self._nfields]]

?

Thank you,
-- 
Barbier de Reuille Pierre
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.python.org/pipermail/numpy-discussion/attachments/20130320/b1018ed8/attachment.html>


More information about the NumPy-Discussion mailing list