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 brian.curtin
Recipients brian.curtin, kisielk
Date 2010-09-24.00:21:27
SpamBayes Score 0.00065401295
Marked as misclassified No
Message-id <1285287704.17.0.160778532769.issue9933@psf.upfronthosting.co.za>
In-reply-to
Content
The following code exists in Modules/posixmodule.c

8167     /* These come from sysexits.h */
...
8216 #ifdef EX_NOTFOUND
8217     if (ins(d, "EX_NOTFOUND", (long)EX_NOTFOUND)) return -1;
8218 #endif /* EX_NOTFOUND */


sysexits.h on my Mac has no mention of EX_NOTFOUND. I'm guessing it was removed some time ago or maybe it never existed? I wasn't able to find anything after a quick Google search.

Was there any particular reason you need EX_NOTFOUND other than that it's documented? Just trying to trace where this thing came from and went.
History
Date User Action Args
2010-09-24 00:21:44brian.curtinsetrecipients: + brian.curtin, kisielk
2010-09-24 00:21:44brian.curtinsetmessageid: <1285287704.17.0.160778532769.issue9933@psf.upfronthosting.co.za>
2010-09-24 00:21:28brian.curtinlinkissue9933 messages
2010-09-24 00:21:27brian.curtincreate