Re: would this be called bug?

2008-05-23 Thread Terry Reedy
"Amit Gupta" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] | The code is attached below. Basically I am taking a substring of | variable m, and using "buffer" instead of slicing. | | However, the application of int on that buffer start correctly from | the offset, but it scans all t

Re: would this be called bug?

2008-05-23 Thread MRAB
On May 24, 1:33 am, Amit Gupta <[EMAIL PROTECTED]> wrote: > The code is attached below. Basically I am taking a substring of > variable m, and using "buffer" instead of slicing. > > However, the application of int on that buffer start correctly from > the offset, but it scans all the way to the end

would this be called bug?

2008-05-23 Thread Amit Gupta
The code is attached below. Basically I am taking a substring of variable m, and using "buffer" instead of slicing. However, the application of int on that buffer start correctly from the offset, but it scans all the way to the end, instead of stopping at the length of the buffer. It works howeve