summaryrefslogtreecommitdiffstats
path: root/Python
diff options
context:
space:
mode:
authorBrett Cannon <bcannon@gmail.com>2006-03-01 22:10:49 (GMT)
committerBrett Cannon <bcannon@gmail.com>2006-03-01 22:10:49 (GMT)
commit54ac29497ea7f47852ec6f3ffb2570bbc29ce847 (patch)
tree561db765a15309bd8a1ec72983e6004f1c8b956c /Python
parent65b3dab50e7192b4ad6cae046c3ed15b53752ac4 (diff)
downloadcpython-54ac29497ea7f47852ec6f3ffb2570bbc29ce847.zip
cpython-54ac29497ea7f47852ec6f3ffb2570bbc29ce847.tar.gz
cpython-54ac29497ea7f47852ec6f3ffb2570bbc29ce847.tar.bz2
Document PEP 352 changes. Also added GeneratorExit.
Diffstat (limited to 'Python')
-rw-r--r--Python/exceptions.c9
1 files changed, 2 insertions, 7 deletions
diff --git a/Python/exceptions.c b/Python/exceptions.c
index 59f2091..c8c7b69 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 */
);