Point72 / csp

csp is a high performance reactive stream processing library, written in C++ and Python
https://github.com/Point72/csp/wiki
Apache License 2.0
150 stars 27 forks source link

`dir` on a struct instance does not return all public APIs #311

Open timkpaine opened 4 days ago

timkpaine commented 4 days ago

related to https://github.com/Point72/csp/issues/82

from csp import Struct

class Test(Struct):
    x: int

dir(Test())  # ['x']

Missing at least: