mirror of https://github.com/acidanthera/audk.git
BaseTools: replace the list iteritems by items
replace the list iteritems by items in Python3. Cc: Liming Gao <liming.gao@intel.com> Cc: Yonghong Zhu <yonghong.zhu@intel.com> Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Yunhua Feng <yunhuax.feng@intel.com> Reviewed-by: Liming Gao <liming.gao@intel.com>
This commit is contained in:
parent
d3678942b4
commit
5135cc4852
|
@ -491,7 +491,7 @@ cleanlib:
|
||||||
# EdkII modules always use "_ModuleEntryPoint" as entry point
|
# EdkII modules always use "_ModuleEntryPoint" as entry point
|
||||||
ImageEntryPoint = "_ModuleEntryPoint"
|
ImageEntryPoint = "_ModuleEntryPoint"
|
||||||
|
|
||||||
for k, v in MyAgo.Module.Defines.iteritems():
|
for k, v in MyAgo.Module.Defines.items():
|
||||||
if k not in MyAgo.Macros:
|
if k not in MyAgo.Macros:
|
||||||
MyAgo.Macros[k] = v
|
MyAgo.Macros[k] = v
|
||||||
|
|
||||||
|
@ -503,7 +503,7 @@ cleanlib:
|
||||||
MyAgo.Macros['IMAGE_ENTRY_POINT'] = ImageEntryPoint
|
MyAgo.Macros['IMAGE_ENTRY_POINT'] = ImageEntryPoint
|
||||||
|
|
||||||
PCI_COMPRESS_Flag = False
|
PCI_COMPRESS_Flag = False
|
||||||
for k, v in MyAgo.Module.Defines.iteritems():
|
for k, v in MyAgo.Module.Defines.items():
|
||||||
if 'PCI_COMPRESS' == k and 'TRUE' == v:
|
if 'PCI_COMPRESS' == k and 'TRUE' == v:
|
||||||
PCI_COMPRESS_Flag = True
|
PCI_COMPRESS_Flag = True
|
||||||
|
|
||||||
|
@ -654,7 +654,7 @@ cleanlib:
|
||||||
"module_relative_directory" : MyAgo.SourceDir,
|
"module_relative_directory" : MyAgo.SourceDir,
|
||||||
"module_dir" : mws.join (self.Macros["WORKSPACE"], MyAgo.SourceDir),
|
"module_dir" : mws.join (self.Macros["WORKSPACE"], MyAgo.SourceDir),
|
||||||
"package_relative_directory": package_rel_dir,
|
"package_relative_directory": package_rel_dir,
|
||||||
"module_extra_defines" : ["%s = %s" % (k, v) for k, v in MyAgo.Module.Defines.iteritems()],
|
"module_extra_defines" : ["%s = %s" % (k, v) for k, v in MyAgo.Module.Defines.items()],
|
||||||
|
|
||||||
"architecture" : MyAgo.Arch,
|
"architecture" : MyAgo.Arch,
|
||||||
"toolchain_tag" : MyAgo.ToolChain,
|
"toolchain_tag" : MyAgo.ToolChain,
|
||||||
|
|
|
@ -1019,11 +1019,11 @@ class sdict(IterableUserDict):
|
||||||
|
|
||||||
## Keys interation support
|
## Keys interation support
|
||||||
def iterkeys(self):
|
def iterkeys(self):
|
||||||
return iter(self.keys())
|
return self.keys()
|
||||||
|
|
||||||
## Values interation support
|
## Values interation support
|
||||||
def itervalues(self):
|
def itervalues(self):
|
||||||
return iter(self.values())
|
return self.values()
|
||||||
|
|
||||||
## Return value related to a key, and remove the (key, value) from the dict
|
## Return value related to a key, and remove the (key, value) from the dict
|
||||||
def pop(self, key, *dv):
|
def pop(self, key, *dv):
|
||||||
|
@ -1032,7 +1032,7 @@ class sdict(IterableUserDict):
|
||||||
value = self[key]
|
value = self[key]
|
||||||
self.__delitem__(key)
|
self.__delitem__(key)
|
||||||
elif len(dv) != 0 :
|
elif len(dv) != 0 :
|
||||||
value = kv[0]
|
value = dv[0]
|
||||||
return value
|
return value
|
||||||
|
|
||||||
## Return (key, value) pair, and remove the (key, value) from the dict
|
## Return (key, value) pair, and remove the (key, value) from the dict
|
||||||
|
|
|
@ -1594,7 +1594,7 @@ class DscBuildData(PlatformBuildClassObject):
|
||||||
else:
|
else:
|
||||||
PcdValueDict[PcdCName, TokenSpaceGuid] = {SkuName:(PcdValue, DatumType, MaxDatumSize)}
|
PcdValueDict[PcdCName, TokenSpaceGuid] = {SkuName:(PcdValue, DatumType, MaxDatumSize)}
|
||||||
|
|
||||||
for ((PcdCName, TokenSpaceGuid), PcdSetting) in PcdValueDict.iteritems():
|
for ((PcdCName, TokenSpaceGuid), PcdSetting) in PcdValueDict.items():
|
||||||
if self.SkuIdMgr.SystemSkuId in PcdSetting:
|
if self.SkuIdMgr.SystemSkuId in PcdSetting:
|
||||||
PcdValue, DatumType, MaxDatumSize = PcdSetting[self.SkuIdMgr.SystemSkuId]
|
PcdValue, DatumType, MaxDatumSize = PcdSetting[self.SkuIdMgr.SystemSkuId]
|
||||||
elif TAB_DEFAULT in PcdSetting:
|
elif TAB_DEFAULT in PcdSetting:
|
||||||
|
|
|
@ -2178,7 +2178,7 @@ class Build():
|
||||||
|
|
||||||
# Look through the tool definitions for GUIDed tools
|
# Look through the tool definitions for GUIDed tools
|
||||||
guidAttribs = []
|
guidAttribs = []
|
||||||
for (attrib, value) in self.ToolDef.ToolsDefTxtDictionary.iteritems():
|
for (attrib, value) in self.ToolDef.ToolsDefTxtDictionary.items():
|
||||||
if attrib.upper().endswith('_GUID'):
|
if attrib.upper().endswith('_GUID'):
|
||||||
split = attrib.split('_')
|
split = attrib.split('_')
|
||||||
thisPrefix = '_'.join(split[0:3]) + '_'
|
thisPrefix = '_'.join(split[0:3]) + '_'
|
||||||
|
|
Loading…
Reference in New Issue