[issue15784] OSError.__str__() should distinguish between errno and winerror

2012-09-09 Thread Roundup Robot
Roundup Robot added the comment: New changeset 4e941113e4fa by Richard Oudkerk in branch 'default': Issue #15784: Modify OSError.__str__() to better distinguish between http://hg.python.org/cpython/rev/4e941113e4fa -- ___ Python tracker

[issue15784] OSError.__str__() should distinguish between errno and winerror

2012-09-07 Thread Georg Brandl
Georg Brandl added the comment: Done in 4e941113e4fa. -- status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing li

[issue15784] OSError.__str__() should distinguish between errno and winerror

2012-08-29 Thread Richard Oudkerk
Richard Oudkerk added the comment: The changeset is 2e587b9bae35. Georg, could you copy it to your release branch please. -- ___ Python tracker ___ _

[issue15784] OSError.__str__() should distinguish between errno and winerror

2012-08-28 Thread Roundup Robot
Roundup Robot added the comment: New changeset 2e587b9bae35 by Richard Oudkerk in branch 'default': Issue #15784: Modify OSError.__str__() to better distinguish between http://hg.python.org/cpython/rev/2e587b9bae35 -- nosy: +python-dev ___ Python trac

[issue15784] OSError.__str__() should distinguish between errno and winerror

2012-08-27 Thread Richard Oudkerk
Richard Oudkerk added the comment: > Well, "Error" and "Errno" are rather hard to distinguish Embarrassingly, I did not even notice the was a difference. -- ___ Python tracker _

[issue15784] OSError.__str__() should distinguish between errno and winerror

2012-08-27 Thread Antoine Pitrou
Antoine Pitrou added the comment: Well, "Error" and "Errno" are rather hard to distinguish, and the difference isn't obvious either, so Richard's patch is a good improvement IMHO. -- assignee: -> sbt components: +Interpreter Core versions: +Python 3.3 _

[issue15784] OSError.__str__() should distinguish between errno and winerror

2012-08-27 Thread Georg Brandl
Georg Brandl added the comment: Uh, currently it's "Errno" or "Error", so there is a way to tell which. I'll leave to Antoine to decide what to do here; it's not like changing it a big deal. "WinError" looks kind of ugly to me though. -- ___ Python

[issue15784] OSError.__str__() should distinguish between errno and winerror

2012-08-27 Thread Antoine Pitrou
Antoine Pitrou added the comment: I originally kept it that way to minimize disruption with 3.2, but I agree it's a welcome change. As for acceptance in 3.3, Georg will have to decide. -- ___ Python tracker __

[issue15784] OSError.__str__() should distinguish between errno and winerror

2012-08-27 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- nosy: +georg.brandl ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.

[issue15784] OSError.__str__() should distinguish between errno and winerror

2012-08-25 Thread Richard Oudkerk
Changes by Richard Oudkerk : Removed file: http://bugs.python.org/file27001/winerror.patch ___ Python tracker ___ ___ Python-bugs-list mailing

[issue15784] OSError.__str__() should distinguish between errno and winerror

2012-08-25 Thread Richard Oudkerk
Changes by Richard Oudkerk : Added file: http://bugs.python.org/file27002/winerror.patch ___ Python tracker ___ ___ Python-bugs-list mailing l

[issue15784] OSError.__str__() should distinguish between errno and winerror

2012-08-25 Thread Richard Oudkerk
New submission from Richard Oudkerk: Since WindowsError became an alias of OSError, the error number shown in the stringification of an OSError err can either be a windows error code (err.winerror) or a posix style error number (err.errno), with no way to tell which. For instance in >>> os