summaryrefslogtreecommitdiffstats
path: root/pym
diff options
context:
space:
mode:
authorAlec Warner <antarus@gentoo.org>2007-05-08 05:13:35 +0000
committerAlec Warner <antarus@gentoo.org>2007-05-08 05:13:35 +0000
commitca4fb8e0a4a03d723f99f3ec2f73e3c43b3ccf64 (patch)
tree5db57368783e4bc92bdc4495a998c0b5d1393186 /pym
parente17598cceac1fc0e55660b75f3d5c281f7191970 (diff)
downloadportage-ca4fb8e0a4a03d723f99f3ec2f73e3c43b3ccf64.tar.gz
portage-ca4fb8e0a4a03d723f99f3ec2f73e3c43b3ccf64.tar.bz2
portage-ca4fb8e0a4a03d723f99f3ec2f73e3c43b3ccf64.zip
imports are one module per line, remove type module in favor of the new hotness, isinstance.
svn path=/main/trunk/; revision=6500
Diffstat (limited to 'pym')
-rw-r--r--pym/portage/__init__.py23
1 files changed, 14 insertions, 9 deletions
diff --git a/pym/portage/__init__.py b/pym/portage/__init__.py
index f81fb7766..aff2c3b8d 100644
--- a/pym/portage/__init__.py
+++ b/pym/portage/__init__.py
@@ -12,7 +12,12 @@ VERSION="$Rev$"[6:-2] + "-svn"
try:
import sys
- import copy, errno, os, re, shutil, time, types
+ import copy
+ import errno
+ import os
+ import re
+ import shutil
+ import time
try:
import cPickle
except ImportError:
@@ -290,7 +295,7 @@ def flatten(mytokens):
a [1,2,3] list and returns it."""
newlist=[]
for x in mytokens:
- if type(x)==types.ListType:
+ if isinstance(x, list):
newlist.extend(flatten(x))
else:
newlist.append(x)
@@ -2147,7 +2152,7 @@ class config:
def __setitem__(self,mykey,myvalue):
"set a value; will be thrown away at reset() time"
- if type(myvalue) != types.StringType:
+ if not isinstance(myvalue, str):
raise ValueError("Invalid type being used as a value: '%s': '%s'" % (str(mykey),str(myvalue)))
self.modifying()
self.modifiedkeys += [mykey]
@@ -2239,7 +2244,7 @@ def spawn(mystring, mysettings, debug=0, free=0, droppriv=0, sesandbox=0, **keyw
1. The return code of the spawned process.
"""
- if type(mysettings) == types.DictType:
+ if isinstance(mysettings, dict):
env=mysettings
keywords["opt_name"]="[ %s ]" % "portage"
else:
@@ -4029,7 +4034,7 @@ def dep_virtual(mysplit, mysettings):
newsplit=[]
myvirtuals = mysettings.getvirtuals()
for x in mysplit:
- if type(x)==types.ListType:
+ if isinstance(x, list):
newsplit.append(dep_virtual(x, mysettings))
else:
mykey=dep_getkey(x)
@@ -4157,7 +4162,7 @@ def dep_eval(deplist):
if deplist[0]=="||":
#or list; we just need one "1"
for x in deplist[1:]:
- if type(x)==types.ListType:
+ if isinstance(x, list):
if dep_eval(x)==1:
return 1
elif x==1:
@@ -4170,7 +4175,7 @@ def dep_eval(deplist):
return 0
else:
for x in deplist:
- if type(x)==types.ListType:
+ if isinstance(x, list):
if dep_eval(x)==0:
return 0
elif x==0 or x==2:
@@ -4436,7 +4441,7 @@ def dep_wordreduce(mydeplist,mysettings,mydbapi,mode,use_cache=1):
"Reduces the deplist to ones and zeros"
deplist=mydeplist[:]
for mypos in xrange(len(deplist)):
- if type(deplist[mypos])==types.ListType:
+ if isinstance(deplist[mypos], list):
#recurse
deplist[mypos]=dep_wordreduce(deplist[mypos],mysettings,mydbapi,mode,use_cache=use_cache)
elif deplist[mypos]=="||":
@@ -4562,7 +4567,7 @@ def cpv_expand(mycpv, mydb=None, use_cache=1, settings=None):
elif matches:
mykey=matches[0]
- if not mykey and type(mydb)!=types.ListType:
+ if not mykey and not isinstance(mydb, list):
if virts_p.has_key(myp):
mykey=virts_p[myp][0]
#again, we only perform virtual expansion if we have a dbapi (not a list)