| 2835 | if ctypes: |
| 2836 | # format: "T{>l:x:>d:y:}" |
| 2837 | class BEPoint(ctypes.BigEndianStructure): |
| 2838 | _fields_ = [("x", ctypes.c_long), ("y", ctypes.c_double)] |
| 2839 | point = BEPoint(100, 200.1) |
| 2840 | m1 = memoryview(point) |
| 2841 | m2 = m1.cast('B') |
no outgoing calls
searching dependent graphs…