mirror of
https://github.com/python/cpython.git
synced 2025-07-29 06:05:00 +00:00
Change raise statement to PEP 8 style.
This commit is contained in:
parent
e5c5117acf
commit
6a7ec7c3e2
1 changed files with 1 additions and 2 deletions
|
@ -14,8 +14,7 @@ import __builtin__, sys
|
|||
try:
|
||||
from _codecs import *
|
||||
except ImportError, why:
|
||||
raise SystemError,\
|
||||
'Failed to load the builtin codecs: %s' % why
|
||||
raise SystemError('Failed to load the builtin codecs: %s' % why)
|
||||
|
||||
__all__ = ["register", "lookup", "open", "EncodedFile", "BOM", "BOM_BE",
|
||||
"BOM_LE", "BOM32_BE", "BOM32_LE", "BOM64_BE", "BOM64_LE",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue