redvypr.configdata.configdata¶
- class redvypr.configdata.configdata(value)¶
This is a class that stores the original data and potentially additional information, if it is pickled it is only returning self.value but not potential additional information
The usage is to store configurations and additional complex data as whole Qt Widgets associated but if the configdata is pickled or copied it will return only the original data For example:
d = configdata('some text') d.moredata = 'more text or even a whole Qt Widget' e = copy.deepcopy(d) print(e)
- __init__(value)¶
Methods
__init__(value)