We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I changed to 85bdc60 and it works well, but with current master: f35aba4 the elixir example has a bug like list is not hashable
list is not hashable
The text was updated successfully, but these errors were encountered:
Hi, yea I've seen it too. Though it was py3.7 but We'll look at it
Sorry, something went wrong.
Took a quick look, seems to be some inconsistency between the rust and python implementation. As a workaround you could do:
diff --git a/term/codec.py b/term/codec.py index 05ead98..55fbf81 100644 --- a/term/codec.py +++ b/term/codec.py @@ -8,6 +8,7 @@ LOG = logging.getLogger("term") try: + raise ImportError import term.native_codec_impl as co_impl except ImportError: LOG.warning("Native term ETF codec library import failed, falling back to slower Python impl")
No branches or pull requests
I changed to 85bdc60 and it works well, but with current master: f35aba4 the elixir example has a bug like
list is not hashable
The text was updated successfully, but these errors were encountered: