[issue11916] A few errnos from OSX

2011-05-07 Thread Roundup Robot
Roundup Robot added the comment: New changeset 2f978b4c02ad by Ronald Oussoren in branch 'default': Closes Issue 11916: Add a number of MacOSX specific definitions to the errno module. http://hg.python.org/cpython/rev/2f978b4c02ad -- nosy: +python-dev resolution: -> fixed stage: patch

[issue11916] A few errnos from OSX

2011-05-07 Thread Ronald Oussoren
Ronald Oussoren added the comment: And the patch works properly, with the patch applied (except for the two names I mentioned earlier): $ DYLD_FRAMEWORK_PATH=$PWD ./python.exe Python 3.3a0 (default:5fa92a47016c+, May 7 2011, 09:36:44) [GCC 4.2.1 (Apple Inc. build 5666) (dot 3)] on darwin Ty

[issue11916] A few errnos from OSX

2011-05-07 Thread Ronald Oussoren
Ronald Oussoren added the comment: 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/errnomod

[issue11916] A few errnos from OSX

2011-04-24 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- assignee: -> ronaldoussoren components: +Library (Lib), Macintosh -Extension Modules nosy: +ned.deily, ronaldoussoren stage: -> patch review versions: -Python 3.4 ___ Python tracker

[issue11916] A few errnos from OSX

2011-04-24 Thread Martin v . Löwis
Changes by Martin v. Löwis : -- versions: -Python 2.5, Python 2.6, Python 2.7, Python 3.1, Python 3.2 ___ Python tracker ___ ___ Pyth

[issue11916] A few errnos from OSX

2011-04-24 Thread Pierre Carrier
New submission from Pierre Carrier : A few errnos from OSX are missing in the eponymous module. --- 8< --- #ifdef EAUTH inscode(d, ds, de, "EAUTH", EAUTH, "Authentication error"); #endif #ifdef EBADARCH inscode(d, ds, de, "EBADARCH", EBADARCH, "Bad CPU type in executable"); #endif #ifdef