Added
-
Add
parent
attribute/property (#71 via #206).COMPATIBILITY REMARKS:
- As the
children
attribute changed to property, existing code needs to be changed like this:-hasattr(token, 'children') +token.children is not None # ... -'children' in vars(token) +token.children is not None # ... -getattr(token, 'children', []) +token.children or []
- As the
Fixed
- Incomplete sdist content (#219).