From d3678942b40a7c7755f60dae2b7f92583a03a24e Mon Sep 17 00:00:00 2001 From: Yunhua Feng Date: Tue, 14 Aug 2018 11:23:47 +0800 Subject: [PATCH] BaseTools: Rename raw_input() to input() Cc: Liming Gao Cc: Yonghong Zhu Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Yunhua Feng Reviewed-by: Liming Gao --- BaseTools/Source/Python/Common/Expression.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BaseTools/Source/Python/Common/Expression.py b/BaseTools/Source/Python/Common/Expression.py index 78a8a0bb0f..6219675d2c 100644 --- a/BaseTools/Source/Python/Common/Expression.py +++ b/BaseTools/Source/Python/Common/Expression.py @@ -1026,7 +1026,7 @@ class ValueExpressionEx(ValueExpression): if __name__ == '__main__': pass while True: - input = raw_input('Input expr: ') + input = input('Input expr: ') if input in 'qQ': break try: