Skip to content

bpo-46414: Add typing.reveal_type #30646

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 6 commits into from
Feb 2, 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
Update Doc/library/typing.rst
Co-authored-by: Guido van Rossum <[email protected]>
  • Loading branch information
JelleZijlstra and gvanrossum authored Jan 23, 2022
commit b2bbe064bcb8d59c52c5ab4d32f33eac2488d00e
2 changes: 1 addition & 1 deletion Doc/library/typing.rst
Original file line number Diff line number Diff line change
Expand Up @@ -1955,7 +1955,7 @@ Functions and decorators
``typing`` allows your code to run without runtime errors and
communicates intent more clearly.

At runtime, this function prints the runtime type of its argument
At runtime, this function prints the runtime type of its argument to stderr
and returns it unchanged::

x = reveal_type(1) # prints "Runtime type is int"
Expand Down