~ubuntu-branches/ubuntu/wily/python-urllib3/wily-proposed

« back to all changes in this revision

Viewing changes to .pc/01_do-not-use-embedded-python-six.patch/urllib3/util/retry.py

  • Committer: Package Import Robot
  • Author(s): Daniele Tricoli
  • Date: 2015-08-17 18:51:43 UTC
  • mfrom: (4.1.13 sid)
  • Revision ID: package-import@ubuntu.com-20150817185143-o57dout57ku76uux
Tags: 1.11-1
* New upstream release.
* debian/control
  - Add python{,3}-tornado to Build-Depends.
  - Add python-ntlm to python-urllib3's Suggests.
* debian/patches/01_do-not-use-embedded-python-six.patch
  - Refresh.

Show diffs side-by-side

added added

removed removed

Lines of Context:
94
94
 
95
95
        seconds. If the backoff_factor is 0.1, then :func:`.sleep` will sleep
96
96
        for [0.1s, 0.2s, 0.4s, ...] between retries. It will never be longer
97
 
        than :attr:`Retry.MAX_BACKOFF`.
 
97
        than :attr:`Retry.BACKOFF_MAX`.
98
98
 
99
99
        By default, backoff is disabled (set to 0).
100
100