Skip to content
Snippets Groups Projects
Commit 78ac31d9 authored by Rajmund Hruška's avatar Rajmund Hruška
Browse files

Merge branch 'hruska-bugfix-#3-deprecation-warnings' into 'hruska-feature-multiple-python-versions'

Import from collections.abc

See merge request 709/warden/typedcols!5
parents 98ba244e afd0a33a
No related branches found
No related tags found
1 merge request!5Import from collections.abc
Pipeline #1784 failed
...@@ -13,7 +13,8 @@ type definition. ...@@ -13,7 +13,8 @@ type definition.
__version__ = '0.1.13' __version__ = '0.1.13'
__author__ = 'Pavel Kácha <pavel.kacha@cesnet.cz>' __author__ = 'Pavel Kácha <pavel.kacha@cesnet.cz>'
import collections from collections.abc import MutableMapping
from collections.abc import MutableSequence
import abc import abc
...@@ -61,7 +62,7 @@ class TypedDictMetaclass(abc.ABCMeta): ...@@ -61,7 +62,7 @@ class TypedDictMetaclass(abc.ABCMeta):
dictify_typedef(cls.typedef) dictify_typedef(cls.typedef)
class TypedDict(collections.MutableMapping): class TypedDict(MutableMapping):
""" Dictionary type abstract class, which supports checking of inserted """ Dictionary type abstract class, which supports checking of inserted
types, based on simple type definition. types, based on simple type definition.
...@@ -222,7 +223,7 @@ class TypedDict(collections.MutableMapping): ...@@ -222,7 +223,7 @@ class TypedDict(collections.MutableMapping):
TypedDict = TypedDictMetaclass("TypedDict", (TypedDict,), {}) TypedDict = TypedDictMetaclass("TypedDict", (TypedDict,), {})
class TypedList(collections.MutableSequence): class TypedList(MutableSequence):
""" List type abstract class, which supports checking of inserted items """ List type abstract class, which supports checking of inserted items
type. type.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment