You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Mar 8, 2023. It is now read-only.
For certain primitive typedefs, module.__types__ contains a tuple of types rather than a single class. For example,
In [2]: import thriftrw
In [3]: l = thriftrw.loader.Loader()
In [6]: m = l.loads('x', 'typedef i32 foo')
In [7]: m.__types__
Out[7]: ((int, long, numbers.Integral),)
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
For certain primitive typedefs,
module.__types__
contains a tuple of types rather than a single class. For example,The text was updated successfully, but these errors were encountered: