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 Jared Bevis
Recipients Jared Bevis, ezio.melotti, mrabarnett
Date 2015-09-19.02:45:57
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1442630758.17.0.869659981248.issue25174@psf.upfronthosting.co.za>
In-reply-to
Content
I'm a new python learner but I noticed inconsistent behavior of the backspace character when used in strings.  I'm running 2.7.10.  Whenever the backspace character '\b' is at the very end of a string, nothing happens, but if it is in the middle of string it behaves as expected.  

For example:
print "12345" + '\b'
returns:
>>>12345

But:
print "12345" + '\b' + '6'
returns:
>>> 12346
History
Date User Action Args
2015-09-19 02:45:58Jared Bevissetrecipients: + Jared Bevis, ezio.melotti, mrabarnett
2015-09-19 02:45:58Jared Bevissetmessageid: <1442630758.17.0.869659981248.issue25174@psf.upfronthosting.co.za>
2015-09-19 02:45:58Jared Bevislinkissue25174 messages
2015-09-19 02:45:57Jared Beviscreate