]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Run 2to3's fix_has_key over Lib/plat-os2emx/.
authorCollin Winter <collinw@gmail.com>
Sat, 1 Sep 2007 20:35:04 +0000 (20:35 +0000)
committerCollin Winter <collinw@gmail.com>
Sat, 1 Sep 2007 20:35:04 +0000 (20:35 +0000)
Lib/plat-os2emx/grp.py
Lib/plat-os2emx/pwd.py

index 2ac3ca634c24a41496d5e21f4a9f59bf4c1144dc..8ac9b15b46f979f0980744d7026f733116b250ec 100644 (file)
@@ -58,11 +58,11 @@ import os
 
 # try and find the group file
 __group_path = []
-if os.environ.has_key('ETC_GROUP'):
+if 'ETC_GROUP' in os.environ:
     __group_path.append(os.environ['ETC_GROUP'])
-if os.environ.has_key('ETC'):
+if 'ETC' in os.environ:
     __group_path.append('%s/group' % os.environ['ETC'])
-if os.environ.has_key('PYTHONHOME'):
+if 'PYTHONHOME' in os.environ:
     __group_path.append('%s/Etc/group' % os.environ['PYTHONHOME'])
 
 group_file = None
@@ -149,9 +149,9 @@ def __read_group_file():
             fields[2] = int(fields[2])
             fields[3] = [f.strip() for f in fields[3].split(',')]
             record = Group(*fields)
-            if not gidx.has_key(fields[2]):
+            if fields[2] not in gidx:
                 gidx[fields[2]] = record
-            if not namx.has_key(fields[0]):
+            if fields[0] not in namx:
                 namx[fields[0]] = record
         elif len(entry) > 0:
             pass                         # skip empty or malformed records
index 4924c9073345cbe8462da535f20182e88fcbad0e..e1739bdd072665eefdfe6264f374812e08b658d8 100644 (file)
@@ -61,11 +61,11 @@ import os
 
 # try and find the passwd file
 __passwd_path = []
-if os.environ.has_key('ETC_PASSWD'):
+if 'ETC_PASSWD' in os.environ:
     __passwd_path.append(os.environ['ETC_PASSWD'])
-if os.environ.has_key('ETC'):
+if 'ETC' in os.environ:
     __passwd_path.append('%s/passwd' % os.environ['ETC'])
-if os.environ.has_key('PYTHONHOME'):
+if 'PYTHONHOME' in os.environ:
     __passwd_path.append('%s/Etc/passwd' % os.environ['PYTHONHOME'])
 
 passwd_file = None
@@ -164,7 +164,7 @@ def __read_passwd_file():
     uidx = {}
     namx = {}
     sep = None
-    while 1:
+    while True:
         entry = passwd.readline().strip()
         if len(entry) > 6:
             if sep == None:
@@ -175,9 +175,9 @@ def __read_passwd_file():
             for i in (5, 6):
                 fields[i] = __field_sep[sep](fields[i])
             record = Passwd(*fields)
-            if not uidx.has_key(fields[2]):
+            if fields[2] not in uidx:
                 uidx[fields[2]] = record
-            if not namx.has_key(fields[0]):
+            if fields[0] not in namx:
                 namx[fields[0]] = record
         elif len(entry) > 0:
             pass                         # skip empty or malformed records