aboutsummaryrefslogtreecommitdiffhomepage
path: root/python/compatibility_tests/v2.5.0/tests/google/protobuf/internal/message_test.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/compatibility_tests/v2.5.0/tests/google/protobuf/internal/message_test.py')
-rwxr-xr-xpython/compatibility_tests/v2.5.0/tests/google/protobuf/internal/message_test.py4
1 files changed, 2 insertions, 2 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 5053f035..e71b295b 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
@@ -56,9 +56,9 @@ from google.protobuf.internal import test_util
from google.protobuf import message
try:
- cmp # Python 2
+ cmp # Python 2
except NameError:
- cmp = lambda(x, y): (x > y) - (x < y) # Python 3
+ 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.