This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: 'exceptions' module mentioned in documentation
Type: behavior Stage:
Components: Documentation Versions: 3rd party
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: georg.brandl Nosy List: brett.cannon, georg.brandl, july
Priority: normal Keywords:

Created on 2009-12-28 20:06 by july, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (3)
msg96965 - (view) Author: July Tikhonov (july) * Date: 2009-12-28 20:06
As I can see, 'exceptions' module does not exist in py3k.

But it is mentioned in documentation
http://docs.python.org/dev/py3k/library/exceptions.html
"The exceptions are defined in the module exceptions. This module never 
needs to be imported explicitly: the exceptions are provided in the 
built-in namespace as well as the exceptions module."
msg97008 - (view) Author: Brett Cannon (brett.cannon) * (Python committer) Date: 2009-12-29 21:25
You're right, July, that the exceptions module does not exist in Python 3.
msg97010 - (view) Author: Georg Brandl (georg.brandl) * (Python committer) Date: 2009-12-29 22:18
Thanks, should be fixed in r77121.
History
Date User Action Args
2022-04-11 14:56:55adminsetgithub: 51839
2009-12-29 22:18:18georg.brandlsetstatus: open -> closed
resolution: fixed
messages: + msg97010
2009-12-29 21:25:31brett.cannonsetnosy: + brett.cannon
messages: + msg97008
2009-12-28 20:06:47julycreate