circuitpython/shared-module/traceback/__init__.h
2024-05-19 20:40:44 -04:00

13 lines
358 B
C

// This file is part of the CircuitPython project: https://circuitpython.org
//
// SPDX-FileCopyrightText: Copyright (c) 2021 microDev
//
// SPDX-License-Identifier: MIT
#pragma once
#include "py/objexcept.h"
#include "py/objtraceback.h"
extern void shared_module_traceback_print_exception(mp_obj_exception_t *exc,
mp_print_t *print, mp_int_t limit);