1
0
mirror of https://github.com/python/cpython synced 2024-07-01 09:24:24 +00:00
cpython/Parser/string_parser.h
Pablo Galindo Salgado 1ef61cf71a
gh-102856: Initial implementation of PEP 701 (#102855)
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>
2023-04-19 11:18:16 -05:00

12 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