diff options
| author | Jussi Pakkanen <jpakkane@gmail.com> | 2013-02-10 01:12:00 +0200 |
|---|---|---|
| committer | Jussi Pakkanen <jpakkane@gmail.com> | 2013-02-10 01:12:00 +0200 |
| commit | 90779664c3bfbf20d39b5ceb3792f63cebda44f7 (patch) | |
| tree | 064d1a72605eb36b38bdfee6b5b5e5b42b59152a /bparser.py | |
| parent | 45ecded01d814d0d0bf9b84c0dafa65575ab2bdd (diff) | |
| download | meson-90779664c3bfbf20d39b5ceb3792f63cebda44f7.tar.gz | |
Can build executables with keyword arguments.
Diffstat (limited to 'bparser.py')
| -rwxr-xr-x | bparser.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bparser.py b/bparser.py index 9d855978b..fb4af1f22 100755 --- a/bparser.py +++ b/bparser.py @@ -186,7 +186,7 @@ def p_args_single_pos(t): def p_args_single_kw(t): 'args : expression COLON statement' a = nodes.Arguments(t.lineno(1)) - a.set_kwarg(t[1], t[2]) + a.set_kwarg(t[1], t[3]) t[0] = a def p_posargs_none(t): |
