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 tim.golden
Recipients kle_py, tim.golden
Date 2008-12-22.16:53:52
SpamBayes Score 0.004386215
Marked as misclassified No
Message-id <1229964834.04.0.583771677407.issue4723@psf.upfronthosting.co.za>
In-reply-to
Content
You need to use raw strings or to use forward-slashes in your pathnames:

r"c:\downloads\hacking\0812logcompress"

or

"c:/downloads/hacking/0812logcompress"

The sequence \0 has a special meaning in strings, introducing an octal
escape, I think.
History
Date User Action Args
2008-12-22 16:53:54tim.goldensetrecipients: + tim.golden, kle_py
2008-12-22 16:53:54tim.goldensetmessageid: <1229964834.04.0.583771677407.issue4723@psf.upfronthosting.co.za>
2008-12-22 16:53:52tim.goldenlinkissue4723 messages
2008-12-22 16:53:52tim.goldencreate