From: Victor Stinner Date: Wed, 30 May 2018 15:24:40 +0000 (+0200) Subject: bpo-29512: Rename Lib/test/bisect.py to bisect_cmd.py (#7229) X-Git-Tag: v2.7.16rc1~289 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=823c295efa4efea93cadc640ed6122cd9d86cec4;p=thirdparty%2FPython%2Fcpython.git 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". --- 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.