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 G2P
Recipients G2P, ajaksu2, eichin, nnorwitz
Date 2012-10-06.09:46:32
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1349516793.14.0.410389230635.issue1520818@psf.upfronthosting.co.za>
In-reply-to
Content
The bug still exists in Python 2.6 (2.6.7-4ubuntu2). Python 2.7 (2.7.3-5ubuntu4) works correctly. I don't have Python 2.5 on hand to check.

Here is a very simple test case:

import array, fcntl
buf = array.array('B', [0]*1024)
fcntl.ioctl(0, termios.TIOCGPGRP, buf, 1)
assert any(by != 0 for by in buf)
History
Date User Action Args
2012-10-06 09:46:33G2Psetrecipients: + G2P, nnorwitz, eichin, ajaksu2
2012-10-06 09:46:33G2Psetmessageid: <1349516793.14.0.410389230635.issue1520818@psf.upfronthosting.co.za>
2012-10-06 09:46:33G2Plinkissue1520818 messages
2012-10-06 09:46:32G2Pcreate