[issue46196] documentation for cmd library should include columnize() function

2022-01-02 Thread sharewell
sharewell added the comment: Thank you! Jawed > On Jan 2, 2022, at 10:34 AM, Éric Araujo wrote: > > > Éric Araujo added the comment: > > Done, cheers! > > -- > resolution: -> fixed > stage: patch review -> resolved > status: open -> closed > >

[issue46196] documentation for cmd library should include columnize() function

2022-01-02 Thread Éric Araujo
Éric Araujo added the comment: Done, cheers! -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue46196] documentation for cmd library should include columnize() function

2022-01-02 Thread Éric Araujo
Éric Araujo added the comment: New changeset ce4d25f3cd0a1c6e65b64015140fb5e1397c8ac5 by Nikita Sobolev in branch 'main': bpo-46196: document method cmd.Cmd.columnize (#30303) https://github.com/python/cpython/commit/ce4d25f3cd0a1c6e65b64015140fb5e1397c8ac5 --

[issue46196] documentation for cmd library should include columnize() function

2021-12-31 Thread Éric Araujo
Éric Araujo added the comment: The method is called from one place only, but the fact that it is its own method and has dedicated tests seems to indicate that it was meant as standalone piece of functionality. We can’t be sure of original intent given that no method in the class uses the

[issue46196] documentation for cmd library should include columnize() function

2021-12-30 Thread Nikita Sobolev
Change by Nikita Sobolev : -- keywords: +patch nosy: +sobolevn nosy_count: 2.0 -> 3.0 pull_requests: +28516 stage: -> patch review pull_request: https://github.com/python/cpython/pull/30303 ___ Python tracker

[issue46196] documentation for cmd library should include columnize() function

2021-12-29 Thread sharewell
New submission from sharewell : Cmd.columnize is an extremely useful function in Python, that can be used in many situations. It is part of the Cmd library. Unfortunately, the Cmd documentation does not mention it. It should. I only found out about it via https://stackoverflow.com/a/59627245