diff options
author | Pierre Sassoulas <pierre.sassoulas@gmail.com> | 2021-03-09 20:30:12 +0100 |
---|---|---|
committer | Pierre Sassoulas <pierre.sassoulas@gmail.com> | 2021-03-14 19:48:30 +0100 |
commit | 55a1991d8a694bd70e38bd49bc8d69075660ee64 (patch) | |
tree | 27aea2addecfe79ce5f1afe8f43d5d5921012c61 /tests/input | |
parent | 3c80899ed4991831876715f58344191b1c339e33 (diff) | |
download | pylint-git-55a1991d8a694bd70e38bd49bc8d69075660ee64.tar.gz |
Migrate func_no_dummy_redefined.py to new functional tests
Diffstat (limited to 'tests/input')
-rw-r--r-- | tests/input/func_no_dummy_redefined.py | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/tests/input/func_no_dummy_redefined.py b/tests/input/func_no_dummy_redefined.py deleted file mode 100644 index a5c0aea4a..000000000 --- a/tests/input/func_no_dummy_redefined.py +++ /dev/null @@ -1,14 +0,0 @@ -"""Make sure warnings about redefinitions do not trigger for dummy variables.""" -from __future__ import print_function - - -_, INTERESTING = 'a=b'.split('=') - -value = 10 - - -def clobbering(): - """Clobbers a dummy name from the outer scope.""" - value = 9 - for _ in range(7): - print(value) |