From dda16ef1e51787c1b73d23555601cf094911d3a0 Mon Sep 17 00:00:00 2001 From: Athul Muralidhar <35686547+AthulMuralidhar@users.noreply.github.com> Date: Wed, 19 Aug 2020 11:31:59 +0200 Subject: [PATCH] Change urllib2 to ulrlib the change is required because the urllib2 is now moved to urllib in python 3.5 --- docs/usage.rst | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/usage.rst b/docs/usage.rst index 3e3f47e..fc4c9e1 100644 --- a/docs/usage.rst +++ b/docs/usage.rst @@ -4,10 +4,10 @@ Usage .. code:: python import vcr - import urllib2 + import urllib with vcr.use_cassette('fixtures/vcr_cassettes/synopsis.yaml'): - response = urllib2.urlopen('http://www.iana.org/domains/reserved').read() + response = urllib.request.urlopen('http://www.iana.org/domains/reserved').read() assert 'Example domains' in response Run this test once, and VCR.py will record the HTTP request to @@ -25,7 +25,7 @@ look like this: @vcr.use_cassette('fixtures/vcr_cassettes/synopsis.yaml') def test_iana(): - response = urllib2.urlopen('http://www.iana.org/domains/reserved').read() + response = urllib.request.urlopen('http://www.iana.org/domains/reserved').read() assert 'Example domains' in response When using the decorator version of ``use_cassette``, it is possible to @@ -35,7 +35,7 @@ omit the path to the cassette file. @vcr.use_cassette() def test_iana(): - response = urllib2.urlopen('http://www.iana.org/domains/reserved').read() + response = urllib.request.urlopen('http://www.iana.org/domains/reserved').read() assert 'Example domains' in response In this case, the cassette file will be given the same name as the test