diff options
author | Skip Montanaro <skip@pobox.com> | 2002-03-28 20:57:51 +0000 |
---|---|---|
committer | Skip Montanaro <skip@pobox.com> | 2002-03-28 20:57:51 +0000 |
commit | 4b69bb61693dd4b049b678c0a982b099fea0a97e (patch) | |
tree | ebdf7f17d329043dc0d04e5280385a0d9c3af232 /Python/exceptions.c | |
parent | bab68aacd826a9e313d039a4f00189ae604d844b (diff) | |
download | cpython-4b69bb61693dd4b049b678c0a982b099fea0a97e.tar.gz |
add comment reminding people about class hierarchy in Doc/lib/libexcs.tex
Diffstat (limited to 'Python/exceptions.c')
-rw-r--r-- | Python/exceptions.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Python/exceptions.c b/Python/exceptions.c index adfd699320..607d5cf57c 100644 --- a/Python/exceptions.c +++ b/Python/exceptions.c @@ -25,6 +25,11 @@ * 2Kb. So the module docstring has been broken roughly in half, using * compile-time literal concatenation. */ + +/* NOTE: If the exception class hierarchy changes, don't forget to update + * Doc/lib/libexcs.tex! + */ + static char module__doc__[] = "Python's standard exception class hierarchy.\n\ |