aboutsummaryrefslogtreecommitdiffhomepage
path: root/python/google/protobuf/message.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/google/protobuf/message.py')
-rwxr-xr-xpython/google/protobuf/message.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/python/google/protobuf/message.py b/python/google/protobuf/message.py
index 4da024ca..9a88bdc8 100755
--- a/python/google/protobuf/message.py
+++ b/python/google/protobuf/message.py
@@ -36,7 +36,6 @@
__author__ = 'robinson@google.com (Will Robinson)'
-from google.protobuf import text_format
class Error(Exception): pass
class DecodeError(Error): pass
@@ -76,7 +75,7 @@ class Message(object):
return not self == other_msg
def __str__(self):
- return text_format.MessageToString(self)
+ raise NotImplementedError
def MergeFrom(self, other_msg):
"""Merges the contents of the specified message into current message.