From bc510d119fc80e47d17ed4407b5df34f844dd36f Mon Sep 17 00:00:00 2001 From: "Peter J. Holzer" Date: Sat, 2 Sep 2017 11:13:25 +0200 Subject: [PATCH] Split Python into Python2 and Python3 Python 2 is quite a bit faster at startup than Python 3, so add that test case. --- Python2/hello | 2 ++ {Python => Python3}/hello | 0 2 files changed, 2 insertions(+) create mode 100755 Python2/hello rename {Python => Python3}/hello (100%) diff --git a/Python2/hello b/Python2/hello new file mode 100755 index 0000000..5530f91 --- /dev/null +++ b/Python2/hello @@ -0,0 +1,2 @@ +#!/usr/bin/python2 +print("Hello, world!") diff --git a/Python/hello b/Python3/hello similarity index 100% rename from Python/hello rename to Python3/hello