summaryrefslogtreecommitdiff
path: root/pylint/test/input/func_exec_used_py30.py
diff options
context:
space:
mode:
Diffstat (limited to 'pylint/test/input/func_exec_used_py30.py')
-rw-r--r--pylint/test/input/func_exec_used_py30.py13
1 files changed, 0 insertions, 13 deletions
diff --git a/pylint/test/input/func_exec_used_py30.py b/pylint/test/input/func_exec_used_py30.py
deleted file mode 100644
index dbcc024..0000000
--- a/pylint/test/input/func_exec_used_py30.py
+++ /dev/null
@@ -1,13 +0,0 @@
-"""test global statement"""
-
-__revision__ = 0
-
-exec('a = __revision__')
-exec('a = 1', globals={})
-
-exec('a = 1', globals=globals())
-
-def func():
- """exec in local scope"""
- exec('b = 1')
-