[issue20384] open() exception doesn't contain file name on Windows

2014-01-24 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Yes, thank you. It is alredy fixed in 38a50d8102be (thanks Arfrever). -- ___ Python tracker ___ __

[issue20384] open() exception doesn't contain file name on Windows

2014-01-24 Thread Mark Lawrence
Mark Lawrence added the comment: I think there's a typo in the patch, test = 'xxx' but after the check for platform and mode, text = ''. -- ___ Python tracker ___ __

[issue20384] open() exception doesn't contain file name on Windows

2014-01-24 Thread Roundup Robot
Roundup Robot added the comment: New changeset 69d885ac042d by Serhiy Storchaka in branch '3.3': Issue #20384: Fix the test_tarfile test on Windows. http://hg.python.org/cpython/rev/69d885ac042d -- nosy: +python-dev ___ Python tracker

[issue20384] open() exception doesn't contain file name on Windows

2014-01-24 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Ah, here is os.open() raises an exception. Thank you Mark. On Linux it raises an exception with file name. >>> import os; os.open('non-existing', os.O_RDONLY | getattr(os, 'O_BINARY', >>> 0), 0x666) Traceback (most recent call last): File "", line 1, in F

[issue20384] open() exception doesn't contain file name on Windows

2014-01-24 Thread Mark Lawrence
Mark Lawrence added the comment: Two attempts, one with the pipe "|" symbol in the mode, one without. >>> import tarfile; tarfile.open('non-existing', 'r|') Traceback (most recent call last): File "", line 1, in File "C:\Python33\lib\tarfile.py", line 1594, in open stream = _Stream(name

[issue20384] open() exception doesn't contain file name on Windows

2014-01-24 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- nosy: +brian.curtin, tim.golden ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue20384] open() exception doesn't contain file name on Windows

2014-01-24 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- components: +Windows ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://m

[issue20384] open() exception doesn't contain file name on Windows

2014-01-24 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Mark, could you please try following commands? import tarfile; tarfile.open('non-existing', 'r|') -- ___ Python tracker ___ _

[issue20384] open() exception doesn't contain file name on Windows

2014-01-24 Thread Mark Lawrence
Mark Lawrence added the comment: Not on my system, so what's changed? Python 3.3.3 (v3.3.3:c3896275c0f6, Nov 18 2013, 21:18:40) [MSC v.1600 32 bit (Intel)] on win32 Type "help", "copyright", "credits" or "license" for more information. >>> open('non-existing', 'rb') Traceback (most recent call

[issue20384] open() exception doesn't contain file name on Windows

2014-01-24 Thread Serhiy Storchaka
New submission from Serhiy Storchaka: On Linux for 2.7, 3.3 and 3.4 the open of non-existing file raises an exception which contains file name. Python 2.7: >>> open('non-existing', 'rb') Traceback (most recent call last): File "", line 1, in IOError: [Errno 2] No such file or directory: 'no