MCPcopy Create free account
hub / github.com/sqlalchemy/sqlalchemy / process

Method process

lib/sqlalchemy/dialects/mysql/types.py:455–461  ·  view source on GitHub ↗
(value: Optional[Iterable[int]])

Source from the content-addressed store, hash-verified

453 return None
454
455 def process(value: Optional[Iterable[int]]) -> Optional[int]:
456 if value is not None:
457 v = 0
458 for i in value:
459 v = v << 8 | i
460 return v
461 return value
462
463 return process
464

Calls

no outgoing calls

Tested by

no test coverage detected