[issue10179] os.stat fails on mapped network drive

2013-10-24 Thread Tim Golden
Changes by Tim Golden : -- resolution: -> out of date stage: -> committed/rejected ___ Python tracker ___ ___ Python-bugs-list maili

[issue10179] os.stat fails on mapped network drive

2013-10-24 Thread Tim Golden
Changes by Tim Golden : -- status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.

[issue10179] os.stat fails on mapped network drive

2013-10-24 Thread Antoine Pitrou
Antoine Pitrou added the comment: I don't know, I have stopped using VirtualBox here. Suggest closing. -- ___ Python tracker ___ ___ P

[issue10179] os.stat fails on mapped network drive

2013-10-24 Thread Tim Golden
Tim Golden added the comment: Just housekeeping some Windows calls: Antoine, your last comment suggests that this is no longer an issue. I don't have a VirtualBox install to test, so can you confirm whether this can be closed? -- ___ Python tracker

[issue10179] os.stat fails on mapped network drive

2013-07-05 Thread Christian Heimes
Changes by Christian Heimes : -- versions: +Python 3.3, Python 3.4 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscrib

[issue10179] os.stat fails on mapped network drive

2010-10-23 Thread Antoine Pitrou
Antoine Pitrou added the comment: > Can you try my patch in #10027? Does this also fail? No, your patch seems to fix the issue. -- ___ Python tracker ___ __

[issue10179] os.stat fails on mapped network drive

2010-10-23 Thread Hirokazu Yamamoto
Hirokazu Yamamoto added the comment: Can you try my patch in #10027? Does this also fail? -- ___ Python tracker ___ ___ Python-bugs-l

[issue10179] os.stat fails on mapped network drive

2010-10-23 Thread Martin v . Löwis
Martin v. Löwis added the comment: I think something like this is worth adding. I'd like to see two changes implemented: - GetLastError should be checked for the "not implemented or some such" error that you got, and the fallback only performed if its this error - a comment explaining the moti

[issue10179] os.stat fails on mapped network drive

2010-10-23 Thread Antoine Pitrou
Antoine Pitrou added the comment: This patch seems to do the trick, although I'm not sure it warrants including in Python. -- keywords: +patch Added file: http://bugs.python.org/file19342/osstat.patch ___ Python tracker

[issue10179] os.stat fails on mapped network drive

2010-10-23 Thread Antoine Pitrou
Antoine Pitrou added the comment: Yes, indeed. It was critical before I found out that it's VirtualBox-specific. -- priority: critical -> normal ___ Python tracker ___ _

[issue10179] os.stat fails on mapped network drive

2010-10-23 Thread Martin v . Löwis
Martin v. Löwis added the comment: Let me guess: It's GetFinalPathNameByHandle that is failing. Put some debug output right after the call to verify. Why is this critical? Not being able to stat VirtualBox folders doesn't sound that critical to me. -- nosy: +loewis _

[issue10179] os.stat fails on mapped network drive

2010-10-23 Thread Antoine Pitrou
Antoine Pitrou added the comment: Hmm, it looks like this is actually VirtualBox-specific. It works with another network drive mapped on Y: >>> os.stat(r"y:") nt.stat_result(st_mode=16895, st_ino=0, st_dev=0, st_nlink=0, st_uid=0, st_gid=0, st_size=0, st_atime=1287784175, st_mtime=1281439296,

[issue10179] os.stat fails on mapped network drive

2010-10-23 Thread Antoine Pitrou
Antoine Pitrou added the comment: And 3.1 works fine. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http:

[issue10179] os.stat fails on mapped network drive

2010-10-23 Thread Antoine Pitrou
New submission from Antoine Pitrou : This network drive is actually mapped through the VirtualBox guest additions. Under Python 2.7 (official 64-bit MSI installer), this works fine: >>> s = 'Z:\\__svn__\\Lib\\test\\keycert.pem' >>> os.stat(s) nt.stat_result(st_mode=33206, st_ino=0L, st_dev=0, s