From: Victor Stinner Date: Thu, 23 Nov 2017 16:04:34 +0000 (+0100) Subject: bpo-29512: Fix Lib/test/bisect.py shebang (#4522) X-Git-Tag: v2.7.15rc1~120 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=448c6739877a4143a2c3599f041fa6127f354044;p=thirdparty%2FPython%2Fcpython.git bpo-29512: Fix Lib/test/bisect.py shebang (#4522) Replace python3 with python2. --- diff --git a/Lib/test/bisect.py b/Lib/test/bisect.py index 6fc561890262..1bf32ef06dd9 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.