My class gcb_ip
has those attributes:
class gcb_ip:
ip = None
country_code = None
score = None
asn = None
records = list()
1) I fill up the records list with a specific method.
2) I can see the records and the rest of my attributes inside the object if I check it my main code.
3) I CAN'T see the records but the rest of my attributes inside the object if I check it into another class method passed by parameters.
I come from C++ and I guess that this is a copy/reference parameter passing issue. ¿What's going on?