Re: what is payload

2017-09-07 Thread Frank Millman
"Andrej Viktorovich" wrote in message news:4ad4fa0e-cd61-412d-8c8f-9f5be2bad...@googlegroups.com... Hello, Have working sample with strange property - payload: class ExampleClass(object): def __init__(self,value): print("Initialising instance...") self.payload = value exa

Re: what is payload

2017-09-07 Thread eth0
Era el Thu, 7 Sep 2017 00:48:34 -0700 (PDT) en comp.lang.python, cuando de repente Andrej Viktorovich dijo lo siguiente acerca de what is payload: > Hello, > > Have working sample with strange property - payload: > > class ExampleClass(object): > def _

what is payload

2017-09-07 Thread Andrej Viktorovich
Hello, Have working sample with strange property - payload: class ExampleClass(object): def __init__(self,value): print("Initialising instance...") self.payload = value exampleInstance = ExampleClass(42) print(exampleInstance.payload) Is it some default field that all objec