Skip to content

Commit

Permalink
pytholite: fix kwargs handling
Browse files Browse the repository at this point in the history
  • Loading branch information
Sebastien Bourdeauducq committed Jul 3, 2013
1 parent 4096a78 commit b68c00d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions migen/pytholite/compiler.py
Expand Up @@ -45,8 +45,8 @@ def _process_function_args(symdict, function_def, args, kwargs):
pass
vararg = tuple(current_argvalue)

kwarg = OrderedDict()
for k, v in kwarg.items():
kwarg = dict()
for k, v in kwargs.items():
if k in ad_positional:
ad_positional[k] = v
elif k in ad_kwonly:
Expand Down

0 comments on commit b68c00d

Please sign in to comment.