Merge pull request #3694 from noviluni/master

[MRG+1] Fix numeration
This commit is contained in:
Mikhail Korobov 2019-03-23 00:23:06 +05:00 committed by GitHub
commit 8583c033ef
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -436,7 +436,7 @@ The following examples show how these methods map to each other.
>>> response.css('a::attr(href)').extract()
['image1.html', 'image2.html', 'image3.html', 'image4.html', 'image5.html']
2. ``Selector.get()`` is the same as ``Selector.extract()``::
3. ``Selector.get()`` is the same as ``Selector.extract()``::
>>> response.css('a::attr(href)')[0].get()
'image1.html'