bpo-29512: Rename Lib/test/bisect.py to bisect_cmd.py (#7229) · python/cpython@823c295 (original) (raw)

Skip to content

Provide feedback

Saved searches

Use saved searches to filter your results more quickly

Sign up

Appearance settings

Commit 823c295

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".

File tree

2 files changed

lines changed

2 files changed

lines changed

File renamed without changes.

Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
1 +Rename Lib/test/bisect.py to Lib/test/bisect_cmd.py. The old name was in
2 +conflict with Lib/bisect.py, causing test failures, depending how tests
3 +were run.