summaryrefslogtreecommitdiff
path: root/tests/input
diff options
context:
space:
mode:
authorPierre Sassoulas <pierre.sassoulas@gmail.com>2021-03-09 20:25:11 +0100
committerPierre Sassoulas <pierre.sassoulas@gmail.com>2021-03-14 19:48:30 +0100
commit5c8ef477b16df3de6b49ac50fa17d21d8cdd815e (patch)
treec8612cd400c4d4b96602a634a34f600a8a0a9685 /tests/input
parent8cbb76ad74c4e8992a66e6a7fc322c3aaea52cb7 (diff)
downloadpylint-git-5c8ef477b16df3de6b49ac50fa17d21d8cdd815e.tar.gz
Migrate func_loopvar_in_dict_comp_py27.py to new functional tests
Diffstat (limited to 'tests/input')
-rw-r--r--tests/input/func_loopvar_in_dict_comp_py27.py8
1 files changed, 0 insertions, 8 deletions
diff --git a/tests/input/func_loopvar_in_dict_comp_py27.py b/tests/input/func_loopvar_in_dict_comp_py27.py
deleted file mode 100644
index 312eee727..000000000
--- a/tests/input/func_loopvar_in_dict_comp_py27.py
+++ /dev/null
@@ -1,8 +0,0 @@
-"""Tests for loopvar-in-closure."""
-
-__revision__ = 0
-
-
-def bad_case():
- """Loop variable from dict comprehension."""
- return {x: lambda: x for x in range(10)}