[issue29277] os.getcwd failing on LOFS share

2017-01-15 Thread STINNER Victor
STINNER Victor added the comment: When getcwd() fails with ENOENT, os.getcwd() raises OSError(ENOENT). It's expected and not a bug in Python. Please report the issue to LOFS. -- nosy: +haypo resolution: -> not a bug status: open -> closed ___

[issue29277] os.getcwd failing on LOFS share

2017-01-15 Thread miniflow
miniflow added the comment: After performing an strace - it shows that the underlying call to getcwd is indeed returning ENOENT which is not correct. Does this become a libc bug? -- ___ Python tracker

[issue29277] os.getcwd failing on LOFS share

2017-01-14 Thread miniflow
New submission from miniflow: I am calling os.getcwd and am occasionally seeing failures inside my program. This is not due to files missing as the files on the share are static. Eror is: [Errno 2] No such file or directory Which is definitely not the case. Can any sort of trace be done at