diff options
author | Georg Brandl <georg@python.org> | 2006-07-05 08:21:00 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2006-07-05 08:21:00 (GMT) |
commit | aa1919d2b0f256529a992d4083f7a8012ca1c417 (patch) | |
tree | 90a287b770777b9911af3a82ad699dbd482bd2c0 /Misc | |
parent | b4a6a566ff8a42840beca7b6a1e790d1b3cf1765 (diff) | |
download | cpython-aa1919d2b0f256529a992d4083f7a8012ca1c417.zip cpython-aa1919d2b0f256529a992d4083f7a8012ca1c417.tar.gz cpython-aa1919d2b0f256529a992d4083f7a8012ca1c417.tar.bz2 |
Remove remaining references to OverflowWarning.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/Vim/python.vim | 2 | ||||
-rw-r--r-- | Misc/cheatsheet | 1 |
2 files changed, 1 insertions, 2 deletions
diff --git a/Misc/Vim/python.vim b/Misc/Vim/python.vim index 1b81c62..61d75e2 100644 --- a/Misc/Vim/python.vim +++ b/Misc/Vim/python.vim @@ -85,7 +85,7 @@ if exists("python_highlight_exceptions") syn keyword pythonException LookupError OSError DeprecationWarning syn keyword pythonException UnicodeError UnicodeEncodeError syn keyword pythonException FloatingPointError ReferenceError NameError - syn keyword pythonException OverflowWarning IOError SyntaxError + syn keyword pythonException IOError SyntaxError syn keyword pythonException FutureWarning ImportWarning SystemExit syn keyword pythonException Exception EOFError StandardError ValueError syn keyword pythonException TabError KeyError ZeroDivisionError SystemError diff --git a/Misc/cheatsheet b/Misc/cheatsheet index ce02a53..4b145ea 100644 --- a/Misc/cheatsheet +++ b/Misc/cheatsheet @@ -1135,7 +1135,6 @@ Exception> DeprecationWarning PendingDeprecationWarning SyntaxWarning - OverflowWarning RuntimeWarning FutureWarning |