diff options
author | Yunhua Feng <yunhuax.feng@intel.com> | 2018-08-14 11:23:47 +0800 |
---|---|---|
committer | Yonghong Zhu <yonghong.zhu@intel.com> | 2018-10-13 09:50:42 +0800 |
commit | d3678942b40a7c7755f60dae2b7f92583a03a24e (patch) | |
tree | cb577b082e977a803a129be54212b4116e9e7dad /BaseTools/Source/Python/Common | |
parent | 8371d87412bc1dae454dcc570691fc0d63e710b4 (diff) | |
download | edk2-d3678942b40a7c7755f60dae2b7f92583a03a24e.tar.gz edk2-d3678942b40a7c7755f60dae2b7f92583a03a24e.tar.bz2 edk2-d3678942b40a7c7755f60dae2b7f92583a03a24e.zip |
BaseTools: Rename raw_input() to input()
Cc: Liming Gao <liming.gao@intel.com>
Cc: Yonghong Zhu <yonghong.zhu@intel.com>
Contributed-under: TianoCore Contribution Agreement 1.1
Signed-off-by: Yunhua Feng <yunhuax.feng@intel.com>
Reviewed-by: Liming Gao <liming.gao@intel.com>
Diffstat (limited to 'BaseTools/Source/Python/Common')
-rw-r--r-- | BaseTools/Source/Python/Common/Expression.py | 2 |
1 files changed, 1 insertions, 1 deletions
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:
|