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: Typo in the documentation of math.isclose()
Type: behavior Stage: resolved
Components: Documentation Versions: Python 3.6, Python 3.5
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: docs@python Nosy List: SilentGhost, berker.peksag, docs@python, marco.buttu, python-dev
Priority: normal Keywords: patch

Created on 2016-05-01 08:06 by marco.buttu, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
isclose.patch marco.buttu, 2016-05-01 08:06 review
Messages (4)
msg264585 - (view) Author: Marco Buttu (marco.buttu) * Date: 2016-05-01 08:06
The math.isclose() documentation reports is_close() as function name, instead of isclose(): 

  >>> import math
  >>> math.isclose.__doc__[:45]
  'is_close(a, b, *, rel_tol=1e-09, abs_tol=0.0)'
msg264586 - (view) Author: SilentGhost (SilentGhost) * (Python triager) Date: 2016-05-01 08:12
LGTM
msg264587 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2016-05-01 08:28
New changeset 469bc90e8922 by Berker Peksag in branch '3.5':
Issue #26898: Fix typo in math.isclose() docstring
https://hg.python.org/cpython/rev/469bc90e8922

New changeset 634764b4675c by Berker Peksag in branch 'default':
Issue #26898: Fix typo in math.isclose() docstring
https://hg.python.org/cpython/rev/634764b4675c
msg264588 - (view) Author: Berker Peksag (berker.peksag) * (Python committer) Date: 2016-05-01 08:29
Thanks!
History
Date User Action Args
2022-04-11 14:58:30adminsetgithub: 71085
2016-05-01 08:29:55berker.peksagsetstatus: open -> closed

type: behavior

nosy: + berker.peksag
messages: + msg264588
resolution: fixed
stage: commit review -> resolved
2016-05-01 08:28:43python-devsetnosy: + python-dev
messages: + msg264587
2016-05-01 08:27:56marco.buttusettitle: Error in the -> Typo in the documentation of math.isclose()
2016-05-01 08:12:06SilentGhostsetnosy: + SilentGhost

messages: + msg264586
stage: commit review
2016-05-01 08:06:17marco.buttucreate