aboutsummaryrefslogtreecommitdiffhomepage
path: root/python/compatibility_tests
diff options
context:
space:
mode:
authorGravatar cclauss <cclauss@bluewin.ch>2017-08-18 19:13:10 +0200
committerGravatar Jie Luo <anandolee@gmail.com>2017-08-18 10:13:10 -0700
commita04eb8c191e60171a9634cdd64715bd92e6769af (patch)
tree20a16b95494e92cc90ff72b245737d71a061f643 /python/compatibility_tests
parent1aa2c34387535d21aa15cd89fac3cf0169e9d63d (diff)
Define cmp() for Python 3 (#3517)
Diffstat (limited to 'python/compatibility_tests')
-rwxr-xr-xpython/compatibility_tests/v2.5.0/tests/google/protobuf/internal/message_test.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/python/compatibility_tests/v2.5.0/tests/google/protobuf/internal/message_test.py b/python/compatibility_tests/v2.5.0/tests/google/protobuf/internal/message_test.py
index 53e9d507..5053f035 100755
--- a/python/compatibility_tests/v2.5.0/tests/google/protobuf/internal/message_test.py
+++ b/python/compatibility_tests/v2.5.0/tests/google/protobuf/internal/message_test.py
@@ -55,6 +55,11 @@ from google.protobuf.internal import api_implementation
from google.protobuf.internal import test_util
from google.protobuf import message
+try:
+ cmp # Python 2
+except NameError:
+ cmp = lambda(x, y): (x > y) - (x < y) # Python 3
+
# Python pre-2.6 does not have isinf() or isnan() functions, so we have
# to provide our own.
def isnan(val):