remove strange Definition.description length limitation

This commit is contained in:
Dave Halter
2014-03-13 23:09:40 +01:00
parent 2bb40fcee8
commit c5833003dc
3 changed files with 4 additions and 6 deletions

View File

@@ -180,7 +180,7 @@ for i in range(1):
i
for key, value in [(1,2)]:
#! ['for key,value in [(1...']
#! ['for key,value in [(1, 2)]: key']
key
for i in []:

View File

@@ -157,7 +157,7 @@ class TestCallSignatures(TestCase):
signatures = Script(s).call_signatures()
assert len(signatures) == 1
x = [p.get_code() for p in signatures[0].params]
assert x == ['*args\n']
assert x == ['*args']
class TestParams(TestCase):