~ubuntu-branches/ubuntu/utopic/python-urllib3/utopic

« back to all changes in this revision

Viewing changes to urllib3/poolmanager.py

  • Committer: Package Import Robot
  • Author(s): Daniele Tricoli
  • Date: 2014-07-07 16:09:06 UTC
  • mfrom: (4.1.7 sid)
  • Revision ID: package-import@ubuntu.com-20140707160906-hv2d4zrlg8u7rjby
Tags: 1.8.3-1
* New upstream release (Closes: #754090)
* debian/patches/01_do-not-use-embedded-python-six.patch
  - Refresh
* debian/patches/04_relax_nosetests_options.patch
  - Refresh

Show diffs side-by-side

added added

removed removed

Lines of Context:
161
161
        # Support relative URLs for redirecting.
162
162
        redirect_location = urljoin(url, redirect_location)
163
163
 
164
 
        # RFC 2616, Section 10.3.4
 
164
        # RFC 7231, Section 6.4.4
165
165
        if response.status == 303:
166
166
            method = 'GET'
167
167