summaryrefslogtreecommitdiffstats
path: root/Lib/test/bisect_cmd.py
Commit message (Collapse)AuthorAgeFilesLines
* Change bisect to bisect_cmd in docstring (GH-13040)Miss Islington (bot)2019-05-021-3/+3
| | | | | (cherry picked from commit 11e4a941e9c6225776a986b05230a1963e83f4fb) Co-authored-by: Xtreak <tir.karthi@gmail.com>
* bpo-29512: Rename Lib/test/bisect.py to bisect_cmd.py (#7229)Victor Stinner2018-05-301-0/+181
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".