From f1fe9e41acf6e2099270a931c46cf390cdc6e348 Mon Sep 17 00:00:00 2001 From: Bruno Oliveira Date: Wed, 21 Nov 2018 20:49:17 -0200 Subject: [PATCH] Mention PR# in the comment for future reference --- src/_pytest/tmpdir.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/_pytest/tmpdir.py b/src/_pytest/tmpdir.py index dadb196ea..860c2d4af 100644 --- a/src/_pytest/tmpdir.py +++ b/src/_pytest/tmpdir.py @@ -29,8 +29,8 @@ class TempPathFactory(object): _given_basetemp = attr.ib( # using os.path.abspath() to get absolute path instead of resolve() as it - # does not work the same in all platforms; there's Path.absolute(), but it is not - # public (see https://bugs.python.org/issue25012) + # does not work the same in all platforms (see #4427) + # Path.absolute() exists, but it is not public (see https://bugs.python.org/issue25012) convert=attr.converters.optional( lambda p: Path(os.path.abspath(six.text_type(p))) )