]> granicus.if.org Git - python/commit
bpo-30207: Rename test.test_support to test.support. (#1353)
authorSerhiy Storchaka <storchaka@gmail.com>
Sun, 30 Apr 2017 08:36:58 +0000 (11:36 +0300)
committerGitHub <noreply@github.com>
Sun, 30 Apr 2017 08:36:58 +0000 (11:36 +0300)
commita694e092f6356970ca0d3e86000a3a829fb212b4
tree175fae3fe8cbaa538ab20ed17efb342b54cfce86
parent4734c2d5c0529632e4b51eb75104b50955afd692
bpo-30207: Rename test.test_support to test.support. (#1353)

To simplify backports from Python 3, the test.test_support module
was converted into a package and renamed to test.support.  The
test.script_helper module was moved into the test.support package.
Names test.test_support and test.script_helper are left as aliases to
test.support and test.support.script_helper.
Doc/library/test.rst
Lib/test/script_helper.py
Lib/test/support/__init__.py [new file with mode: 0644]
Lib/test/support/script_helper.py [new file with mode: 0644]
Lib/test/test_compiler.py
Lib/test/test_linecache.py
Lib/test/test_support.py
Misc/NEWS