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

Method read_uint8

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

Source from the content-addressed store, hash-verified

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

Callers 4

_process_authMethod · 0.80
authenticateMethod · 0.80

Calls

no outgoing calls

Tested by 1

authenticateMethod · 0.64