Zack M. Davis fb98bf58c4 *args and **kwargs no longer have own args in Python 3.5
Python 3.5's PEP 448 ("Additional Unpacking Generalizations") allows the
iterable- and dictionary- unpacking operators to be used more than once;
the implementation (see https://hg.python.org/cpython/rev/a65f685ba8c0)
gets rid of the optional `starargs` and `kwargs` arguments to `ast.Call`
and `ast.ClassDef`, instead using `ast.Starred` and `ast.keyword`
objects inside of the normal `args` and `keywords` lists,
respectively. This commit allows Hy's `apply` to work correctly with
this revised AST when running under Python 3.5.
2015-05-19 20:08:16 -07:00
..
2015-04-18 12:32:03 -05:00
2014-09-21 12:08:14 -04:00
2014-01-30 21:50:23 +05:30
2015-02-28 18:11:42 +10:00
2014-11-15 08:02:41 -05:00
2015-02-28 18:11:42 +10:00