hy/tests
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
..
compilers Add argument destructuring 2015-04-18 12:32:03 -05:00
importer hy/compiler.py: import only handles HySymbol and HyList, bail on others 2014-02-11 17:29:50 +01:00
lex Add support for multi-line strings in interpreter 2014-12-28 23:38:38 -06:00
macros Add tests for _wrap_value 2014-09-21 12:08:14 -04:00
models Merge master onto pr/471 2014-01-30 21:50:23 +05:30
native_tests *args and **kwargs no longer have own args in Python 3.5 2015-05-19 20:08:16 -07:00
resources Fixes a long-standing bug in import under Python 3.3 and later. 2014-12-07 11:02:48 -07:00
test_files Run file using hy -i 2015-02-28 18:11:42 +10:00
__init__.py Merge branch 'master' into pr/579 2014-11-15 08:02:41 -05:00
test_bin.py Run file using hy -i 2015-02-28 18:11:42 +10:00