1
0
forked from VimPlug/jedi

Temporarily change the behavior of a defined names test. Hard to say how we really want it to behave.

This commit is contained in:
Dave Halter
2014-12-11 00:44:31 +01:00
parent d0ade9b2e9
commit ef0958a43c

View File

@@ -31,7 +31,7 @@ class TestDefinedNames(TestCase):
self.check_defined_names("""
x = Class()
x.y.z = None
""", ['x'])
""", ['x', 'z']) # TODO is this behavior what we want?
def test_multiple_assignment(self):
self.check_defined_names("""