github.phpd.cn/thought-machine/please@v12.2.0+incompatible/src/parse/asp/test_data/interpreter/arguments.build (about)

     1  def test(a, b, c=True):
     2      return '%s:%s:%s' % (a, b, c)
     3  
     4  
     5  x = test('a', 'b')
     6  
     7  y = test(b='b', a='a', c='c')
     8  
     9  z = test('a', 'b', c='c')