aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/_typing.py
diff options
context:
space:
mode:
authorPaolo Bonzini <pbonzini@redhat.com>2021-09-07 13:30:47 +0200
committerXavier Claessens <xclaesse@gmail.com>2021-09-07 14:18:58 -0400
commit516c871beca90caa2a1433579e6450f5a6c65817 (patch)
tree53ff3301168affe4d531bca9a48096dc966bc33d /mesonbuild/_typing.py
parentaf8b55d49b64e72dbefbd40d613b93f56d17b855 (diff)
downloadmeson-516c871beca90caa2a1433579e6450f5a6c65817.zip
meson-516c871beca90caa2a1433579e6450f5a6c65817.tar.gz
meson-516c871beca90caa2a1433579e6450f5a6c65817.tar.bz2
summary: fix dependencies
Dependencies are currently printed as [<mesonbuild.mlog.AnsiDecorator object at 0x7faa85aeac70>, ' ', <mesonbuild.mlog.AnsiDecorator object at 0x7faa85aeab50>] This was introduced in commit adb1b2f3f6ad54b346348ec6e5b8d96f2f7ba0a6, due to an incorrect type annotation on the AnsiText constructor. Fix both the annotation and the usage. Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'mesonbuild/_typing.py')
-rw-r--r--mesonbuild/_typing.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/mesonbuild/_typing.py b/mesonbuild/_typing.py
index a01be33..31a6e18 100644
--- a/mesonbuild/_typing.py
+++ b/mesonbuild/_typing.py
@@ -36,6 +36,9 @@ T = typing.TypeVar('T')
class StringProtocol(Protocol):
def __str__(self) -> str: ...
+class SizedStringProtocol(Protocol, StringProtocol, typing.Sized):
+ pass
+
class ImmutableListProtocol(Protocol[T]):
"""A protocol used in cases where a list is returned, but should not be