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 christian.heimes
Recipients christian.heimes, rappy
Date 2012-12-21.17:06:32
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1356109592.51.0.986418612721.issue16744@psf.upfronthosting.co.za>
In-reply-to
Content
You have to either quote the backslashes or use raw strings:

>>> "\a"
'\x07'
>>> "\\a"
'\\a'
>>> r"\a"
'\\a'
History
Date User Action Args
2012-12-21 17:06:32christian.heimessetrecipients: + christian.heimes, rappy
2012-12-21 17:06:32christian.heimessetmessageid: <1356109592.51.0.986418612721.issue16744@psf.upfronthosting.co.za>
2012-12-21 17:06:32christian.heimeslinkissue16744 messages
2012-12-21 17:06:32christian.heimescreate