comparison tests/test_parse_files/test_call.py @ 53:1a815946c2e5

Implement keywords in expr::Call, and add some tests.
author Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
date Sun, 12 Jun 2016 02:37:28 +0100
parents f23c5dafea78
children
comparison
equal deleted inserted replaced
52:d9838e8b3ec5 53:1a815946c2e5
1 func(1, b) 1 func()
2 func(1)
3 func(1, a)
4 func(b=2, c=3)
5 func(a, b, c=3, d=4, **kwargs)