Files
test2/tools/debug/gdb/gdb/printing.py
2024-10-23 12:48:09 +11:00

14 lines
258 B
Python

# SPDX-FileCopyrightText: 2024 Blender Authors
#
# SPDX-License-Identifier: GPL-2.0-or-later
from .gdb import Value
class PrettyPrinter:
def __init__(self, name: str, subprinters=None):
pass
def __call__(self, value: Value):
pass