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

Python3 port for protocol.py & test_protocol.py #1786

Closed
wants to merge 12 commits into from

Conversation

kdcis
Copy link
Contributor

@kdcis kdcis commented Jul 20, 2021

Ported protocol.py & test_protocol.py

-> Resolved import errors

-> Fixed encoding/decoding issues

-> Python 2/3 compatibility

@kdcis kdcis force-pushed the v0.6-test-protocol branch from b6df0f8 to 6d88130 Compare July 20, 2021 14:28
@g1itch g1itch marked this pull request as draft July 26, 2021 12:57
@kdcis kdcis force-pushed the v0.6-test-protocol branch 2 times, most recently from 5ec2ffc to c83bb1e Compare July 26, 2021 13:04
@g1itch
Copy link
Collaborator

g1itch commented Jul 28, 2021

Why are you turning the code into the Ramen? Where are you tests? You should write new tests before editing the code.

@g1itch
Copy link
Collaborator

g1itch commented Jul 28, 2021

RTFD: https://six.readthedocs.io

from . import pyelliptic
from .bmconfigparser import BMConfigParser
from .pyelliptic import OpenSSL
from .pyelliptic import arithmetic as a
Copy link
Collaborator

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
Copy link
Collaborator

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

Copy link
Contributor Author

@kdcis kdcis Jul 28, 2021

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

Copy link
Collaborator

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.

Copy link
Contributor Author

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

Copy link
Collaborator

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.

Copy link
Contributor Author

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.

Copy link
Collaborator

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?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes

Copy link
Collaborator

@g1itch g1itch Jul 28, 2021

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.

@g1itch
Copy link
Collaborator

g1itch commented Jul 28, 2021

Please read the discussion in #1712 and the mention in #1789, it leads to #1788

@kdcis kdcis force-pushed the v0.6-test-protocol branch from 335a671 to 9757758 Compare July 28, 2021 14:18
@kdcis
Copy link
Contributor Author

kdcis commented Jul 29, 2021

Closing, Fixed via #1792

@kdcis kdcis closed this Jul 29, 2021
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

Successfully merging this pull request may close these issues.

3 participants