blob: 0b34de1b4e41e9200c64d9aa2baf9a80219c38d8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
#ifndef STRINGS_H
#define STRINGS_H
#include <Python.h>
#include <pycore_ast.h>
#include "pegen.h"
PyObject *_PyPegen_parse_string(Parser *, Token *);
PyObject *_PyPegen_decode_string(Parser *, int, const char *, size_t, Token *);
#endif
|