Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion web/core/context.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

from __future__ import unicode_literals

from collections import MutableMapping
from collections.abc import MutableMapping


# ## Mapping Class
Expand Down
2 changes: 1 addition & 1 deletion web/ext/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
pass

try:
from collections import Generator
from collections.abc import Generator
except ImportError:
def _tmp(): yield None # pragma: no cover
Generator = type(_tmp())
Expand Down
2 changes: 1 addition & 1 deletion web/ext/serialize.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
from __future__ import unicode_literals

import pkg_resources
from collections import Mapping
from collections.abc import Mapping

from marrow.package.host import PluginManager
from web.core.compat import str
Expand Down