blob: 470e467baa75bb792bc5797fed7f2999d8aa2f6b (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
"""Test deprecated classes from Python 3.3."""
# pylint: disable=unused-import,import-error,no-name-in-module,abstract-class-instantiated
from collections import Iterable # [deprecated-class]
import collections.Set # [deprecated-class]
import collections
_ = collections.Awaitable() # [deprecated-class]
|