summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorLeonard Richardson <leonardr@segfault.org>2020-05-17 11:58:31 -0400
committerLeonard Richardson <leonardr@segfault.org>2020-05-17 11:58:31 -0400
commit329fc7fd408388ac7b62e8703962f28aae0f3a9d (patch)
treefb4e71d7acb9a9f6f6e9a7a3062fface659ef512 /doc
parent83c8c3a029d29fd833a8137b205f4ca78a4b1c26 (diff)
Added docstring for BeautifulSoup.new_tag.
Diffstat (limited to 'doc')
-rw-r--r--doc/source/index.rst12
1 files changed, 12 insertions, 0 deletions
diff --git a/doc/source/index.rst b/doc/source/index.rst
index f6a89de..87c04d9 100644
--- a/doc/source/index.rst
+++ b/doc/source/index.rst
@@ -3281,6 +3281,18 @@ on BS4 until you change them.
* ``Tag.next`` -> ``Tag.next_element``
* ``Tag.previous`` -> ``Tag.previous_element``
+These methods are left over from the Beautiful Soup 2 API. They've
+been deprecated since 2006, and should not be used at all:
+
+* ``Tag.fetchNextSiblings``
+* ``Tag.fetchPreviousSiblings``
+* ``Tag.fetchPrevious``
+* ``Tag.fetchPreviousSiblings``
+* ``Tag.fetchParents``
+* ``Tag.findChild``
+* ``Tag.findChildren``
+
+
Generators
^^^^^^^^^^