Hello,
I have some problem with os exception.
In the traceback info I get only the errno without the description.
for examplem when I write:
import os;
os.listdir("no-exists-dir-name");
I get the exception:
Traceback (most recent call last):
File "<interactive input>", line 1, in <module>
WindowsError: [Error 3] : 'no-exists-dir-name/*.*'
I findout that [Error 3] in errno is map to the string: 'No such process' (return by os.strerror(3)).
Why I did not get something like:
OSErro: [Error 3] : 'No such process' 'no-exists-dir-name/*.*'
I use ActiveState ActivePython 2.5, but it is also at other version and also at the version from python.org.
Thanks