Re: what is payload

2017-09-07 Thread Frank Millman
"Andrej Viktorovich" wrote in message news:[email protected]... 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