summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorKa-Ping Yee <ping@zesty.ca>2001-03-02 05:48:10 (GMT)
committerKa-Ping Yee <ping@zesty.ca>2001-03-02 05:48:10 (GMT)
commit9054344d1405cd31ea11e729edac2784dc19b6f2 (patch)
tree620cb8cd75e7594833e8efe04c4a67b57493bb46 /Lib
parentca956e2e47f6b2bcaeed824a500cac269db750ba (diff)
downloadcpython-9054344d1405cd31ea11e729edac2784dc19b6f2.zip
cpython-9054344d1405cd31ea11e729edac2784dc19b6f2.tar.gz
cpython-9054344d1405cd31ea11e729edac2784dc19b6f2.tar.bz2
Replace literal '@test' with TESTFN.
Diffstat (limited to 'Lib')
-rw-r--r--Lib/test/test_inspect.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/Lib/test/test_inspect.py b/Lib/test/test_inspect.py
index 00b3d7d..74e6326 100644
--- a/Lib/test/test_inspect.py
+++ b/Lib/test/test_inspect.py
@@ -168,23 +168,23 @@ istest(inspect.istraceback, 'git.ex[2]')
istest(inspect.isframe, 'mod.fr')
test(len(git.tr) == 2, 'trace() length')
-test(git.tr[0][1:] == ('@test', 9, 'spam', [' eggs(b + d, c + f)\n'], 0),
+test(git.tr[0][1:] == (TESTFN, 9, 'spam', [' eggs(b + d, c + f)\n'], 0),
'trace() row 1')
-test(git.tr[1][1:] == ('@test', 18, 'eggs', [' q = y / 0\n'], 0),
+test(git.tr[1][1:] == (TESTFN, 18, 'eggs', [' q = y / 0\n'], 0),
'trace() row 2')
test(len(mod.st) >= 5, 'stack() length')
test(mod.st[0][1:] ==
- ('@test', 16, 'eggs', [' st = inspect.stack()\n'], 0),
+ (TESTFN, 16, 'eggs', [' st = inspect.stack()\n'], 0),
'stack() row 1')
test(mod.st[1][1:] ==
- ('@test', 9, 'spam', [' eggs(b + d, c + f)\n'], 0),
+ (TESTFN, 9, 'spam', [' eggs(b + d, c + f)\n'], 0),
'stack() row 2')
test(mod.st[2][1:] ==
- ('@test', 43, 'argue', [' spam(a, b, c)\n'], 0),
+ (TESTFN, 43, 'argue', [' spam(a, b, c)\n'], 0),
'stack() row 3')
test(mod.st[3][1:] ==
- ('@test', 39, 'abuse', [' self.argue(a, b, c)\n'], 0),
+ (TESTFN, 39, 'abuse', [' self.argue(a, b, c)\n'], 0),
'stack() row 4')
# row 4 is in test_inspect.py