From 3dd1f7a2992cbc844acc3d7ecca8f9f3578f7379 Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Thu, 23 Nov 2017 16:33:06 +0100 Subject: [PATCH] bpo-29512: Fix Lib/test/bisect.py shebang Replace python3 with python2. --- Lib/test/bisect.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/test/bisect.py b/Lib/test/bisect.py index 6fc5618902622f0..1bf32ef06dd9521 100755 --- a/Lib/test/bisect.py +++ b/Lib/test/bisect.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python3 +#!/usr/bin/env python2 """ Command line tool to bisect failing CPython tests.