Name | Modified | Size | Downloads / Week |
---|---|---|---|
Parent folder | |||
hy-0.29.0.tar.gz | 2024-05-20 | 105.9 kB | |
0.29.0 source code.tar.gz | 2024-05-20 | 455.4 kB | |
0.29.0 source code.zip | 2024-05-20 | 502.8 kB | |
README.md | 2024-05-20 | 843 Bytes | |
Totals: 4 Items | 1.1 MB | 0 |
Removals
hy.disassemble
has been removed.(defn/a …)
is now(defn :async …)
.(fn/a …)
is now(fn :async …)
.(with/a […] …)
is now(with [:async …] …)
.- As with
for
,:async
must precede each name to be bound asynchronously, because you can mix synchronous and asynchronous types. (yield-from …)
is now(yield :from …)
.
New Features
- You can now set
repl-ps1
andrepl-ps2
in yourHYSTARTUP
to customizesys.ps1
andsys.ps2
for the Hy REPL.
Bug Fixes
- Tracebacks now point to the correct code in more cases.
help
should no longer crash when objects are missing docstrings.hy -i < script.hy
now executesscript.hy
inside the REPL environment, like Python.