zsun / kernel-tests

Forked from kernel-tests 7 years ago
Clone

b728667 Use input() instead of raw_input(). [PEP 3111]

1 file Authored by Craig Rodrigues 8 years ago, Committed by jforbes 8 years ago,
    Use input() instead of raw_input(). [PEP 3111]
    
    raw_input() was renamed to input() in Python 3, and raw_input() was removed.
    For Python 2, apply a workaround so that we still execute the raw_input()
    function, since it behaves differently from input().
    
    See:
        https://www.python.org/dev/peps/pep-3111/