summaryrefslogtreecommitdiff
path: root/pylint/test/functional/redefined_variable_type.py
diff options
context:
space:
mode:
authorLaura M?dioni <laura.medioni@logilab.fr>2015-11-24 10:56:06 +0100
committerLaura M?dioni <laura.medioni@logilab.fr>2015-11-24 10:56:06 +0100
commite80fb34cd7a99d11c22408142962b86778325857 (patch)
treef818d480ff9d4ed964d6a8b71d344c9ddbca0e41 /pylint/test/functional/redefined_variable_type.py
parent48de7002126f9c0a73c299ebd8d494612d42a285 (diff)
downloadpylint-e80fb34cd7a99d11c22408142962b86778325857.tar.gz
Remove test on str.split() since there is no support for inference on split for now
related to issue #674
Diffstat (limited to 'pylint/test/functional/redefined_variable_type.py')
-rw-r--r--pylint/test/functional/redefined_variable_type.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/pylint/test/functional/redefined_variable_type.py b/pylint/test/functional/redefined_variable_type.py
index 9851702..2fdf4ad 100644
--- a/pylint/test/functional/redefined_variable_type.py
+++ b/pylint/test/functional/redefined_variable_type.py
@@ -4,11 +4,6 @@
_OK = True
-def my_func():
- var = 'foo'
- var = 'bar'
- var = var.split() # [redefined-variable-type]
-
class MyClass(object):
def __init__(self):
self.var = True