Arnaud Delobelle wrote:
> On Mar 26, 8:35 am, Gabriel Rossetti
> <[EMAIL PROTECTED]> wrote:
>
>> Hello,
>>
>> I wrote a program that reads data from a file and puts it in a string,
>> the problem is that it loops infinitely and that's not wanted, here is
>> the code :
>>
>> d = repr(f.read(D
Gabriel Rossetti wrote:
> Hello,
>
> I wrote a program that reads data from a file and puts it in a string,
> the problem is that it loops infinitely and that's not wanted, here is
> the code :
>
> d = repr(f.read(DEFAULT_BUFFER_SIZE))
> while d != "":
> file_str.write(d)
>
On Mar 26, 8:51 am, Gabriel Rossetti
<[EMAIL PROTECTED]> wrote:
> Gabriel Rossetti wrote:
> > Hello,
>
> > I wrote a program that reads data from a file and puts it in a string,
> > the problem is that it loops infinitely and that's not wanted, here is
> > the code :
>
> > d = repr(f.read(DEFAU
Gabriel Rossetti wrote:
> Hello,
>
> I wrote a program that reads data from a file and puts it in a string,
> the problem is that it loops infinitely and that's not wanted, here is
> the code :
>
> d = repr(f.read(DEFAULT_BUFFER_SIZE))
> while d != "":
> file_str.write(d)
>
On Mar 26, 8:35 am, Gabriel Rossetti
<[EMAIL PROTECTED]> wrote:
> Hello,
>
> I wrote a program that reads data from a file and puts it in a string,
> the problem is that it loops infinitely and that's not wanted, here is
> the code :
>
> d = repr(f.read(DEFAULT_BUFFER_SIZE))
> while d != ""
Gabriel Rossetti wrote:
> I wrote a program that reads data from a file and puts it in a string,
> the problem is that it loops infinitely and that's not wanted, here is
> the code :
>
> d = repr(f.read(DEFAULT_BUFFER_SIZE))
> while d != "":
> file_str.write(d)
> d = repr(
Gabriel Rossetti schrieb:
> Hello,
>
> I wrote a program that reads data from a file and puts it in a string,
> the problem is that it loops infinitely and that's not wanted, here is
> the code :
>
>d = repr(f.read(DEFAULT_BUFFER_SIZE))
>while d != "":
>file_str.write(d)
>