Move code related to compile from Python.h to compile.h

This commit is contained in:
Victor Stinner 2011-09-29 01:04:08 +02:00
parent 639418812f
commit 2bdc7f591b
2 changed files with 12 additions and 21 deletions

View file

@ -127,30 +127,11 @@
#include "dtoa.h"
#include "fileutils.h"
#ifdef __cplusplus
extern "C" {
#endif
/* _Py_Mangle is defined in compile.c */
#ifndef Py_LIMITED_API
PyAPI_FUNC(PyObject*) _Py_Mangle(PyObject *p, PyObject *name);
#endif
#ifdef __cplusplus
}
#endif
/* Argument must be a char or an int in [-128, 127] or [0, 255]. */
#define Py_CHARMASK(c) ((unsigned char)((c) & 0xff))
#include "pyfpe.h"
/* These definitions must match corresponding definitions in graminit.h.
There's code in compile.c that checks that they are the same. */
#define Py_single_input 256
#define Py_file_input 257
#define Py_eval_input 258
/* Define macros for inline documentation. */
#define PyDoc_VAR(name) static char name[]
#define PyDoc_STRVAR(name,str) PyDoc_VAR(name) = PyDoc_STR(str)