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 skrah
Recipients aklauer, amaury.forgeotdarc, benjamin.peterson, hynek, jcea, loewis, pitrou, python-dev, rhettinger, skrah, terry.reedy, vstinner
Date 2012-06-23.09:19:29
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <20120623091927.GA20288@sleipnir.bytereef.org>
In-reply-to <1340441915.82.0.719535169566.issue10142@psf.upfronthosting.co.za>
Content
> int main(void)
> {
>     int fd = open("ccc.c", O_RDONLY);
>     off_t offset=lseek(fd,0,SEEK_HOLE);
>     if (offset==-1) {
>         if (errno==ENXIO) {

Darn, the errno in test_posix should be ENOTTY. Indeed, with ENOTTY the
test case for the bug is positive.
History
Date User Action Args
2012-06-23 09:19:31skrahsetrecipients: + skrah, loewis, rhettinger, terry.reedy, jcea, amaury.forgeotdarc, pitrou, vstinner, benjamin.peterson, python-dev, hynek, aklauer
2012-06-23 09:19:30skrahlinkissue10142 messages
2012-06-23 09:19:29skrahcreate