Issue1496

classification
Title: fix os.listdir errno for non-existing dirs
Type: behaviour Severity: normal
Components: Library Versions: 2.5.1
Milestone:
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: hpk, pjenvey
Priority: Keywords:

Created on 2009-10-27.17:35:06 by hpk, last changed 2009-10-27.23:57:00 by pjenvey.

Messages
msg5273 (view) Author: holger krekel (hpk) Date: 2009-10-27.17:35:05
On Jython 2.5.1/JVM 1.6.0 on my ubuntu machine executing
"os.listdir('notexistingdir')" will raise an OSError with an attribute
errno==0 .  On a normal posix system it should equal 2.
msg5280 (view) Author: Philip Jenvey (pjenvey) Date: 2009-10-27.23:57:00
fixed to be more accurate in r6920
History
Date User Action Args
2009-10-27 23:57:00pjenveysetstatus: open -> closed
resolution: fixed
messages: + msg5280
nosy: + pjenvey
2009-10-27 17:35:06hpkcreate