diff options
author | Kirill Podoprigora <kirill.bast9@mail.ru> | 2024-08-06 12:47:31 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-06 12:47:31 (GMT) |
commit | 8ce70d6c697c8179e007169ba2ec5d3a0dc77362 (patch) | |
tree | 76ae99cde1fdee280227be7af40e905a2412ab50 /Objects | |
parent | 0b433aa9df6b5bb84e77ff97e59b7bcd04f2199a (diff) | |
download | cpython-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.c | 2 |
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)) |