Merge pull request #3978 from graingert/remove-seemingly-redundant-pyflakes-references

remove seemingly redundant pyflakes references
This commit is contained in:
Cory Benfield
2017-04-20 09:44:19 -04:00
committed by GitHub
3 changed files with 0 additions and 5 deletions
-1
View File
@@ -6,7 +6,6 @@ junit-report.xml
pylint.txt
toy.py
tox.ini
violations.pyflakes.txt
cover/
build/
docs/_build
-2
View File
@@ -19,8 +19,6 @@ from .compat import cookielib, urlparse, urlunparse, Morsel
try:
import threading
# grr, pyflakes: this fixes "redefinition of unused 'threading'"
threading
except ImportError:
import dummy_threading as threading
-2
View File
@@ -32,8 +32,6 @@ from .structures import CaseInsensitiveDict, TimedCache, TimedCacheManaged
from .exceptions import (
InvalidURL, InvalidHeader, FileModeWarning, UnrewindableBodyError)
_hush_pyflakes = (RequestsCookieJar,)
NETRC_FILES = ('.netrc', '_netrc')
DEFAULT_CA_BUNDLE_PATH = certs.where()