This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author eryksun
Recipients eryksun, hosford42, r.david.murray, serhiy.storchaka, steve.dower, tim.golden, zach.ware
Date 2014-10-24.18:49:56
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1414176596.32.0.483846080522.issue22719@psf.upfronthosting.co.za>
In-reply-to
Content
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
History
Date User Action Args
2014-10-24 18:49:56eryksunsetrecipients: + eryksun, tim.golden, r.david.murray, zach.ware, serhiy.storchaka, steve.dower, hosford42
2014-10-24 18:49:56eryksunsetmessageid: <1414176596.32.0.483846080522.issue22719@psf.upfronthosting.co.za>
2014-10-24 18:49:56eryksunlinkissue22719 messages
2014-10-24 18:49:56eryksuncreate