summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_inspect.py
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2016-02-08 16:57:02 (GMT)
committerVictor Stinner <victor.stinner@gmail.com>2016-02-08 16:57:02 (GMT)
commit51d8c526d5634fa1f0e4976fd357c5423a792082 (patch)
tree5aaa710f4f336f949691c88f70a221169ccc42f8 /Lib/test/test_inspect.py
parentf089196beb0ad8fb262be42eddd92af3f0fe81c1 (diff)
downloadcpython-51d8c526d5634fa1f0e4976fd357c5423a792082.zip
cpython-51d8c526d5634fa1f0e4976fd357c5423a792082.tar.gz
cpython-51d8c526d5634fa1f0e4976fd357c5423a792082.tar.bz2
Replace noop constant statement with expression
* Constant statements will be ignored and the compiler will emit a SyntaxWarning. * Replace constant statement (ex: "1") with an expression statement (ex: "x=1"). * test_traceback: use context manager on the file. Issue #26204.
Diffstat (limited to 'Lib/test/test_inspect.py')
-rw-r--r--Lib/test/test_inspect.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_inspect.py b/Lib/test/test_inspect.py
index 422a3d6..98d596e 100644
--- a/Lib/test/test_inspect.py
+++ b/Lib/test/test_inspect.py
@@ -401,7 +401,7 @@ class TestRetrievingSourceCode(GetSourceBase):
self.assertEqual(normcase(inspect.getsourcefile(mod.spam)), modfile)
self.assertEqual(normcase(inspect.getsourcefile(git.abuse)), modfile)
fn = "_non_existing_filename_used_for_sourcefile_test.py"
- co = compile("None", fn, "exec")
+ co = compile("x=1", fn, "exec")
self.assertEqual(inspect.getsourcefile(co), None)
linecache.cache[co.co_filename] = (1, None, "None", co.co_filename)
try: