[issue5737] add Solaris errnos

2010-08-18 Thread Antoine Pitrou
Antoine Pitrou added the comment: I don't have a Solaris machine to test, but the patch is straightforward enough. I've committed it in r84179. Thank you! -- resolution: -> fixed stage: patch review -> committed/rejected status: open -> closed ___

[issue5737] add Solaris errnos

2010-08-17 Thread A.M. Kuchling
A.M. Kuchling added the comment: This patch looks unproblematic to me, unless we're trying to keep platform-specific error codes out of errnomodule.c. I removed Python 2.7 and 3.1 from Versions, guessing that this change would be unacceptable in a bugfix release. -- nosy: +akuchling

[issue5737] add Solaris errnos

2009-08-05 Thread Antoine Pitrou
Antoine Pitrou added the comment: Martin, what do you think? -- nosy: +loewis, pitrou ___ Python tracker ___ ___ Python-bugs-list mail

[issue5737] add Solaris errnos

2009-07-31 Thread Christopher Dolan
Christopher Dolan added the comment: This is a patch against the latest subversion revision that adds the addition errno names, numbers, and messages available in Solaris. -- keywords: +patch nosy: +cdolan Added file: http://bugs.python.org/file14616/issue5737.diff

[issue5737] add Solaris errnos

2009-04-15 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- keywords: +easy priority: -> normal stage: -> needs patch versions: +Python 2.7, Python 3.1 -Python 2.4, Python 3.0 ___ Python tracker ___ ___

[issue5737] add Solaris errnos

2009-04-11 Thread Matthew Ahrens
New submission from Matthew Ahrens : The "errno" module does not contain some error names/numbers that are used on Solaris. Please add them. from /usr/include/sys/errno.h: #define ECANCELED 47/* Operation canceled */ #define ENOTSUP 48 /* Operation not supported