diff options
author | Dylan Baker <dylan@pnwbakers.com> | 2020-11-20 14:56:29 -0800 |
---|---|---|
committer | Dylan Baker <dylan@pnwbakers.com> | 2020-11-20 15:08:40 -0800 |
commit | f6672c7a1923c3e052af3ad223d6075b86378bfc (patch) | |
tree | 2f5a00744c247fa37044cb2a584cc6defa68cf50 /mesonbuild/backend | |
parent | cef406b3a5d502cde58cdad9fc9b978efb413327 (diff) | |
download | meson-f6672c7a1923c3e052af3ad223d6075b86378bfc.zip meson-f6672c7a1923c3e052af3ad223d6075b86378bfc.tar.gz meson-f6672c7a1923c3e052af3ad223d6075b86378bfc.tar.bz2 |
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
Diffstat (limited to 'mesonbuild/backend')
-rw-r--r-- | mesonbuild/backend/backends.py | 2 | ||||
-rw-r--r-- | mesonbuild/backend/ninjabackend.py | 2 | ||||
-rw-r--r-- | mesonbuild/backend/vs2010backend.py | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/mesonbuild/backend/backends.py b/mesonbuild/backend/backends.py index a322d5f..b9f175a 100644 --- a/mesonbuild/backend/backends.py +++ b/mesonbuild/backend/backends.py @@ -14,7 +14,7 @@ from collections import OrderedDict from functools import lru_cache -from .._pathlib import Path +from pathlib import Path import enum import json import os diff --git a/mesonbuild/backend/ninjabackend.py b/mesonbuild/backend/ninjabackend.py index 15218c1..f79e1f0 100644 --- a/mesonbuild/backend/ninjabackend.py +++ b/mesonbuild/backend/ninjabackend.py @@ -20,7 +20,7 @@ import subprocess from collections import OrderedDict from enum import Enum, unique import itertools -from .._pathlib import PurePath, Path +from pathlib import PurePath, Path from functools import lru_cache from . import backends 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 |