Fix for python 3.11 (docs) check on pull request

This commit is contained in:
pankaj1707k 2023-02-02 15:52:22 +05:30
parent cc9eb3fa79
commit 7fdbbd3ccb
No known key found for this signature in database
GPG Key ID: 6757E896F6BC635E
1 changed files with 1 additions and 0 deletions

View File

@ -548,6 +548,7 @@ For example, suppose you want to extract all ``<p>`` elements inside ``<div>``
elements. First, you would get all ``<div>`` elements:
.. code-block:: pycon
>>> divs = response.xpath("//div")
At first, you may be tempted to use the following approach, which is wrong, as