| 961 | Info = Info() |
| 962 | |
| 963 | class LInfo(IsDescription): # noqa: D106 |
| 964 | _v_pos = 1 |
| 965 | name = UInt32Col() |
| 966 | value = Float64Col(pos=0) |
| 967 | y2 = Col.from_kind("float", dflt=1, shape=(2, 3), pos=1) |
| 968 | z2 = UInt8Col(dflt=1) |
| 969 | |
| 970 | class LInfo2(IsDescription): # noqa: D106 |
| 971 | y3 = Col.from_kind("float", dflt=1, shape=(2, 3)) |
| 972 | z3 = UInt8Col(dflt=1) |
| 973 | name = UInt32Col() |
| 974 | value = Float64Col() |
| 975 | |
| 976 | class LInfo3(IsDescription): # noqa: D106 |
| 977 | name = UInt32Col() |
| 978 | value = Float64Col() |
| 979 | y4 = Col.from_kind("float", dflt=1, shape=(2, 3)) |
| 980 | z4 = UInt8Col(dflt=1) |
| 981 | |
| 982 | # class Info(IsDescription): |
| 983 | # _v_pos = 2 |