diff options
author | Leonard Richardson <leonardr@segfault.org> | 2023-03-27 16:01:43 -0400 |
---|---|---|
committer | Leonard Richardson <leonardr@segfault.org> | 2023-03-27 16:01:43 -0400 |
commit | c63a26a693c14234592b0f92da184a40aa9a2c6b (patch) | |
tree | 18ac38b27c480a6ff40b0cff95025ada913efe1e /bs4/element.py | |
parent | 469bd30fd1d981ea3e2af0d0827956532b41b277 (diff) |
Make it possible to pickle a deeply nested BeautifulSoup object.
Diffstat (limited to 'bs4/element.py')
-rw-r--r-- | bs4/element.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bs4/element.py b/bs4/element.py index 42b4a51..9c73957 100644 --- a/bs4/element.py +++ b/bs4/element.py @@ -911,7 +911,7 @@ class PageElement(object): :rtype: bool """ return getattr(self, '_decomposed', False) or False - + # Old non-property versions of the generators, for backwards # compatibility with BS3. def nextGenerator(self): |