[issue13152] textwrap: support custom tabsize

2012-05-19 Thread Hynek Schlawack
Hynek Schlawack added the comment: I've added it myself and committed your code – thank you for your contribution John! -- resolution: -> fixed stage: patch review -> committed/rejected status: open -> closed ___ Python tracker

[issue13152] textwrap: support custom tabsize

2012-05-19 Thread Roundup Robot
Roundup Robot added the comment: New changeset d38e821c1b80 by Hynek Schlawack in branch 'default': #13152: Allow to specify a custom tabsize for expanding tabs in textwrap http://hg.python.org/cpython/rev/d38e821c1b80 -- nosy: +python-dev ___ Python

[issue13152] textwrap: support custom tabsize

2012-04-30 Thread Hynek Schlawack
Hynek Schlawack added the comment: The code LGTM, the documentation lacks `versionchanged` tag though. Would you mind adding it? -- nosy: +hynek ___ Python tracker ___

[issue13152] textwrap: support custom tabsize

2011-11-07 Thread John Feuerstein
John Feuerstein added the comment: textwrap_tabsize_v2.diff: * Moved the tabsize parameter to the end of the parameter list * Added documentation update * Made the test case more obvious -- Added file: http://bugs.python.org/file23624/textwrap_tabsize_v2.diff _

[issue13152] textwrap: support custom tabsize

2011-11-01 Thread Georg Brandl
Georg Brandl added the comment: Two comments: * The new parameter to __init__ should be added at the end of the parameter list. * A documentation update would be nice. -- ___ Python tracker

[issue13152] textwrap: support custom tabsize

2011-10-18 Thread Raymond Hettinger
Raymond Hettinger added the comment: +1 -- nosy: +rhettinger ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: h

[issue13152] textwrap: support custom tabsize

2011-10-14 Thread Terry J. Reedy
Terry J. Reedy added the comment: I am a bit surprised this was not part of the original design. 'Tabsize' make 'expand_tabs' redundant and tabsize==0 could be interpreted as expand_tabs==False. On the other hand, the meaning of 'expand_tabs' could be expanded to include the tabsize. I am almo

[issue13152] textwrap: support custom tabsize

2011-10-11 Thread Ezio Melotti
Changes by Ezio Melotti : -- keywords: +needs review nosy: +georg.brandl stage: -> patch review ___ Python tracker ___ ___ Python-bug

[issue13152] textwrap: support custom tabsize

2011-10-11 Thread John Feuerstein
New submission from John Feuerstein : The textwrap module calls .expandtabs() to expand tabs to spaces. This patch adds support for a custom tabsize, so that .expandtabs(tabsize) is called instead. Includes test case. -- components: Library (Lib) files: textwrap_tabsize.diff keywords: