Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Lib/inspect.py
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
inspect.isfunction docstring is missing a:
inspect.isfunction
__dict__
__closure__
__qualname__
__module__
__type_params__
inspect.isgenerator:
inspect.isgenerator
gi_yieldfrom
gi_suspended
next
inspect.isframe:
inspect.isframe
clear
f_trace_lines
f_trace_opcodes
inspect.iscode:
inspect.iscode
co_positions
co_lines
co_qualname
replace
I have a PR ready.
Lib/inspect
isfunction
isgenerator
isframe
iscode
The text was updated successfully, but these errors were encountered:
gh-122058: Lib/inspect: Update docstrings for isfunction, `isgene…
8ce70d6
…rator`, `isframe`, `iscode`. (#122059) Co-authored-by: Bénédikt Tran <[email protected]> Co-authored-by: Victor Stinner <[email protected]>
Fixed by commit 8ce70d6.
Sorry, something went wrong.
pythongh-122058: Lib/inspect: Update docstrings for isfunction, `…
3df4ace
…isgenerator`, `isframe`, `iscode`. (python#122059) Co-authored-by: Bénédikt Tran <[email protected]> Co-authored-by: Victor Stinner <[email protected]>
5d455ea
No branches or pull requests
Uh oh!
There was an error while loading. Please reload this page.
inspect.isfunction
docstring is missing a:__dict__
__closure__
__qualname__
__module__
__type_params__
inspect.isgenerator
:gi_yieldfrom
gi_suspended
(?) an undocumented attribute, I guess we should not expose it therenext
- an old attribute which has been removed, so should be removed from there as wellinspect.isframe
:clear
f_trace_lines
f_trace_opcodes
inspect.iscode
:co_positions
co_lines
co_qualname
replace
I have a PR ready.
Linked PRs
Lib/inspect
: Update docstrings forisfunction
,isgenerator
,isframe
,iscode
. #122059The text was updated successfully, but these errors were encountered: