aboutsummaryrefslogtreecommitdiffhomepage
path: root/python
diff options
context:
space:
mode:
authorGravatar Bo Yang <teboring@google.com>2016-09-21 01:30:02 +0000
committerGravatar Bo Yang <teboring@google.com>2016-10-10 11:43:48 -0700
commit23d4688cce12e562655a7743a2489f42e2f17462 (patch)
tree4cb89b3e4a332552e380ee0b0d53a8ee82104e1c /python
parent93007e15ff5bba2f738ff5f5d7c9eb1b707d18f5 (diff)
Fix python bugs for internal integration.
Diffstat (limited to 'python')
-rw-r--r--python/google/protobuf/internal/testing_refleaks.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/google/protobuf/internal/testing_refleaks.py b/python/google/protobuf/internal/testing_refleaks.py
index b2787901..51a9af9e 100644
--- a/python/google/protobuf/internal/testing_refleaks.py
+++ b/python/google/protobuf/internal/testing_refleaks.py
@@ -89,7 +89,7 @@ class ReferenceLeakCheckerTestCase(unittest.TestCase):
super(ReferenceLeakCheckerTestCase, self).run(result=local_result)
newrefcount = self._getRefcounts()
refcount_deltas.append(newrefcount - oldrefcount)
- print refcount_deltas, self
+ print(refcount_deltas, self)
try:
self.assertEqual(refcount_deltas, [0] * self.NB_RUNS)