Lines Matching +full:python +full:- +full:version
1 /* ----------------------------------------------------------------------
2 * Project: CMSIS DSP Python Wrapper
4 * Description: C code for the CMSIS-DSP Python wrapper
9 * Target Processor: Cortex-M cores
10 * -------------------------------------------------------------------- */
12 * Copyright (C) 2010-2021 ARM Limited or its affiliates. All rights reserved.
14 * SPDX-License-Identifier: Apache-2.0
16 * Licensed under the Apache License, Version 2.0 (the License); you may
20 * www.apache.org/licenses/LICENSE-2.0
334 Py_VISIT(GETSTATE(m)->error); in cmsisdsp_traverse()
339 Py_CLEAR(GETSTATE(m)->error); in cmsisdsp_clear()
380 st->error = PyErr_NewException(MODNAME".Error", NULL, NULL); in CAT()
381 if (st->error == NULL) { in CAT()