From 7fdbbd3ccb675bde8a03f3faf38830c53f67f30a Mon Sep 17 00:00:00 2001 From: pankaj1707k <76695979+pankaj1707k@users.noreply.github.com> Date: Thu, 2 Feb 2023 15:52:22 +0530 Subject: [PATCH] Fix for python 3.11 (docs) check on pull request --- docs/topics/selectors.rst | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/topics/selectors.rst b/docs/topics/selectors.rst index 80a979650..7f21e1583 100644 --- a/docs/topics/selectors.rst +++ b/docs/topics/selectors.rst @@ -548,6 +548,7 @@ For example, suppose you want to extract all ``

`` elements inside ``

`` elements. First, you would get all ``
`` elements: .. code-block:: pycon + >>> divs = response.xpath("//div") At first, you may be tempted to use the following approach, which is wrong, as