From 1e2e65f0fa159f3a0e89fd548a64ce0b67f5d97e Mon Sep 17 00:00:00 2001 From: Bruno Oliveira Date: Wed, 19 Sep 2018 08:20:23 -0300 Subject: [PATCH] Add references to the relevant Python issues --- src/_pytest/paths.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/_pytest/paths.py b/src/_pytest/paths.py index 52b2392d0..e5177e231 100644 --- a/src/_pytest/paths.py +++ b/src/_pytest/paths.py @@ -31,6 +31,10 @@ def fnmatch_ex(pattern, path): This algorithm was ported to keep backward-compatibility with existing settings which assume paths match according this logic. + + References: + * https://bugs.python.org/issue29249 + * https://bugs.python.org/issue34731 """ path = PurePath(path) iswin32 = sys.platform.startswith("win")