Skip to content
This repository was archived by the owner on Jul 11, 2022. It is now read-only.

Futurize for Py3 #57

Merged
merged 11 commits into from
Jul 11, 2017
Merged

Futurize for Py3 #57

merged 11 commits into from
Jul 11, 2017

Conversation

MrSaints
Copy link
Contributor

@MrSaints MrSaints commented Jul 8, 2017

As per the suggestion #43 (comment), this PR runs futurize against the source with small fixes to ensure the Python 2 tests continues to pass. I thought I make this PR to get Python 3 support moving (even if it is in the smallest way possible).

@CLAassistant
Copy link

CLAassistant commented Jul 8, 2017

CLA assistant check
All committers have signed the CLA.

@coveralls
Copy link

Coverage Status

Coverage increased (+0.1%) to 94.598% when pulling ad2bfa7 on arachnys:py3-support into b3b4812 on uber:master.

@yurishkuro
Copy link
Member

Thanks for this PR, @MrSaints!

This change looks good, mostly. The two concerns I have are:

  1. The use of old_div seems unnecessary. There aren't that many occurrences, can we replace them with / for floats and // for ints? It is usually apparent from the context which numbers we're dealing with.
  2. The change from iteritems()/iterkeys() to items()/keys() is not good, since in Py2 the latter will cause creation of new arrays. Can we replace all instances with respective proxy methods from six?

And there are some lint errors in the build:

flake8 jaeger_client crossdock tests
jaeger_client/codecs.py:25:1: E402 module level import not at top of file
jaeger_client/codecs.py:26:1: E402 module level import not at top of file
jaeger_client/codecs.py:27:1: E402 module level import not at top of file
jaeger_client/codecs.py:27:22: E401 multiple imports on one line
jaeger_client/codecs.py:29:1: E402 module level import not at top of file
jaeger_client/codecs.py:33:1: E402 module level import not at top of file
jaeger_client/codecs.py:38:1: E402 module level import not at top of file
jaeger_client/metrics.py:28:1: E302 expected 2 blank lines, found 0
make: *** [lint] Error 1

@MrSaints
Copy link
Contributor Author

MrSaints commented Jul 9, 2017

Cheers for the quick feedback @yurishkuro. I've addressed them in the new commits.

@yurishkuro
Copy link
Member

there seem to be some errors in the build

@MrSaints MrSaints closed this Jul 9, 2017
@MrSaints MrSaints reopened this Jul 9, 2017
@coveralls
Copy link

coveralls commented Jul 9, 2017

Coverage Status

Coverage increased (+0.2%) to 94.609% when pulling b8cc36c on arachnys:py3-support into b3b4812 on uber:master.

This was referenced Jul 9, 2017
Copy link
Member

@yurishkuro yurishkuro left a comment

Choose a reason for hiding this comment

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

lgtm. I would like @black-adder to have a second look, then we can merge. I left a couple minor comments about old_div - don't think we need it, so let's not pollute the code.

I tried (#58) testing this version with py 3.6, but it bombs spectacularly, so clearly more work is needed (perhaps it's the thrift lib). I opened an overall issue #59 to support Python 3.x, could you comment there with the remaining steps after this PR is merged?

@@ -19,9 +19,12 @@
# THE SOFTWARE.

from __future__ import absolute_import
from __future__ import division
Copy link
Member

Choose a reason for hiding this comment

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

Q: is this import necessary?

Copy link
Contributor Author

Choose a reason for hiding this comment

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

I'm not too sure. Seems like it.

The future division statement, spelled from __future__ import division , will change the / operator to mean true division throughout the module.

@@ -198,7 +201,7 @@ def test_adaptive_sampler():
sampled, tags = sampler.is_sampled(MAX_INT-10, "new_op")
assert sampled
assert tags == get_tags('probabilistic', 0.51)
sampled, tags = sampler.is_sampled(MAX_INT+(MAX_INT/4), "new_op")
sampled, tags = sampler.is_sampled(MAX_INT+(old_div(MAX_INT,4)), "new_op")
Copy link
Member

Choose a reason for hiding this comment

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

can we change back to /?

@@ -207,7 +210,7 @@ def test_adaptive_sampler():
sampled, tags = sampler.is_sampled(MAX_INT-10, "new_op_2")
assert sampled
assert tags == get_tags('probabilistic', 0.51)
sampled, _ = sampler.is_sampled(MAX_INT+(MAX_INT/4), "new_op_2")
sampled, _ = sampler.is_sampled(MAX_INT+(old_div(MAX_INT,4)), "new_op_2")
Copy link
Member

Choose a reason for hiding this comment

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

can we change back to /?

@@ -18,6 +19,8 @@
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
# THE SOFTWARE.

from builtins import range
from past.utils import old_div
Copy link
Member

Choose a reason for hiding this comment

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

can we remove this?

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Done :)

@@ -167,7 +170,7 @@ def test_guaranteed_throughput_probabilistic_sampler():
sampled, tags = sampler.is_sampled(MAX_INT-10)
assert sampled
assert tags == get_tags('probabilistic', 0.51)
sampled, tags = sampler.is_sampled(MAX_INT+(MAX_INT/4))
sampled, tags = sampler.is_sampled(MAX_INT+(old_div(MAX_INT,4)))
Copy link
Member

