[New-bugs-announce] [issue17806] Add keyword args support to str/bytes.expandtabs()

Ezio Melotti report at bugs.python.org
Sun Apr 21 03:19:14 CEST 2013


New submission from Ezio Melotti:

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'

----------
assignee: ezio.melotti
components: Interpreter Core
files: expandtabs.diff
keywords: patch
messages: 187481
nosy: ezio.melotti
priority: normal
severity: normal
stage: patch review
status: open
title: Add keyword args support to str/bytes.expandtabs()
type: enhancement
versions: Python 3.4
Added file: http://bugs.python.org/file29958/expandtabs.diff

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue17806>
_______________________________________


More information about the New-bugs-announce mailing list