[PATCH] D67816: [LNT] Python 3 support: use int() instead of long()

Hubert Tong via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Fri Sep 20 11:46:26 PDT 2019


hubert.reinterpretcast added inline comments.


================
Comment at: lnt/tests/compile.py:532
             if result != "fail":
-                bytes = long(result)
+                bytes = int(result)
                 success = True
----------------
Is this okay for 32-bit Python 2?


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

https://reviews.llvm.org/D67816





More information about the llvm-commits mailing list