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
In order to get around the lack of a long in python3, compat does this:
classlong(int): pass
but long is used by the prom.Field to create BIGINT fields in python2, the problem is that int in python3 is the same as long in python 2 (so there isn't really a way to create BIGINT fields in python 3 without doing something like:
In order to get around the lack of a
long
in python3, compat does this:but
long
is used by theprom.Field
to createBIGINT
fields in python2, the problem is thatint
in python3 is the same aslong
in python 2 (so there isn't really a way to createBIGINT
fields in python 3 without doing something like:which seems horrible and is definitely counter-intuitive. I'm wondering if it is worth just making all integers
BIGINT
in python 3?The text was updated successfully, but these errors were encountered: