Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 0 additions & 6 deletions lib/py/src/protocol/TProtocol.py
Original file line number Diff line number Diff line change
Expand Up @@ -121,9 +121,6 @@ def writeString(self, str_val):
def writeBinary(self, str_val):
pass

def writeUtf8(self, str_val):
self.writeString(str_val.encode('utf-8'))

def readMessageBegin(self):
pass

Expand Down Expand Up @@ -184,9 +181,6 @@ def readString(self):
def readBinary(self):
pass

def readUtf8(self):
return self.readString().decode('utf-8')

def skip(self, ttype):
if ttype == TType.BOOL:
self.readBool()
Expand Down
Loading