Closed cr1901 closed 5 years ago
As requested. This is a breaking change because the order of arguments to SRAMResource changed by making oe optional.
SRAMResource
oe
It is not breaking, all *Resource arguments are keyword-only.
And you don't even need to reorder them in the definition, def x(*, a=None, b): pass is valid Python.
def x(*, a=None, b): pass
As requested. This is a breaking change because the order of arguments to
SRAMResource
changed by makingoe
optional.