From 95bac43840474abd3c98f0fa5135288b59f4a45d Mon Sep 17 00:00:00 2001 From: David Halter Date: Fri, 6 Sep 2013 14:35:56 +0430 Subject: [PATCH] before assignment goto test, #305 --- test/completion/goto.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/test/completion/goto.py b/test/completion/goto.py index 549bd06d..7c779328 100644 --- a/test/completion/goto.py +++ b/test/completion/goto.py @@ -76,6 +76,12 @@ c #! 0 ['def c'] c() +class BeforeAssignment(): + x = 3 + def __init__(self): + #! 13 ['x = 3'] + self.x = '' + # ----------------- # imports # -----------------