diff options
author | Skip Montanaro <skip@pobox.com> | 2002-03-28 20:57:51 (GMT) |
---|---|---|
committer | Skip Montanaro <skip@pobox.com> | 2002-03-28 20:57:51 (GMT) |
commit | 995895f023e6e77e01e345235cc41539200c9669 (patch) | |
tree | 2cb3d6a85ff5f1d92f56315c86ba71901e791e57 /Python/exceptions.c | |
parent | bb6bbc45c07c4d3182f58a0f9768c1902d0c7083 (diff) | |
download | cpython-995895f023e6e77e01e345235cc41539200c9669.zip cpython-995895f023e6e77e01e345235cc41539200c9669.tar.gz cpython-995895f023e6e77e01e345235cc41539200c9669.tar.bz2 |
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 adfd699..607d5cf 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\ |