hy/tests
Kodi Arfer ed930edefe Allow keyword args in method calls before the obj (#1167)
Unlike Python, Hy allows the programmer to intermingle positional and keyword arguments. This change removes an exception to that rule for method calls, in which the method callee always had to be the first thing after the method. Thus, `(.split :sep "o" "foo")` now compiles to `"foo".split(sep="o")` instead of `HyKeyword("sep").split("o", "foo")`.
2017-01-03 00:24:55 -07:00
..
compilers Fix invalid escape sequences 2017-01-01 00:20:04 +03:00
importer Revert "Modernized." (#1085) (#1188) 2016-12-27 09:09:58 -06:00
lex Fix invalid escape sequences 2017-01-01 00:20:04 +03:00
macros Overhaul macros to allow macros to ref the Compiler 2015-12-23 15:52:47 -05:00
models Don't sort or deduplicate the items in a HySet 2016-09-26 09:47:04 -07:00
native_tests Allow keyword args in method calls before the obj (#1167) 2017-01-03 00:24:55 -07:00
resources Give require the same features as import (#1142) 2016-11-03 09:35:58 +02:00
test_files Run file using hy -i 2015-02-28 18:11:42 +10:00
__init__.py Remove contrib.meth 2016-12-29 08:35:54 -08:00
test_bin.py Run file using hy -i 2015-02-28 18:11:42 +10:00