diff options
author | Brett Cannon <bcannon@gmail.com> | 2006-03-01 22:10:49 +0000 |
---|---|---|
committer | Brett Cannon <bcannon@gmail.com> | 2006-03-01 22:10:49 +0000 |
commit | 64e00eeac06555b8d5519aea23acc14fd7f22336 (patch) | |
tree | 849d5351028bcf7b781f9dd85d4e0bc22d4e1e06 /Python/exceptions.c | |
parent | ba178363ea04db3268a407da17fe496c40c37c58 (diff) | |
download | cpython-64e00eeac06555b8d5519aea23acc14fd7f22336.tar.gz |
Document PEP 352 changes. Also added GeneratorExit.
Diffstat (limited to 'Python/exceptions.c')
-rw-r--r-- | Python/exceptions.c | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/Python/exceptions.c b/Python/exceptions.c index 59f2091766..c8c7b69d83 100644 --- a/Python/exceptions.c +++ b/Python/exceptions.c @@ -7,11 +7,6 @@ * By moving the exceptions into C and statically linking, we can guarantee * that the standard exceptions will always be available. * - * history: - * 98-08-19 fl created (for pyexe) - * 00-02-08 fl updated for 1.5.2 - * 26-May-2000 baw vetted for Python 1.6 - * XXX * * written by Fredrik Lundh * modifications, additions, cleanups, and proofreading by Barry Warsaw @@ -36,11 +31,11 @@ PyDoc_STRVAR(module__doc__, \n\ Exceptions found here are defined both in the exceptions module and the \n\ built-in namespace. It is recommended that user-defined exceptions inherit \n\ -from Exception.\n\ +from Exception. See the documentation for the exception inheritance hierarchy.\n\ " /* keep string pieces "small" */ -/* XXX exception hierarchy from Lib/test/exception_hierarchy.txt */ +/* XXX(bcannon): exception hierarchy in Lib/test/exception_hierarchy.txt */ ); |