aboutsummaryrefslogtreecommitdiffstats
path: root/sources/shiboken6/tests/shiboken_test_helper.py
blob: 8b0d429d501e6c7e6b09f89c4a6f05948e964288 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/env python
# Copyright (C) 2022 The Qt Company Ltd.
# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
from __future__ import annotations


def objectFullname(t):
    name = getattr(t, "__qualname__", t.__name__)
    module = t.__module__
    if module is None or module == str.__class__.__module__:
        return name
    else:
        return module + '.' + name