MCPcopy
hub / github.com/PyMySQL/PyMySQL / read_uint8

Method read_uint8

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

Source from the content-addressed store, hash-verified

110 return self._data[position : (position + length)]
111
112 def read_uint8(self):
113 result = self._data[self._position]
114 self._position += 1
115 return result
116
117 def read_uint16(self):
118 result = struct.unpack_from("<H", self._data, self._position)[0]

Callers 5

_process_authMethod · 0.80
authenticateMethod · 0.80

Calls

no outgoing calls

Tested by 1

authenticateMethod · 0.64