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 nestor
Recipients nestor, pitrou
Date 2009-06-24.23:06:37
SpamBayes Score 7.041756e-12
Marked as misclassified No
Message-id <1245884799.16.0.275523063504.issue6236@psf.upfronthosting.co.za>
In-reply-to
Content
That fails consistently:
Python 2.6.2 (r262:71600, Jun  4 2009, 16:07:26) [C] on aix5
Type "help", "copyright", "credits" or "license" for more information.
>>> import os
>>> r,w=os.pipe()
>>> os.lseek(r,0,1)
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
OSError: [Errno 29] Illegal seek
>>>
Python 3.0.1 (r301:69556, Jun  4 2009, 16:07:22) [C] on aix5
Type "help", "copyright", "credits" or "license" for more information.
>>> import os
>>> r,w=os.pipe()
>>> os.lseek(r,0,1)
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
OSError: [Errno 29] Illegal seek
>>>
Python 3.1rc2 (r31rc2:73411, Jun 15 2009, 10:56:49) [C] on aix5
Type "help", "copyright", "credits" or "license" for more information.
>>> import os
>>> r,w=os.pipe()
>>> os.lseek(r,0,1)
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
OSError: [Errno 29] Illegal seek
>>>
History
Date User Action Args
2009-06-24 23:06:39nestorsetrecipients: + nestor, pitrou
2009-06-24 23:06:39nestorsetmessageid: <1245884799.16.0.275523063504.issue6236@psf.upfronthosting.co.za>
2009-06-24 23:06:37nestorlinkissue6236 messages
2009-06-24 23:06:37nestorcreate