[issue17525] os.getcwd() fails on cifs share

2013-05-21 Thread David Cuddihy
David Cuddihy added the comment: I apologize for not posting the strace output - I didn't see the request until today. Libc getcwd() is indeed failing - when I run a c program which calls getcwd() and prints the output, the call to getcwd() fails - errno is ENOENT and the buffer is null.

[issue17525] os.getcwd() fails on cifs share

2013-05-20 Thread Charles-François Natali
Changes by Charles-François Natali : -- resolution: -> invalid stage: -> committed/rejected status: pending -> closed ___ Python tracker ___ ___

[issue17525] os.getcwd() fails on cifs share

2013-03-26 Thread Charles-François Natali
Changes by Charles-François Natali : -- status: open -> pending ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue17525] os.getcwd() fails on cifs share

2013-03-24 Thread R. David Murray
Changes by R. David Murray : -- type: crash -> behavior ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://

[issue17525] os.getcwd() fails on cifs share

2013-03-23 Thread Charles-François Natali
Charles-François Natali added the comment: os.getcwd() just calls the libc getcwd(3), so Python's not the problem here. it's likely an issue with the CIFS implementation (I guess you're using fuse?). Could you post the output of: $ strace python -c "import os; os.getcwd())" upon failure? > Ev

[issue17525] os.getcwd() fails on cifs share

2013-03-22 Thread David Cuddihy
New submission from David Cuddihy: Calls to os.getcwd() can fail if issued from a cifs-mounted directory once any of the files or subdirectories have been changed remotely. To recreate this: on Linux, mount a windows share using the mount.cifs command. cd to the share and run python. Pyt