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

Method is_resultset_packet

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

Source from the content-addressed store, hash-verified

197 return self._data[0] == 1
198
199 def is_resultset_packet(self):
200 field_count = self._data[0]
201 return 1 <= field_count <= 250
202
203 def is_load_local_packet(self):
204 return self._data[0] == 0xFB

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected