[issue4900] Can't Locate File with No Capital in Name

2009-01-09 Thread Benjamin Peterson
Changes by Benjamin Peterson : -- resolution: -> invalid status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing li

[issue4900] Can't Locate File with No Capital in Name

2009-01-09 Thread mark pennock
mark pennock added the comment: Your right! Thanks a lot, I am obviously a newbie. ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue4900] Can't Locate File with No Capital in Name

2009-01-09 Thread Ulrich Eckhardt
Ulrich Eckhardt added the comment: "\t" is a tab while "\T" is (I think) just an ugly equivalent to "T". Use either of r"D:\test.html" "D:\\test.html" Please check if that is the reason for your failure. -- nosy: +eckhardt ___ Python tracker

[issue4900] Can't Locate File with No Capital in Name

2009-01-09 Thread mark pennock
New submission from mark pennock : error reading files in python 2.5 reports files don't exist under certain conditions *Doesn't Work Code* f = open("D:\test.html", "r").read() *Does Work Code* (Change file name and retry) f = open("D:\Test.html", "r").read() *Comments* i tried different fil

[issue4900] Can't Locate File with No Capital in Name

2009-01-09 Thread mark pennock
Changes by mark pennock : -- components: None nosy: markpennock severity: normal status: open title: Can't Locate File with No Capital in Name versions: Python 2.5 ___ Python tracker