mirror of
https://github.com/python/cpython
synced 2024-11-02 15:20:44 +00:00
1ef61cf71a
Co-authored-by: Lysandros Nikolaou <lisandrosnik@gmail.com> Co-authored-by: Batuhan Taskaya <isidentical@gmail.com> Co-authored-by: Marta Gómez Macías <mgmacias@google.com> Co-authored-by: sunmy2019 <59365878+sunmy2019@users.noreply.github.com>
11 lines
241 B
C
11 lines
241 B
C
#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
|