github.com/cheshirekow/buildtools@v0.0.0-20200224190056-5d637702fe81/build/testdata/057.in (about)

     1  def foo1(x, y, **kwargs):
     2      bar1(
     3          x,
     4          y,
     5          **kwargs
     6      )
     7  
     8  def foo2(x, y, *args):
     9      bar2(
    10          x,
    11          y,
    12          *args
    13      )
    14  
    15  def foo3(x, y, **kwargs):
    16      bar2(
    17          x,
    18          y,
    19          **kwargs,
    20      )
    21  
    22  def foo4(x, y, *args):
    23      bar4(
    24          x,
    25          y,
    26          *args,
    27      )