Github user jseabold commented on a diff in the pull request:
https://github.com/apache/spark/pull/11211#discussion_r91620211
--- Diff: python/pyspark/rdd.py ---
@@ -70,7 +70,8 @@ def portable_hash(x):
>>> portable_hash((None, 1)) & 0xffffffff
219750521
"""
- if sys.version >= '3.3' and 'PYTHONHASHSEED' not in os.environ:
+
+ if sys.version >= '3.2.3' and 'PYTHONHASHSEED' not in os.environ:
--- End diff --
I would avoid the string comparison here. If you must, you can use
`distutils.version.StrictVersion`
```
In [15]: StrictVersion('3.10.0') > StrictVersion('3.2.3')
Out[15]: True
```
but `sys.version` will break anyway on some Python distributions.
```
In [16]: print(sys.version)
3.4.4 |Continuum Analytics, Inc.| (default, Jan 9 2016, 17:30:09)
[GCC 4.2.1 (Apple Inc. build 5577)]
```
You might want to use `sys.version_info` instead.
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]