This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author splitscreen
Recipients
Date 2006-06-09.12:57:03
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
When redirecting Pdb's stdout file object, the commands
that use this to write output don't call flush() on the
object. This leads to problem when setting the stdout
file object to a fileobject created from a socket with
the makefile() method.

My proposed solution to this problem is for the Pdb
class to contain a method for writing to fileobjects
which can be overridden by programmers if they wish to
write to sockets or other streams that require flush()ing.

I can work on this patch if people thinks its a good idea.

Thanks, Matt
History
Date User Action Args
2008-01-20 09:58:45adminlinkissue1503502 messages
2008-01-20 09:58:45admincreate