add Path.attributes and Path.meta attributes
parent
685f9a6eaf
commit
b714ff872d
|
@ -2199,6 +2199,8 @@ class Path(MutableSequence):
|
||||||
_closed = False
|
_closed = False
|
||||||
_start = None
|
_start = None
|
||||||
_end = None
|
_end = None
|
||||||
|
attributes = None
|
||||||
|
meta = None # meant as container for storage of arbitrary meta data
|
||||||
|
|
||||||
def __init__(self, *segments, **kw):
|
def __init__(self, *segments, **kw):
|
||||||
self._segments = list(segments)
|
self._segments = list(segments)
|
||||||
|
|
Loading…
Reference in New Issue