diff --git a/stdlib/3/collections/abc.pyi b/stdlib/3/collections/abc.pyi new file mode 100644 index 000000000..0eb18b4bd --- /dev/null +++ b/stdlib/3/collections/abc.pyi @@ -0,0 +1,13 @@ +# Stubs for collections.abc (introduced from Python 3.3) +# +# https://docs.python.org/3.3/whatsnew/3.3.html#collections +import sys + +if sys.version_info >= (3, 3): + from . import ( + Container as Container, + MutableMapping as MutableMapping, + Sequence as Sequence, + MutableSequence as MutableSequence, + Set as Set, + )