eryksun added the comment:

What do you get for os.stat?

    bak_path = r"C:\Users\EAARHOS\Desktop\Python Review\baseExcel.py"
    print(os.stat(bak_path))
    bak_path += '.bak'
    print(os.stat(bak_path))
    bak_path += '.bak'
    print(os.stat(bak_path)) # This should raise FileNotFoundError

----------
nosy: +eryksun

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue22719>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to