Browse Source

Removed StandardError

Dmitry Vasiliev 15 years ago
parent
commit
8423af1ae9
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      python3.0.vim

+ 1
- 1
python3.0.vim View File

242
 if exists("python_highlight_exceptions") && python_highlight_exceptions != 0
242
 if exists("python_highlight_exceptions") && python_highlight_exceptions != 0
243
   " Builtin exceptions and warnings
243
   " Builtin exceptions and warnings
244
   syn keyword pythonExClass	BaseException
244
   syn keyword pythonExClass	BaseException
245
-  syn keyword pythonExClass	Exception StandardError ArithmeticError
245
+  syn keyword pythonExClass	Exception ArithmeticError
246
   syn keyword pythonExClass	LookupError EnvironmentError
246
   syn keyword pythonExClass	LookupError EnvironmentError
247
 
247
 
248
   syn keyword pythonExClass	AssertionError AttributeError BufferError EOFError
248
   syn keyword pythonExClass	AssertionError AttributeError BufferError EOFError