From f6672c7a1923c3e052af3ad223d6075b86378bfc Mon Sep 17 00:00:00 2001 From: Dylan Baker Date: Fri, 20 Nov 2020 14:56:29 -0800 Subject: use real pathlib module We added the _pathlib module to work around defeciencies in python 3.5's implementation, since we now rely on 3.6 lets drop this --- mesonbuild/backend/vs2010backend.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'mesonbuild/backend/vs2010backend.py') diff --git a/mesonbuild/backend/vs2010backend.py b/mesonbuild/backend/vs2010backend.py index 6edf36a..6d81e69 100644 --- a/mesonbuild/backend/vs2010backend.py +++ b/mesonbuild/backend/vs2010backend.py @@ -19,7 +19,7 @@ import xml.dom.minidom import xml.etree.ElementTree as ET import uuid import typing as T -from .._pathlib import Path, PurePath +from pathlib import Path, PurePath from . import backends from .. import build -- cgit v1.1