diff options
author | Collin Winter <collinw@gmail.com> | 2007-08-23 00:01:55 (GMT) |
---|---|---|
committer | Collin Winter <collinw@gmail.com> | 2007-08-23 00:01:55 (GMT) |
commit | e45be28be665a04aef0d0a7444ba27fde2dd2d5f (patch) | |
tree | 12b6261b32a5913ed104704734e7b7a15cd74e69 /Lib/plat-os2emx | |
parent | cfe02a498b107a6436003e2bf7a48aefe4e3d59f (diff) | |
download | cpython-e45be28be665a04aef0d0a7444ba27fde2dd2d5f.zip cpython-e45be28be665a04aef0d0a7444ba27fde2dd2d5f.tar.gz cpython-e45be28be665a04aef0d0a7444ba27fde2dd2d5f.tar.bz2 |
Convert raise statements in Lib/plat-{mac,os2emx}.
Diffstat (limited to 'Lib/plat-os2emx')
-rw-r--r-- | Lib/plat-os2emx/_emx_link.py | 2 | ||||
-rw-r--r-- | Lib/plat-os2emx/grp.py | 4 | ||||
-rw-r--r-- | Lib/plat-os2emx/pwd.py | 4 |
3 files changed, 5 insertions, 5 deletions
diff --git a/Lib/plat-os2emx/_emx_link.py b/Lib/plat-os2emx/_emx_link.py index e829868..01e6b54 100644 --- a/Lib/plat-os2emx/_emx_link.py +++ b/Lib/plat-os2emx/_emx_link.py @@ -47,7 +47,7 @@ def link(source, target): s = os.open(source, os.O_RDONLY | os.O_BINARY) if os.isatty(s): - raise OSError, (errno.EXDEV, 'Cross-device link') + raise OSError(errno.EXDEV, 'Cross-device link') data = os.read(s, 1024) try: diff --git a/Lib/plat-os2emx/grp.py b/Lib/plat-os2emx/grp.py index fceb4c9..2ac3ca6 100644 --- a/Lib/plat-os2emx/grp.py +++ b/Lib/plat-os2emx/grp.py @@ -94,7 +94,7 @@ def __get_field_sep(record): if fs: return fs else: - raise KeyError, '>> group database fields not delimited <<' + raise KeyError('>> group database fields not delimited <<') # class to match the new record field name accessors. # the resulting object is intended to behave like a read-only tuple, @@ -136,7 +136,7 @@ def __read_group_file(): if group_file: group = open(group_file, 'r') else: - raise KeyError, '>> no group database <<' + raise KeyError('>> no group database <<') gidx = {} namx = {} sep = None diff --git a/Lib/plat-os2emx/pwd.py b/Lib/plat-os2emx/pwd.py index 95d766a..4924c90 100644 --- a/Lib/plat-os2emx/pwd.py +++ b/Lib/plat-os2emx/pwd.py @@ -113,7 +113,7 @@ def __get_field_sep(record): if fs: return fs else: - raise KeyError, '>> passwd database fields not delimited <<' + raise KeyError('>> passwd database fields not delimited <<') # class to match the new record field name accessors. # the resulting object is intended to behave like a read-only tuple, @@ -160,7 +160,7 @@ def __read_passwd_file(): if passwd_file: passwd = open(passwd_file, 'r') else: - raise KeyError, '>> no password database <<' + raise KeyError('>> no password database <<') uidx = {} namx = {} sep = None |