Choose a reason for hiding this comment

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

can we use /?

@@ -117,7 +118,7 @@ def timestamp_micros(ts):
:param ts:
:return:
"""
return long(ts * 1000000)
return int(ts * 1000000)
Copy link
Contributor

Choose a reason for hiding this comment

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

If someone on a 32bit architecture uses this, we'll get integer overflow no?
unix seconds 1499659236
microseconds 1499659236000000 >>> 2^32

Copy link
Contributor Author

Choose a reason for hiding this comment

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

We can probably switch between int, and long using six.

Copy link
Contributor

Choose a reason for hiding this comment

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

do we need to make that change for this PR?

Copy link
Contributor Author

Choose a reason for hiding this comment

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

I've made that change, I'm unsure if the int behaves as expected for py3, but we can do that in a different PR.

@coveralls
Copy link

Coverage Status

Coverage increased (+0.2%) to 94.695% when pulling 4ea03fe on arachnys:py3-support into b3b4812 on uber:master.

@MrSaints
Copy link
Contributor Author

I've made the changes @yurishkuro, but I'm not too sure what's going on with one of the Travis COVER=1 test: INTERNALERROR> RuntimeError: dictionary changed size during iteration

@black-adder
Copy link
Contributor

The code coverage issue looks related to: https://bitbucket.org/ned/coveragepy/issues/581/44b1-44-breaking-in-ci we probably want to use an older version of coverage until it's fixed

@coveralls
Copy link

coveralls commented Jul 10, 2017

Coverage Status

Coverage increased (+0.3%) to 94.702% when pulling 50f762e on arachnys:py3-support into b3b4812 on uber:master.

@yurishkuro
Copy link
Member

long_fn = int if six.PY3 else long

@MrSaints a couple questions:

  • Will ^^ actually parse/compile with Py3? I thought 3.x decommissioned long.
  • from reading the PEP 237 and SO question it seems the overflow on ints has been eliminated in favor of automatic upgrading of the value from a machine word to a malloc-ed memory, making this transparent to the end user. I don't know if we can find a 32bit machine to test this, any thoughts?

Even on 64bit machine the automatic type conversion can be seen:

>>> import sys;
>>> sys.maxint
9223372036854775807
>>> type(sys.maxint)
<type 'int'>
>>> type(sys.maxint + 1)
<type 'long'>
>>> type(sys.maxint * 100)
<type 'long'>
>>> (type(sys.maxint * 100), sys.maxint * 100)
(<type 'long'>, 922337203685477580700L)

i.e. an int value times 100 is auto-converted to long.

@coveralls
Copy link

Coverage Status

Coverage increased (+0.1%) to 94.641% when pulling 1816512 on arachnys:py3-support into 19e2ce6 on uber:master.

@MrSaints
Copy link
Contributor Author

(1) Whoops @yurishkuro. I've cleaned it up.
(2) We can do more vigorous testing with Python 3. I believe it should be fine if it does not change the existing behaviour in Python 2.

@yurishkuro
Copy link
Member

Attempting to fix the coverage issue here #61

@yurishkuro
Copy link
Member

@MrSaints can you rebase or merge from master to pick up #61?

MrSaints added 9 commits July 10, 2017 19:46
This is to introduce more safe changes to support Python 3.
It is likely to result in tests failures.
Use `six.PY3` to force non-unicode strings in Python 2.
…x.iterkeys()`

This is in response to CR feedback as using `items()`, and `keys()`
in Py2 will result in the creation of new arrays. Thus, this commit
will use proxy methods from `six` instead.
MrSaints added 2 commits July 10, 2017 19:46
Use `long` for py2, and `int` for py3. Otherwise we will get an
integer overflow for py2 32bit.
@MrSaints
Copy link
Contributor Author

@yurishkuro Cheers for the fix. And rebased.

@coveralls
Copy link

Coverage Status

Coverage increased (+0.1%) to 94.641% when pulling 532eba6 on arachnys:py3-support into 8d94fa8 on uber:master.

Copy link
Contributor

@black-adder black-adder left a comment

Choose a reason for hiding this comment

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

lgtm

@MrSaints
Copy link
Contributor Author

We good to merge?

@yurishkuro yurishkuro merged commit 0392cce into jaegertracing:master Jul 11, 2017
@MrSaints
Copy link
Contributor Author

Cheers for all the feedback, and for pushing this out @yurishkuro @black-adder

@MrSaints MrSaints deleted the py3-support branch July 11, 2017 16:25
@Groxx
Copy link

Groxx commented Oct 25, 2017

Does this install_aliases() call taint the entire environment that imports it, not just this source file? If yes, it seems like this may be breaking anything expecting e.g. a specific html library (or a specific version), like https://pypi.python.org/pypi/html
Or enum, since enum and enum34 (which overrides enum) are extremely different.

@olevold
Copy link

olevold commented Oct 27, 2017

I still get ImportError: No module named 'ttypes'

@MrSaints
Copy link
Contributor Author

Are you running on Python 3 @olevold ? There's still work that needs to be done (e.g. on Thrift side) to get it working on Python 3.

@olevold
Copy link

olevold commented Oct 27, 2017

Ok, I thought it had been solved. Sorry

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

Successfully merging this pull request may close these issues.

7 participants