hy icon indicating copy to clipboard operation
hy copied to clipboard

A dialect of Lisp that's embedded in Python

Results 76 hy issues
Sort by recently updated
recently updated
newest added

It would be nice if `HyREPL` cycled through entire forms when looking through the history like `IPython` instead of just by line. It would make working in the repl a...

feature
complaint / disgust

[This gist](https://gist.github.com/rduplain/c403ccc4eb9b17d92c27) has my investigation in all things hy + doctest: how to do it, limitations, an idea for `hy.contrib.doctest`, and a starting point for a py.test plugin to collect...

feature

I just saw this https://github.com/hylang/vim-hy/issues/17, but I decided to open the issue here for the sake of visibility. Am I the only one using vim to write Hy? My stack,...

This works at the repl. ```Hy => (setv x "Spam!") => (defmacro foo [] `(print ~x)) => (foo) Spam! ``` But if you put it in a module, ```Hy ;;;...

complaint / disgust

Would we ever want functions resulting from the expansion of an imported macro to share the macro's namespace and/or `require`s? Of course a macro can be made to `import`/`require` its...

What's the correct idiomatic way to publish hylang packages? should it be published on pip using `hylang-[packagename]`? I want to write a package that uses hylang features that python doesn't...

doc me bro

Is there a list anywhere of projects written in Hy? If not, I think there should be. On the other hand, is Hy stable enough yet (in terms of changes)...

doc me bro

Look what IPython can do: ```Python Python 3.6.1 (v3.6.1:69c0db5, Mar 21 2017, 18:41:36) [MSC v.1900 64 bit (AMD64)] on win32 Type "help", "copyright", "credits" or "license" for more information. >>>...

feature

The `pdb` debugger can list the current source position even when starting Python in interactive mode with the `-i` switch. ``` $ py -i foo.py >>> foo() --Return-- > c:\users\me\documents\github\hy\foo.py(3)foo()->None...

complaint / disgust

It could be useful for the `hy` executable to support more of [CPython's command-line options](https://docs.python.org/3/using/cmdline.html). A few that we might want to support are `-b`, `-B`, `-E`, `-O`, and `-S`.

feature