Edit File by line
/home/barbar84/www/wp-conte.../plugins/sujqvwi/ExeBy/exe_root.../usr/include/python2....
File: errcode.h
#ifndef Py_ERRCODE_H
[0] Fix | Delete
#define Py_ERRCODE_H
[1] Fix | Delete
#ifdef __cplusplus
[2] Fix | Delete
extern "C" {
[3] Fix | Delete
#endif
[4] Fix | Delete
[5] Fix | Delete
[6] Fix | Delete
/* Error codes passed around between file input, tokenizer, parser and
[7] Fix | Delete
interpreter. This is necessary so we can turn them into Python
[8] Fix | Delete
exceptions at a higher level. Note that some errors have a
[9] Fix | Delete
slightly different meaning when passed from the tokenizer to the
[10] Fix | Delete
parser than when passed from the parser to the interpreter; e.g.
[11] Fix | Delete
the parser only returns E_EOF when it hits EOF immediately, and it
[12] Fix | Delete
never returns E_OK. */
[13] Fix | Delete
[14] Fix | Delete
#define E_OK 10 /* No error */
[15] Fix | Delete
#define E_EOF 11 /* End Of File */
[16] Fix | Delete
#define E_INTR 12 /* Interrupted */
[17] Fix | Delete
#define E_TOKEN 13 /* Bad token */
[18] Fix | Delete
#define E_SYNTAX 14 /* Syntax error */
[19] Fix | Delete
#define E_NOMEM 15 /* Ran out of memory */
[20] Fix | Delete
#define E_DONE 16 /* Parsing complete */
[21] Fix | Delete
#define E_ERROR 17 /* Execution error */
[22] Fix | Delete
#define E_TABSPACE 18 /* Inconsistent mixing of tabs and spaces */
[23] Fix | Delete
#define E_OVERFLOW 19 /* Node had too many children */
[24] Fix | Delete
#define E_TOODEEP 20 /* Too many indentation levels */
[25] Fix | Delete
#define E_DEDENT 21 /* No matching outer block for dedent */
[26] Fix | Delete
#define E_DECODE 22 /* Error in decoding into Unicode */
[27] Fix | Delete
#define E_EOFS 23 /* EOF in triple-quoted string */
[28] Fix | Delete
#define E_EOLS 24 /* EOL in single-quoted string */
[29] Fix | Delete
#define E_LINECONT 25 /* Unexpected characters after a line continuation */
[30] Fix | Delete
#define E_IO 26 /* I/O error */
[31] Fix | Delete
[32] Fix | Delete
#ifdef __cplusplus
[33] Fix | Delete
}
[34] Fix | Delete
#endif
[35] Fix | Delete
#endif /* !Py_ERRCODE_H */
[36] Fix | Delete
[37] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function