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 amaury.forgeotdarc
Recipients DaveH, amaury.forgeotdarc
Date 2013-03-06.08:50:38
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1362559839.47.0.333268514687.issue17366@psf.upfronthosting.co.za>
In-reply-to
Content
The backslash \ has a special meaning in strings: \n is the new line character, and \t is the tab character: http://docs.python.org/2/reference/lexical_analysis.html#string-literals

Try to print the string!
You could use \\, or raw strings r"like this".
Or just use forward slashes / which are allowed by Windows.
History
Date User Action Args
2013-03-06 08:50:39amaury.forgeotdarcsetrecipients: + amaury.forgeotdarc, DaveH
2013-03-06 08:50:39amaury.forgeotdarcsetmessageid: <1362559839.47.0.333268514687.issue17366@psf.upfronthosting.co.za>
2013-03-06 08:50:39amaury.forgeotdarclinkissue17366 messages
2013-03-06 08:50:38amaury.forgeotdarccreate