Fixed whitespace problems in completion tests

This commit is contained in:
Danilo Bargen
2014-07-26 17:37:30 +02:00
parent c85bdb8ff1
commit 2a1c108bbf
5 changed files with 20 additions and 17 deletions

View File

@@ -278,10 +278,10 @@ def Recursion():
self.a = self.a
self.b = self.b.recurse()
#?
#?
Recursion().a
#?
#?
Recursion().b
# -----------------
@@ -323,15 +323,15 @@ getattr(str(), 'upper')
getattr(str, 'upper')
# some strange getattr calls
#?
#?
getattr(str, 1)
#?
#?
getattr()
#?
#?
getattr(str)
#?
#?
getattr(getattr, 1)
#?
#?
getattr(str, [])
@@ -374,7 +374,7 @@ class PrivateVar():
self.__var
#? []
PrivateVar().__var
#?
#?
PrivateVar().__var
# -----------------
@@ -384,7 +384,7 @@ class Super(object):
a = 3
class TestSuper(Super):
#?
#?
super()
def test(self):
#? Super()
@@ -395,7 +395,7 @@ class TestSuper(Super):
#? Super()
super()
def a():
#?
#?
super()