Closed zegervdv closed 5 years ago
Creating IpxactInt objects with large values (over 32bit) fail with
IpxactInt
OverflowError: Python int too large to convert to C long
Instantiation a new int() in the class in stead of calling the super fixes the issue.
int()
super
Thanks for this. Sorry for taking so long. Picked and pushed
Creating
IpxactInt
objects with large values (over 32bit) fail withInstantiation a new
int()
in the class in stead of calling thesuper
fixes the issue.