diff options
author | Nick Coghlan <ncoghlan@gmail.com> | 2013-07-28 11:06:50 (GMT) |
---|---|---|
committer | Nick Coghlan <ncoghlan@gmail.com> | 2013-07-28 11:06:50 (GMT) |
commit | 69e3bda310f55816403e4c7fda42ab96d81c31be (patch) | |
tree | 8de978e382d156c8a5089e107944169b8dfa0b6b /Lib/test/test_linecache.py | |
parent | 725d9dd1a7ae29d2e592aa8f74f899d27bc941d4 (diff) | |
download | cpython-69e3bda310f55816403e4c7fda42ab96d81c31be.zip cpython-69e3bda310f55816403e4c7fda42ab96d81c31be.tar.gz cpython-69e3bda310f55816403e4c7fda42ab96d81c31be.tar.bz2 |
Issue #15494: test.support is now a package rather than a module
Also including this change in 3.3 to help avoid spurious conflicts
between the two most active branches.
(Initial patch by Indra Talip)
Diffstat (limited to 'Lib/test/test_linecache.py')
-rw-r--r-- | Lib/test/test_linecache.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_linecache.py b/Lib/test/test_linecache.py index 7d14534..5fe0554 100644 --- a/Lib/test/test_linecache.py +++ b/Lib/test/test_linecache.py @@ -11,7 +11,7 @@ INVALID_NAME = '!@$)(!@#_1' EMPTY = '' TESTS = 'inspect_fodder inspect_fodder2 mapping_tests' TESTS = TESTS.split() -TEST_PATH = os.path.dirname(support.__file__) +TEST_PATH = os.path.dirname(__file__) MODULES = "linecache abc".split() MODULE_PATH = os.path.dirname(FILENAME) |