[PATCH] D67535: [LNT] Python 3 support: Minor mechanical changes

Chris Matthews via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Fri Sep 13 10:43:43 PDT 2019


cmatthews added inline comments.


================
Comment at: lnt/external/stats/pstat.py:293
                  item.append(cfcn(avgcol))
-                 if fcn1 <> None:
+                 if fcn1 != None:
                      try:
----------------
hubert.reinterpretcast wrote:
> thopre wrote:
> > I'm quite new to Python but I believe for comparison against None it is more usual to do "is None" or "is not None".
> Okay. Will do.
space between each list elements.


CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D67535/new/

https://reviews.llvm.org/D67535





More information about the llvm-commits mailing list