Skip to content

Commit

Permalink
[doc] Fix error in tutorial example: type(exc) is the type rather tha…
Browse files Browse the repository at this point in the history
…n the instance (python#102751)
  • Loading branch information
jenshb authored and warsaw committed Apr 11, 2023
1 parent b6ba386 commit 699615e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Doc/tutorial/errors.rst
Expand Up @@ -160,7 +160,7 @@ accessing ``.args``. ::
>>> try:
... raise Exception('spam', 'eggs')
... except Exception as inst:
... print(type(inst)) # the exception instance
... print(type(inst)) # the exception type
... print(inst.args) # arguments stored in .args
... print(inst) # __str__ allows args to be printed directly,
... # but may be overridden in exception subclasses
Expand Down

0 comments on commit 699615e

Please sign in to comment.