py36+: remove pathlib2 compatibility shim

This commit is contained in:
Anthony Sottile
2020-10-02 12:04:35 -07:00
parent 325b988ca8
commit 3c93eb0f04
5 changed files with 3 additions and 15 deletions

View File

@@ -169,10 +169,6 @@ For information about fixtures, see :ref:`fixtures`. To see a complete list of a
The returned object is a :class:`pathlib.Path` object.
.. note::
In python < 3.6 this is a pathlib2.Path.
no tests ran in 0.12s

View File

@@ -15,7 +15,7 @@ You can use the ``tmp_path`` fixture which will
provide a temporary directory unique to the test invocation,
created in the `base temporary directory`_.
``tmp_path`` is a ``pathlib/pathlib2.Path`` object. Here is an example test usage:
``tmp_path`` is a ``pathlib.Path`` object. Here is an example test usage:
.. code-block:: python