On 9 Dez., 07:51, "Gabriel Genellina" <[EMAIL PROTECTED]> wrote:
> En Mon, 08 Dec 2008 20:09:23 -0200, resi147 <[EMAIL PROTECTED]> escribió:
>
> > I'm wondering if it's really a bug since it's so trivial:
>
> > fp = open('/etc/services')
> > ct = fp.read(1048)
> > print(ct[-80:], end=''
En Mon, 08 Dec 2008 20:09:23 -0200, resi147 <[EMAIL PROTECTED]> escribió:
I'm wondering if it's really a bug since it's so trivial:
fp = open('/etc/services')
ct = fp.read(1048)
print(ct[-80:], end='')
fp.close()
ct = fp.read(17)
print(ct)
the second read should fail, b