diff options
author | Leonard Richardson <leonard.richardson@canonical.com> | 2011-02-18 07:45:09 -0500 |
---|---|---|
committer | Leonard Richardson <leonard.richardson@canonical.com> | 2011-02-18 07:45:09 -0500 |
commit | f40a7f8fbcceb61ead662c6cc69b141fdee246da (patch) | |
tree | 9ce9bd9d42456181720f9f263df3bbc7149b84ff /CHANGELOG | |
parent | 662ec109acc656b1607b8464d3ef85f5d1feec4c (diff) |
Fixed the findAll backwards compatibility alias.
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: |