<div class="gmail_quote"><br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">Suppose I have 2 functions like so:<br>
<br>
def Function2( **extra ):<br>
# do stuff<br>
<br>
def Function1( **extra ):<br>
Function2( extra )<br>
<br>
As you can see, I would like to forward the additional keyword<br>
arguments in variable 'extra' to Function2 from Function1. How can I<br>
do this? I'm using Python 3.0.1</blockquote><div><br></div><div>def Function1(**extra):</div><div> Function2(**extra) </div><div><br></div><div>--S</div></div>