[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 
<http://bugs.python.org/issue4900>
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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 file types and names all of which made no difference.
When I copied the file (Windows XP) of the file it automatically adds
"Copy of" to the name. I then narrowed it down to the Capital letter in
the name.

___
Python tracker 
<http://bugs.python.org/issue4900>
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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 
<http://bugs.python.org/issue4900>
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com