Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | String exceptions are gone and so are classic classes. | Neal Norwitz | 2006-03-24 | 1 | -40/+0 |
| | |||||
* | Fix parsing of exception_hierarchy.txt when a platform-specific exception is | Brett Cannon | 2006-03-01 | 1 | -0/+1 |
| | | | | specified. Hopefully this wll bring warming to Tim's Windows-loving heart. | ||||
* | PEP 352 implementation. Creates a new base class, BaseException, which has an | Brett Cannon | 2006-03-01 | 1 | -0/+182 |
added message attribute compared to the previous version of Exception. It is also a new-style class, making all exceptions now new-style. KeyboardInterrupt and SystemExit inherit from BaseException directly. String exceptions now raise DeprecationWarning. Applies patch 1104669, and closes bugs 1012952 and 518846. |