commit | 448c6739877a4143a2c3599f041fa6127f354044 | [log] [tgz] |
---|---|---|
author | Victor Stinner <victor.stinner@gmail.com> | Thu Nov 23 17:04:34 2017 +0100 |
committer | GitHub <noreply@github.com> | Thu Nov 23 17:04:34 2017 +0100 |
tree | d73403a498d8182b04266797c53a95274f554fdb | |
parent | 733b5f3f2f2425fa939d71bc317f2e0f1968c2a0 [diff] [blame] |
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 6fc5618..1bf32ef 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.