MCPcopy
hub / github.com/PyMySQL/PyMySQL / read_uint64

Method read_uint64

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

Source from the content-addressed store, hash-verified

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

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected