2
0
mirror of https://github.com/lanjelot/patator synced 2024-11-16 06:15:24 +00:00

Merge pull request #165 from cclauss/patch-1

raw_input() was removed from Python on 1/1/2020
This commit is contained in:
lanjelot 2022-01-07 14:52:08 +10:00 committed by GitHub
commit 8d00e46a20
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2230,7 +2230,7 @@ Please read the README inside for more examples and usage information.
command = msvcrt.getche()
if command == 'x':
command += raw_input()
command += input()
else:
i, _, _ = select([sys.stdin], [], [], .1)