Kodi Arfer

Results 265 comments of Kodi Arfer

This works now, but it should probably be more prominently advertised in the documentation: ``` Python 3.10.6 (main, Nov 2 2022, 18:53:38) [GCC 11.3.0] on linux Type "help", "copyright", "credits"...

An updated example looks like this: ``` (import dask.distributed [LocalCluster]) (defn main [] (LocalCluster)) (when (= __name__ "__main__") (main)) ``` If I run this with Hy master, I get `NameError:...

Now it looks like we always use the return value of `hy.as_model` (née `wrap_value`), and the sequential types like `List` are immutable anyway.

Here's a minimal example that follows `zipapp`'s instructions on how to include dependencies. But it still doesn't work, so there's still a bug, presumably. ``` $ mkdir myapp $ echo...

#2354 partly provides this: `hy myapp.pyz` with the above example works, but `python3 myapp.pyz` still doesn't, now with a much longer and more cryptic stack trace.

Yes, it is. `foo.bar` is mentioned in the tutorial and used elsewhere, but I haven't yet put a real explanation of it in `syntax.rst` because I expect it to change.

These days, `if` and `cond` use Python `if` expressions rather than statements when possible, which definitely cuts down on assignments, but the basic problem is still visible when you force...

I was thinking of checking for myself whether this works now, but Anaconda's terms of use appear to be a somewhat sketchy mutation of a BSD license (which I guess...

Five years later, I still don't think this is happening. Hy is built around the idea that a symbol's name is ultimately just what it looks like. There's probably an...

Adapting [the example from the documentation of `zipimport`](https://docs.python.org/3.11/library/zipimport.html#examples): ``` $ echo '(print "zawinski")' >jwzthreading.hy $ zip example.zip jwzthreading.hy adding: jwzthreading.hy (stored 0%) $ rm jwzthreading.hy $ unzip -l example.zip Archive:...