diff options
Diffstat (limited to 'CHANGELOG')
-rw-r--r-- | CHANGELOG | 20 |
1 files changed, 10 insertions, 10 deletions
@@ -19,16 +19,16 @@ work. Here are the renames: == Generators are now properties == -The generators have been given more sensible names, and turned into -properties: - - * childGenerator -> children - * nextGenerator -> next_elements - * nextSiblingGenerator -> next_siblings - * previousGenerator -> previous_elements - * previousSiblingGenerator -> previous_siblings - * recursiveChildGenerator -> recursive_children - * parentGenerator -> parents +The generators have been given more sensible (and PEP 8-compliant) +names, and turned into properties: + + * childGenerator() -> children + * nextGenerator() -> next_elements + * nextSiblingGenerator() -> next_siblings + * previousGenerator() -> previous_elements + * previousSiblingGenerator() -> previous_siblings + * recursiveChildGenerator() -> recursive_children + * parentGenerator() -> parents So instead of this: |