summaryrefslogtreecommitdiffstats
path: root/Objects
diff options
context:
space:
mode:
authorKirill Podoprigora <kirill.bast9@mail.ru>2024-08-06 12:47:31 (GMT)
committerGitHub <noreply@github.com>2024-08-06 12:47:31 (GMT)
commit8ce70d6c697c8179e007169ba2ec5d3a0dc77362 (patch)
tree76ae99cde1fdee280227be7af40e905a2412ab50 /Objects
parent0b433aa9df6b5bb84e77ff97e59b7bcd04f2199a (diff)
downloadcpython-8ce70d6c697c8179e007169ba2ec5d3a0dc77362.zip
cpython-8ce70d6c697c8179e007169ba2ec5d3a0dc77362.tar.gz
cpython-8ce70d6c697c8179e007169ba2ec5d3a0dc77362.tar.bz2
gh-122058: `Lib/inspect`: Update docstrings for `isfunction`, `isgenerator`, `isframe`, `iscode`. (#122059)
Co-authored-by: Bénédikt Tran <10796600+picnixz@users.noreply.github.com> Co-authored-by: Victor Stinner <vstinner@python.org>
Diffstat (limited to 'Objects')
-rw-r--r--Objects/frameobject.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/frameobject.c b/Objects/frameobject.c
index a8be7d7..4e77780 100644
--- a/Objects/frameobject.c
+++ b/Objects/frameobject.c
@@ -1721,7 +1721,7 @@ suspended:
}
PyDoc_STRVAR(clear__doc__,
-"F.clear(): clear most references held by the frame");
+"F.clear(): clear all references held by the frame");
static PyObject *
frame_sizeof(PyFrameObject *f, PyObject *Py_UNUSED(ignored))