| [ Web Proxy ] |
| Viewing: https://raw.githubusercontent.com/pythoncapi/cpython/pythoncapi/Parser/tokenizer.h | [Back] [Original] |
#ifndef Py_TOKENIZER_H
#define Py_TOKENIZER_H
#ifdef __cplusplus
extern "C" {
#endif
#include "object.h"
/* Tokenizer interface */
#include "token.h" /* For token types */
#define MAXINDENT 100 /* Max indentation level */
enum decoding_state {
STATE_INIT,
STATE_RAW,
STATE_NORMAL /* have a codec associated with input */
};
/* Tokenizer state */
struct tok_state {
/* Input state; buf
| Web Proxy Viewer | New URL | Original Page |