You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
the Property.value accessor methods currently use a print statement. Refactor to a proper deprecation warning using the warnings module.
in Property.__init__ the value can be keyword set, but does not elicit the deprecation warning.
in the Section.create_property() method value can be set as a keyword argument, but values can not. Refactor so that values can also be keyword set and that the usage of the value keyword elicits a deprecation warning.
The
Property.valueattribute is deprecated!Property.valueaccessor methods currently use a print statement. Refactor to a proper deprecation warning using thewarningsmodule.Property.__init__thevaluecan be keyword set, but does not elicit the deprecation warning.Section.create_property()methodvaluecan be set as a keyword argument, butvaluescan not. Refactor so thatvaluescan also be keyword set and that the usage of thevaluekeyword elicits a deprecation warning.