9cc8a2d881
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:Factory/python?expand=0&rev=219
21 lines
600 B
Diff
21 lines
600 B
Diff
From 448c6739877a4143a2c3599f041fa6127f354044 Mon Sep 17 00:00:00 2001
|
|
From: Victor Stinner <victor.stinner@gmail.com>
|
|
Date: Thu, 23 Nov 2017 17:04:34 +0100
|
|
Subject: [PATCH] bpo-29512: Fix Lib/test/bisect.py shebang (#4522)
|
|
|
|
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 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.
|
|
|