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 <rep...@bugs.python.org> <http://bugs.python.org/issue17806> _______________________________________ _______________________________________________ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com