diff options
Diffstat (limited to 'beautifulsoup/element.py')
-rw-r--r-- | beautifulsoup/element.py | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/beautifulsoup/element.py b/beautifulsoup/element.py index 726f2e2..39e0e06 100644 --- a/beautifulsoup/element.py +++ b/beautifulsoup/element.py @@ -722,10 +722,8 @@ class Tag(PageElement, Entities): if not recursive: generator = self.children return self._find_all(name, attrs, text, limit, generator, **kwargs) - - # Old names for backwards compatibility. - find_all = find_all - findChildren = find_all + findAll = find_all # BS3 + findChildren = find_all # BS2 #Private methods |