-
Notifications
You must be signed in to change notification settings - Fork 155
Conversation
Thanks for this PR, @MrSaints! This change looks good, mostly. The two concerns I have are:
And there are some lint errors in the build:
|
Cheers for the quick feedback @yurishkuro. I've addressed them in the new commits. |
there seem to be some errors in the build |
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.
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 |
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.
Q: is this import necessary?
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.
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.
tests/test_sampler.py
Outdated
@@ -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") |
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.
can we change back to /
?
tests/test_sampler.py
Outdated
@@ -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") |
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.
can we change back to /
?
tests/test_sampler.py
Outdated
@@ -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 |
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.
can we remove this?
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.
Done :)
tests/test_sampler.py
Outdated
@@ -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))) |
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.
can we use /
?
jaeger_client/thrift.py
Outdated
@@ -117,7 +118,7 @@ def timestamp_micros(ts): | |||
:param ts: | |||
:return: | |||
""" | |||
return long(ts * 1000000) | |||
return int(ts * 1000000) |
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.
If someone on a 32bit architecture uses this, we'll get integer overflow no?
unix seconds 1499659236
microseconds 1499659236000000 >>> 2^32
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.
We can probably switch between int
, and long
using six
.
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.
do we need to make that change for this PR?
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.
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.
I've made the changes @yurishkuro, but I'm not too sure what's going on with one of the Travis |
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 |
@MrSaints a couple questions:
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 |
(1) Whoops @yurishkuro. I've cleaned it up. |
Attempting to fix the coverage issue here #61 |
Tests are passing.
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.
Use `long` for py2, and `int` for py3. Otherwise we will get an integer overflow for py2 32bit.
@yurishkuro Cheers for the fix. And rebased. |
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.
lgtm
We good to merge? |
Cheers for all the feedback, and for pushing this out @yurishkuro @black-adder |
Does this |
I still get |
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. |
Ok, I thought it had been solved. Sorry |
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).