add Path.attributes and Path.meta attributes

pull/114/head
Andy Port 2020-06-19 20:21:28 -07:00
parent 685f9a6eaf
commit b714ff872d
1 changed files with 2 additions and 0 deletions

View File

@ -2199,6 +2199,8 @@ class Path(MutableSequence):
_closed = False
_start = None
_end = None
attributes = None
meta = None # meant as container for storage of arbitrary meta data
def __init__(self, *segments, **kw):
self._segments = list(segments)