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.

classification
Title: no help flag in base64 util
Type: enhancement Stage: resolved
Components: Library (Lib) Versions: Python 3.11
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: ammar2, miss-islington, rkuska
Priority: normal Keywords: patch

Created on 2019-02-11 18:57 by rkuska, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 11789 closed rkuska, 2019-02-11 18:57
PR 28774 merged ammar2, 2021-10-06 19:46
Messages (2)
msg335255 - (view) Author: Robert Kuska (rkuska) * Date: 2019-02-11 18:57
I failed today to print help message for base64 utility without an error:

 $ python3 -m base64 -help
option -h not recognized
usage: /usr/local/Cellar/python/3.7.2_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/base64.py [-d|-e|-u|-t] [file|-]
        -d, -u: decode
        -e: encode (default)
        -t: encode and decode string 'Aladdin:open sesame

So I felt like this is a ripple in time space continuum worth adjusting.

I already opened a PR to address this (probably not so worthy) issue (link attached).
msg403344 - (view) Author: miss-islington (miss-islington) Date: 2021-10-07 01:38
New changeset 5baec4aea6821256f5d1785a6bd596fab069f1b6 by Ammar Askar in branch 'main':
bpo-35970: Add help flag to base64 module (GH-28774)
https://github.com/python/cpython/commit/5baec4aea6821256f5d1785a6bd596fab069f1b6
History
Date User Action Args
2022-04-11 14:59:11adminsetgithub: 80151
2021-10-07 01:45:36ammar2setstatus: open -> closed
versions: + Python 3.11
resolution: fixed
components: + Library (Lib)
type: enhancement
stage: patch review -> resolved
2021-10-07 01:38:51miss-islingtonsetnosy: + miss-islington
messages: + msg403344
2021-10-06 19:46:00ammar2setkeywords: + patch
nosy: + ammar2

pull_requests: + pull_request27109
stage: patch review
2019-02-11 18:57:40rkuskacreate