]> git.proxmox.com Git - mirror_edk2.git/commit
BaseTools: Avoid "is" with a literal Python 3.8 warnings
authorPhilippe Mathieu-Daude <philmd@redhat.com>
Thu, 5 Dec 2019 11:19:41 +0000 (19:19 +0800)
committermergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
Fri, 6 Dec 2019 03:07:37 +0000 (03:07 +0000)
commit490a62beb7e1d084f14a93b895f9c89a49e4a51d
tree23901c473a34ced3cd7fa6df87ee509533738286
parente8b9296c67dffaddd26dce06d8daaca6206fa620
BaseTools: Avoid "is" with a literal Python 3.8 warnings

REF: https://bugzilla.tianocore.org/show_bug.cgi?id=2304

The following statement produces a SyntaxWarning with Python 3.8:

  if str(FdRegion.RegionType) is 'FILE' and self.Platform.VpdToolGuid in \
    str(FdRegion.RegionDataList):
  BaseTools/Source/Python/AutoGen/WorkspaceAutoGen.py:168: SyntaxWarning: \
    "is" with a literal. Did you mean "=="?

Change the 'is' operator by the conventional '==' comparator.

Cc: Bob Feng <bob.c.feng@intel.com>
Cc: Liming Gao <liming.gao@intel.com>
Reviewed-by: Bob Feng <bob.c.feng@intel.com>
Signed-off-by: Philippe Mathieu-Daude <philmd@redhat.com>
BaseTools/Source/Python/AutoGen/WorkspaceAutoGen.py