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 ronaldoussoren
Recipients ned.deily, pcarrier, ronaldoussoren
Date 2011-05-07.07:37:18
SpamBayes Score 0.0007003412
Marked as misclassified No
Message-id <1304753839.56.0.474563828209.issue11916@psf.upfronthosting.co.za>
In-reply-to
Content
This shell-fragment lists which names in /usr/include/sys/errno don't exist in errnomodule.h:

$ grep '#define[      ]*E' /usr/include/sys/errno.h  | 
    awk '{ print $2 }' | grep -v '^ELAST$' | 
    while read name; do 
        grep -q $name Modules/errnomodule.c || echo $name; 
    done | sort

The following names in your list are already part in errnomodule.h:

* ECANCELED
* ENOTSUP

The patch looks fine otherwise. I'm currently rebuilding python3.3 and will commit the patch if everything works properly.
History
Date User Action Args
2011-05-07 07:37:19ronaldoussorensetrecipients: + ronaldoussoren, ned.deily, pcarrier
2011-05-07 07:37:19ronaldoussorensetmessageid: <1304753839.56.0.474563828209.issue11916@psf.upfronthosting.co.za>
2011-05-07 07:37:18ronaldoussorenlinkissue11916 messages
2011-05-07 07:37:18ronaldoussorencreate