]> git.ipfire.org Git - thirdparty/git.git/commit
git-p4: use python3's input() everywhere
authorYang Zhao <yang.zhao@skyboxlabs.com>
Fri, 13 Dec 2019 23:52:47 +0000 (15:52 -0800)
committerJunio C Hamano <gitster@pobox.com>
Wed, 15 Jan 2020 20:53:40 +0000 (12:53 -0800)
commit7575f4fdecf22cf232975625ec53add3f2b962e4
tree164fd8e085a6123164ce81690f4c2c83d698d5f4
parentce425eb4e16e5038ffc322cbafc80d641b0ad5eb
git-p4: use python3's input() everywhere

Python3 deprecates raw_input() from 2.7 and replaced it with input().
Since we do not need 2.7's input() semantics, `raw_input()` is aliased
to `input()` for easy forward compatability.

Signed-off-by: Yang Zhao <yang.zhao@skyboxlabs.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
git-p4.py