10000 bpo-29418: Implement inspect.ismethodwrapper and fix inspect.isroutine for cases where methodwrapper is given by hakancelikdev · Pull Request #19261 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

bpo-29418: Implement inspect.ismethodwrapper and fix inspect.isroutine for cases where methodwrapper is given #19261

New issue

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

Merged
merged 18 commits into from
Feb 16, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update Doc/whatsnew/3.10.rst
Co-authored-by: Batuhan Taskaya <isidentical@gmail.com>
  • Loading branch information
hakancelikdev and isidentical authored Feb 15, 2022
commit d7e2f16efed99f1ca39b506d5b78253cd771e6fc
2 changes: 1 addition & 1 deletion Doc/whatsnew/3.10.rst
Original file line number Diff line number Diff line change
Expand Up @@ -1223,7 +1223,7 @@ now call :func:`inspect.get_annotations` to retrieve annotations. This means
also now un-stringize stringized annotations.
(Contributed by Larry Hastings in :issue:`43817`.)

Add :func:`inspect.ismethodwrapper` for checking if the type of object is a
Add :func:`inspect.ismethodwrapper` for checking if the type of an object is a
:class:`~types.MethodWrapperType`. (Contributed by Hakan Çelik in :issue:`29418`.)

linecache
Expand Down
0