| 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 |