MCPcopy Create free account
hub / github.com/PyMySQL/PyMySQL / read_uint64

Method read_uint64

pymysql/protocol.py:131–134  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

129 return result
130
131 def read_uint64(self):
132 result = struct.unpack_from("<Q", self._data, self._position)[0]
133 self._position += 8
134 return result
135
136 def read_string(self):
137 end_pos = self._data.find(b"\0", self._position)

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected