Pending removal in Python 3.21
------------------------------

* :mod:`abc`

   * Soft-deprecated since Python 3.3 :class:`abc.abstractclassmethod`,
     :class:`abc.abstractstaticmethod`, and :class:`abc.abstractproperty`
     now raise a :exc:`DeprecationWarning`.
     These classes will be removed in Python 3.21, instead
     use :func:`abc.abstractmethod` with :func:`classmethod`,
     :func:`staticmethod`, and :class:`property` respectively.

* :mod:`ast`:

  * Classes ``slice``, ``Index``, ``ExtSlice``, ``Suite``, ``Param``,
    ``AugLoad`` and ``AugStore``, will be removed in Python 3.21. These types
    are not generated by the parser or accepted by the code generator.
  * The ``dims`` property of ``ast.Tuple`` will be removed in Python 3.21. Use
    the ``ast.Tuple.elts`` property instead.
