[PATCH] D67818: [LNT] Python 3 support: adapt to renaming of raw_input to input

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


hubert.reinterpretcast added a comment.

I believe adding this to the files should work:

  try:
      from builtins import input as raw_input
  except ImportError:
      pass


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

https://reviews.llvm.org/D67818





More information about the llvm-commits mailing list