summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_linecache.py
diff options
context:
space:
mode:
authorNick Coghlan <ncoghlan@gmail.com>2013-07-28 10:56:19 (GMT)
committerNick Coghlan <ncoghlan@gmail.com>2013-07-28 10:56:19 (GMT)
commitfb15aa1e0873043548df782ace51fe1340ea559a (patch)
treeacbce27d07285d86e14b039cfe6521d95032859c /Lib/test/test_linecache.py
parente8c45d6d0eda74a8f13dcac9d0c593bbcb21e38b (diff)
downloadcpython-fb15aa1e0873043548df782ace51fe1340ea559a.zip
cpython-fb15aa1e0873043548df782ace51fe1340ea559a.tar.gz
cpython-fb15aa1e0873043548df782ace51fe1340ea559a.tar.bz2
Close #15494: test.support is now a package rather than a module
Initial patch by Indra Talip
Diffstat (limited to 'Lib/test/test_linecache.py')
-rw-r--r--Lib/test/test_linecache.py2
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)