Skip to content

Commit

Permalink
fix test suite warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
mmerickel committed Oct 6, 2018
1 parent 19e1775 commit 0b0f2d9
Show file tree
Hide file tree
Showing 6 changed files with 136 additions and 25 deletions.
2 changes: 2 additions & 0 deletions src/webob/compat.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,10 @@ def native_(s, encoding='latin-1', errors='strict'):

try:
from collections.abc import MutableMapping
from collections.abc import Iterable
except ImportError:
from collections import MutableMapping
from collections import Iterable

if PY3:
from urllib import parse
Expand Down
2 changes: 0 additions & 2 deletions src/webob/cookies.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
import collections

import base64
import binascii
import hashlib
Expand Down
Loading

0 comments on commit 0b0f2d9

Please sign in to comment.