MCPcopy Index your code
hub / github.com/matplotlib/matplotlib / _to_list_of_ints

Function _to_list_of_ints

lib/matplotlib/_afm.py:66–68  ·  view source on GitHub ↗
(s: bytes)

Source from the content-addressed store, hash-verified

64
65
66def _to_list_of_ints(s: bytes) -> list[int]:
67 s = s.replace(b',', b' ')
68 return [_to_int(val) for val in s.split()]
69
70
71def _to_list_of_floats(s: bytes | str) -> list[float]:

Callers

nothing calls this directly

Calls 1

_to_intFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…