Amaury Forgeot d'Arc <[EMAIL PROTECTED]> added the comment:
This "_fo_read_no_intr" method does not exist anywhere in the standard
python code.
A quick Google search reveals that it certainly comes from a patch
proposed by the Ubuntu maintainers:
http://patches.ubuntu.com/p/python2.5/extracted
New submission from Krzysztof Pawlik <[EMAIL PROTECTED]>:
Using stderr=subprocess.STDOUT causes Python 3.0 (RC1 from Ubuntu 8.10)
to raise AttributeError, important code snippet (whole test program
attached):
proc = subprocess.Popen(['whoami'], stdout=subprocess.PIPE,
stderr=subprocess.STDOUT)
s