Fix a few tests that failed, because they were not correct python (the context was wrong).

This commit is contained in:
Dave Halter
2016-05-30 20:10:17 +02:00
parent 4f6368e7eb
commit c12dbe0b9e
6 changed files with 18 additions and 19 deletions

View File

@@ -62,14 +62,14 @@ class B():
p = property(t)
#? []
B().r()
B().r().
#? int()
B().r
#? str()
B().p
#? []
B().p()
B().p().
class PropClass():
def __init__(self, a):