[CRIU] [PATCH] zdtm: fix a lint warning about undefined 'raw_input'

Radostin Stoyanov rstoyanov1 at gmail.com
Wed Jun 13 08:45:13 MSK 2018


On 12/06/18 21:51, Andrei Vagin wrote:
> test/zdtm.py:1238:3: F821 undefined name 'raw_input'
>
> Signed-off-by: Andrei Vagin <avagin at virtuozzo.com>
> ---
>  test/zdtm.py | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/test/zdtm.py b/test/zdtm.py
> index 1e193b2f9..64046576c 100755
> --- a/test/zdtm.py
> +++ b/test/zdtm.py
> @@ -1,7 +1,7 @@
>  #!/usr/bin/env python
>  # vim: noet ts=8 sw=8 sts=8
>  from __future__ import absolute_import, division, print_function, unicode_literals
> -from builtins import (str, open, range, zip, int)
> +from builtins import (str, open, range, zip, int, input)
>  
>  import argparse
>  import glob
> @@ -1235,7 +1235,7 @@ def init_sbs():
>  
>  def sbs(what):
>  	if do_sbs:
> -		raw_input("Pause at %s. Press any key to continue." % what)
> +		input("Pause at %s. Press any key to continue." % what)
In Python the input() function requires to press enter, not just any key.
Should we change the message?

Radostin




More information about the CRIU mailing list