11 lines
172 B
Python
11 lines
172 B
Python
# SPDX-License-Identifier: LGPL-2.1-or-later
|
|
|
|
from __future__ import annotations
|
|
|
|
class PyObjectBase:
|
|
"""
|
|
The most base class for Python bindings.
|
|
"""
|
|
|
|
...
|