From 28b72baf3c1e57af0c9338fb41c89d62aa47a355 Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Tue, 4 Jul 2017 11:45:04 +0200 Subject: [PATCH] bpo-30843: Rename Lib/test/bisect.py to Lib/test/bisectcmd.py (#2563) Revert test_bisect.py change: remove "from __future__ import absolute_import". --- Lib/test/{bisect.py => bisectcmd.py} | 0 Lib/test/test_bisect.py | 4 ---- 2 files changed, 4 deletions(-) rename Lib/test/{bisect.py => bisectcmd.py} (100%) diff --git a/Lib/test/bisect.py b/Lib/test/bisectcmd.py similarity index 100% rename from Lib/test/bisect.py rename to Lib/test/bisectcmd.py diff --git a/Lib/test/test_bisect.py b/Lib/test/test_bisect.py index 47b5ebdd6855..5c3330b4e410 100644 --- a/Lib/test/test_bisect.py +++ b/Lib/test/test_bisect.py @@ -1,7 +1,3 @@ -# Use absolute import to prevent importing Lib/test/bisect.py, -# instead of Lib/bisect.py -from __future__ import absolute_import - import sys import unittest from test import test_support -- 2.47.3