File: pyarena.h

package info (click to toggle)
python3-typed-ast 1.5.4-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 1,728 kB
  • sloc: ansic: 31,662; python: 4,185; makefile: 4
file content (16 lines) | stat: -rw-r--r-- 361 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* An arena-like memory interface for the compiler.
 */

#ifndef Ta3_PYARENA_H
#define Ta3_PYARENA_H

#if PY_MINOR_VERSION >= 10
#include "../Include/pycore_pyarena.h"

#define PyArena_New _PyArena_New
#define PyArena_Free _PyArena_Free
#define PyArena_Malloc _PyArena_Malloc
#define PyArena_AddPyObject _PyArena_AddPyObject
#endif

#endif /* !Ta3_PYARENA_H */