-
Notifications
You must be signed in to change notification settings - Fork 573
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
Python3 port for protocol.py & test_protocol.py #1786
Conversation
b6df0f8
to
6d88130
Compare
5ec2ffc
to
c83bb1e
Compare
Why are you turning the code into the Ramen? Where are you tests? You should write new tests before editing the code. |
from . import pyelliptic | ||
from .bmconfigparser import BMConfigParser | ||
from .pyelliptic import OpenSSL | ||
from .pyelliptic import arithmetic as a |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Note that pyelliptic
may eventually become a separate package
src/protocol.py
Outdated
except ImportError: | ||
from . import defaults | ||
from . import highlevelcrypto | ||
from . import state |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These imports merge:
from . import defaults, highlevelcrypto, state
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That leads to Code quality error: Pylint E401 multiple imports on one line
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No, it's the same as from addresses import ...
above.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, because it's from the same module addresses
but when importing different modules keeping them separate is best practice as per https://www.python.org/dev/peps/pep-0008/#imports
Also, I tried what you mentioned I got Pylint E401 multiple imports on one line
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
.
is an abbrev to pybitmessage
(i.e. this package) in this case. But in any case, you don't need theses try: import .. except:
at all.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, understood. Saw your comment on #1792. I'm making those changes.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The proper change is to revert this all together. Did you try to rebase?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
... and it's still failing, and my #1788 passes with no pasta
Oh, it's the same as mine: https://buildbot.bitmessage.org/#/builders/23/builds/1357/steps/8/logs/stdio
I separated it in 94082ab.
335a671
to
9757758
Compare
Closing, Fixed via #1792 |
Ported protocol.py & test_protocol.py
-> Resolved import errors
-> Fixed encoding/decoding issues
-> Python 2/3 compatibility