From: Victor Stinner Date: Tue, 4 Jul 2017 09:45:04 +0000 (+0200) Subject: bpo-30843: Rename Lib/test/bisect.py to Lib/test/bisectcmd.py (#2563) X-Git-Tag: v2.7.14rc1~61 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=28b72baf3c1e57af0c9338fb41c89d62aa47a355;p=python bpo-30843: Rename Lib/test/bisect.py to Lib/test/bisectcmd.py (#2563) Revert test_bisect.py change: remove "from __future__ import absolute_import". --- 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 47b5ebdd68..5c3330b4e4 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