Tom Edwards added the comment:
Still an issue in 3.3.3. Igor's fix still works, thankfully.
--
nosy: +Artfunkel
versions: +Python 3.3 -Python 2.7
___
Python tracker
<http://bugs.python.org/is
Changes by Tom Edwards :
--
versions: +Python 2.7
___
Python tracker
<http://bugs.python.org/issue17213>
___
___
Python-bugs-list mailing list
Unsubscribe:
New submission from Tom Edwards:
Consider this script:
f = open("bug>test.txt",'w')
f.write("hello")
f.close()
On Windows the first line will throw an OSError exception because the character
'>' is not valid in an NTFS filename. This is
Tom Edwards added the comment:
Ha! What a feature. Thanks for the link.
Maybe I'm rehashing old arguments, but I still think that Python's behaviour in
this case is wrong. This is very surprising behaviour to anyone who isn't
intimately familiar with NTFS and should not be so