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
Next Next commit
add example
  • Loading branch information
JelleZijlstra committed Jan 17, 2022
commit 8f5f750dc57b20f0905272c727bc1b3a3b033234
5 changes: 4 additions & 1 deletion Doc/library/typing.rst
Original file line number Diff line number Diff line change
Expand Up @@ -1956,7 +1956,10 @@ Functions and decorators
communicates intent more clearly.

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

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

.. versionadded:: 3.11

Expand Down