[issue41283] The parameter name for imghdr.what in the documentation is wrong

2021-04-02 Thread Ammar Askar
Change by Ammar Askar : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ ___

[issue41283] The parameter name for imghdr.what in the documentation is wrong

2020-07-20 Thread Joannah Nanjekye
Change by Joannah Nanjekye : -- pull_requests: +20716 pull_request: https://github.com/python/cpython/pull/21573 ___ Python tracker ___

[issue41283] The parameter name for imghdr.what in the documentation is wrong

2020-07-20 Thread Joannah Nanjekye
Joannah Nanjekye added the comment: New changeset 5241e189e77972d3a07acbbb3f0c0cbc2aeeb681 by Ammar Askar in branch 'master': bpo-41283: Fix mismatched argument name for imghdr.what (GH-21501) https://github.com/python/cpython/commit/5241e189e77972d3a07acbbb3f0c0cbc2aeeb681 --

[issue41283] The parameter name for imghdr.what in the documentation is wrong

2020-07-15 Thread Ammar Askar
Change by Ammar Askar : -- keywords: +patch nosy: +ammar2 nosy_count: 2.0 -> 3.0 pull_requests: +20642 stage: -> patch review pull_request: https://github.com/python/cpython/pull/21501 ___ Python tracker

[issue41283] The parameter name for imghdr.what in the documentation is wrong

2020-07-12 Thread Adam Eltawla
New submission from Adam Eltawla : I noticed the parameter name for imghdr.what in the documentation is wrong Link: https://docs.python.org/3.8/library/imghdr.html?highlight=imghdr function imghdr.what(filename, h=None) In reality: def what(file, h=None): It is 'file' not 'filename'.