Skip to content
New issue

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

Bug: Pyrlang elixir example is not working with current master #12

Open
cjen07 opened this issue May 12, 2019 · 2 comments
Open

Bug: Pyrlang elixir example is not working with current master #12

cjen07 opened this issue May 12, 2019 · 2 comments

Comments

@cjen07
Copy link

cjen07 commented May 12, 2019

I changed to 85bdc60 and it works well, but with current master: f35aba4 the elixir example has a bug like list is not hashable

@s2hc-johan
Copy link
Collaborator

Hi, yea I've seen it too. Though it was py3.7 but We'll look at it

@s2hc-johan
Copy link
Collaborator

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")

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants