aboutsummaryrefslogtreecommitdiffhomepage
path: root/python/google
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/google
parent1aa2c34387535d21aa15cd89fac3cf0169e9d63d (diff)
Define cmp() for Python 3 (#3517)
Diffstat (limited to 'python/google')
-rwxr-xr-xpython/google/protobuf/internal/message_test.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/python/google/protobuf/internal/message_test.py b/python/google/protobuf/internal/message_test.py
index f11bb6d6..dafc8077 100755
--- a/python/google/protobuf/internal/message_test.py
+++ b/python/google/protobuf/internal/message_test.py
@@ -53,9 +53,13 @@ import six
import sys
try:
- import unittest2 as unittest #PY26
+ import unittest2 as unittest # PY26
except ImportError:
import unittest
+try:
+ cmp # Python 2
+except NameError:
+ cmp = lambda(x, y): (x > y) - (x < y) # Python 3
from google.protobuf import map_unittest_pb2
from google.protobuf import unittest_pb2