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 ezio.melotti
Recipients ezio.melotti
Date 2013-04-21.01:19:12
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1366507154.61.0.217389659931.issue17806@psf.upfronthosting.co.za>
In-reply-to
Content
The attached patch adds keyword args support to str/bytes.expandtabs():
>>> 'a\tb'.expandtabs(tabsize=8)
'a       b'
>>> b'a\tb'.expandtabs(tabsize=8)
b'a       b'
History
Date User Action Args
2013-04-21 01:19:14ezio.melottisetrecipients: + ezio.melotti
2013-04-21 01:19:14ezio.melottisetmessageid: <1366507154.61.0.217389659931.issue17806@psf.upfronthosting.co.za>
2013-04-21 01:19:14ezio.melottilinkissue17806 messages
2013-04-21 01:19:14ezio.melotticreate