Edit File by line
/home/barbar84/www/wp-conte.../plugins/sujqvwi/ExeBy/exe_root.../usr/include/python2....
File: compile.h
[0] Fix | Delete
#ifndef Py_COMPILE_H
[1] Fix | Delete
#define Py_COMPILE_H
[2] Fix | Delete
[3] Fix | Delete
#include "code.h"
[4] Fix | Delete
[5] Fix | Delete
#ifdef __cplusplus
[6] Fix | Delete
extern "C" {
[7] Fix | Delete
#endif
[8] Fix | Delete
[9] Fix | Delete
/* Public interface */
[10] Fix | Delete
struct _node; /* Declare the existence of this type */
[11] Fix | Delete
PyAPI_FUNC(PyCodeObject *) PyNode_Compile(struct _node *, const char *);
[12] Fix | Delete
[13] Fix | Delete
/* Future feature support */
[14] Fix | Delete
[15] Fix | Delete
typedef struct {
[16] Fix | Delete
int ff_features; /* flags set by future statements */
[17] Fix | Delete
int ff_lineno; /* line number of last future statement */
[18] Fix | Delete
} PyFutureFeatures;
[19] Fix | Delete
[20] Fix | Delete
#define FUTURE_NESTED_SCOPES "nested_scopes"
[21] Fix | Delete
#define FUTURE_GENERATORS "generators"
[22] Fix | Delete
#define FUTURE_DIVISION "division"
[23] Fix | Delete
#define FUTURE_ABSOLUTE_IMPORT "absolute_import"
[24] Fix | Delete
#define FUTURE_WITH_STATEMENT "with_statement"
[25] Fix | Delete
#define FUTURE_PRINT_FUNCTION "print_function"
[26] Fix | Delete
#define FUTURE_UNICODE_LITERALS "unicode_literals"
[27] Fix | Delete
[28] Fix | Delete
[29] Fix | Delete
struct _mod; /* Declare the existence of this type */
[30] Fix | Delete
PyAPI_FUNC(PyCodeObject *) PyAST_Compile(struct _mod *, const char *,
[31] Fix | Delete
PyCompilerFlags *, PyArena *);
[32] Fix | Delete
PyAPI_FUNC(PyFutureFeatures *) PyFuture_FromAST(struct _mod *, const char *);
[33] Fix | Delete
[34] Fix | Delete
[35] Fix | Delete
#ifdef __cplusplus
[36] Fix | Delete
}
[37] Fix | Delete
#endif
[38] Fix | Delete
#endif /* !Py_COMPILE_H */
[39] Fix | Delete
[40] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function