New submission from Eric Pruitt:
When buffering data from a file, the buffered I/O does not take into account
the current file descriptor position. In the following example, I open a file
and seek forward 1,000 bytes:
>>> f = open("test-file", "rb")
>>> f
Eric Pruitt added the comment:
There's documentation, but you have to switch to the Python 3k branch --
http://code.google.com/p/subprocdev/source/browse/?name=python3k#hg%2Fdoc.
As for the other criticisms, I'm sure there are plenty of things that need to
be improved upon; I was
Changes by Eric Pruitt :
--
status: open -> closed
___
Python tracker
<http://bugs.python.org/issue10634>
___
___
Python-bugs-list mailing list
Unsubscri
Eric Pruitt added the comment:
Is there a way to force the time module to be reinitialized? I had no success
experimenting with reload and del, but I assume that has something to do with
the module being CRT based.
--
___
Python tracker
<h
New submission from Eric Pruitt :
If the current time zone changes on Windows, time.localtime will continue to
return results that reflect the time zone the system used when the module was
imported. My current work around is to use GetLocalTime from kernel32 with
ctypes. Windows does not have
Changes by Eric Pruitt :
--
nosy: -ericpruitt
___
Python tracker
<http://bugs.python.org/issue10562>
___
___
Python-bugs-list mailing list
Unsubscribe:
James Eric Pruitt added the comment:
> Also, why is the result put in parens?
Without them, something like 'eval("100 * " + repr(imaginary))' would not work
properly.
--
nosy: +ericpruitt
___
Python tracker
<http://
James Eric Pruitt added the comment:
Hello, I am working on this patch and some additional features for my
Google Summer of Code project (subdev.blogspot.com) and will eventually
attempt to get the code committed to Python 3.1 or 3.2 and Python 2.7. I
will have the unit tests completed shortly