On Thu, Nov 22, 2007 at 11:14:07PM -0500, Alan G Isaac wrote:
> In numpy.core.numeric.py you will find loadtxt, which uses
> the following::

>         line = line[:line.find(comments)].strip()

> I believe there is a bug here (when a line has no comment).
> To illustrate::

>     >>> line = "12345"
>     >>> comments = "#"
>     >>> line[:line.find(comments)]
>     '1234'

Unless you are sure that line always ends with a "\n". This is the case
in the code you are refering too. Unless I am missing some thing.

Gaƫl
_______________________________________________
Numpy-discussion mailing list
Numpy-discussion@scipy.org
http://projects.scipy.org/mailman/listinfo/numpy-discussion

Reply via email to