From 823c295efa4efea93cadc640ed6122cd9d86cec4 Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Wed, 30 May 2018 17:24:40 +0200 Subject: [PATCH] bpo-29512: Rename Lib/test/bisect.py to bisect_cmd.py (#7229) Rename Lib/test/bisect.py to Lib/test/bisect_cmd.py. The old name was in conflict with Lib/bisect.py, causing test failures, depending how tests were run. For example, "python2.7 Lib/test/test_httpservers.py" imported indirectly Lib/test/bisect.py instead of Lib/bisect.py on "import bisect". --- Lib/test/{bisect.py => bisect_cmd.py} | 0 .../NEWS.d/next/Tests/2018-05-30-00-39-57.bpo-29512.EHrDzs.rst | 3 +++ 2 files changed, 3 insertions(+) rename Lib/test/{bisect.py => bisect_cmd.py} (100%) create mode 100644 Misc/NEWS.d/next/Tests/2018-05-30-00-39-57.bpo-29512.EHrDzs.rst diff --git a/Lib/test/bisect.py b/Lib/test/bisect_cmd.py similarity index 100% rename from Lib/test/bisect.py rename to Lib/test/bisect_cmd.py diff --git a/Misc/NEWS.d/next/Tests/2018-05-30-00-39-57.bpo-29512.EHrDzs.rst b/Misc/NEWS.d/next/Tests/2018-05-30-00-39-57.bpo-29512.EHrDzs.rst new file mode 100644 index 000000000000..aa5dc64e3b0a --- /dev/null +++ b/Misc/NEWS.d/next/Tests/2018-05-30-00-39-57.bpo-29512.EHrDzs.rst @@ -0,0 +1,3 @@ +Rename Lib/test/bisect.py to Lib/test/bisect_cmd.py. The old name was in +conflict with Lib/bisect.py, causing test failures, depending how tests +were run. -- 2.47.3