Guido van Rossum | f70e43a | 1991-02-19 12:39:46 +0000 | [diff] [blame] | 1 | |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 2 | /* Interfaces to parse and execute pieces of python code */ |
| 3 | |
Fred Drake | 3cf4d2b | 2000-07-09 00:55:06 +0000 | [diff] [blame] | 4 | #ifndef Py_PYTHONRUN_H |
| 5 | #define Py_PYTHONRUN_H |
| 6 | #ifdef __cplusplus |
| 7 | extern "C" { |
| 8 | #endif |
Guido van Rossum | 57d8e3f | 1997-07-19 19:50:52 +0000 | [diff] [blame] | 9 | |
Benjamin Peterson | 466a782 | 2009-07-02 21:44:01 +0000 | [diff] [blame] | 10 | #define PyCF_MASK (CO_FUTURE_DIVISION | CO_FUTURE_ABSOLUTE_IMPORT | \ |
| 11 | CO_FUTURE_WITH_STATEMENT | CO_FUTURE_PRINT_FUNCTION | \ |
| 12 | CO_FUTURE_UNICODE_LITERALS | CO_FUTURE_BARRY_AS_BDFL) |
Benjamin Peterson | ffeaa88 | 2009-07-02 21:54:36 +0000 | [diff] [blame] | 13 | #define PyCF_MASK_OBSOLETE (CO_NESTED) |
Just van Rossum | 3aaf42c | 2003-02-10 08:21:10 +0000 | [diff] [blame] | 14 | #define PyCF_SOURCE_IS_UTF8 0x0100 |
Guido van Rossum | 4b499dd3 | 2003-02-13 22:07:59 +0000 | [diff] [blame] | 15 | #define PyCF_DONT_IMPLY_DEDENT 0x0200 |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 16 | #define PyCF_ONLY_AST 0x0400 |
Benjamin Peterson | f5b5224 | 2009-03-02 23:31:26 +0000 | [diff] [blame] | 17 | #define PyCF_IGNORE_COOKIE 0x0800 |
Tim Peters | e2c18e9 | 2001-08-17 20:47:47 +0000 | [diff] [blame] | 18 | |
Martin v. Löwis | 4d0d471 | 2010-12-03 20:14:31 +0000 | [diff] [blame] | 19 | #ifndef Py_LIMITED_API |
Jeremy Hylton | 9f324e9 | 2001-03-01 22:59:14 +0000 | [diff] [blame] | 20 | typedef struct { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 21 | int cf_flags; /* bitmask of CO_xxx flags relevant to future */ |
Jeremy Hylton | 9f324e9 | 2001-03-01 22:59:14 +0000 | [diff] [blame] | 22 | } PyCompilerFlags; |
Martin v. Löwis | 4d0d471 | 2010-12-03 20:14:31 +0000 | [diff] [blame] | 23 | #endif |
Jeremy Hylton | 9f324e9 | 2001-03-01 22:59:14 +0000 | [diff] [blame] | 24 | |
Martin v. Löwis | 790465f | 2008-04-05 20:41:37 +0000 | [diff] [blame] | 25 | PyAPI_FUNC(void) Py_SetProgramName(wchar_t *); |
| 26 | PyAPI_FUNC(wchar_t *) Py_GetProgramName(void); |
Guido van Rossum | 66d4b90 | 1998-02-06 22:28:05 +0000 | [diff] [blame] | 27 | |
Martin v. Löwis | 790465f | 2008-04-05 20:41:37 +0000 | [diff] [blame] | 28 | PyAPI_FUNC(void) Py_SetPythonHome(wchar_t *); |
| 29 | PyAPI_FUNC(wchar_t *) Py_GetPythonHome(void); |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 30 | |
Mark Hammond | 91a681d | 2002-08-12 07:21:58 +0000 | [diff] [blame] | 31 | PyAPI_FUNC(void) Py_Initialize(void); |
Martin v. Löwis | 336e85f | 2004-08-19 11:31:58 +0000 | [diff] [blame] | 32 | PyAPI_FUNC(void) Py_InitializeEx(int); |
Mark Hammond | 91a681d | 2002-08-12 07:21:58 +0000 | [diff] [blame] | 33 | PyAPI_FUNC(void) Py_Finalize(void); |
| 34 | PyAPI_FUNC(int) Py_IsInitialized(void); |
| 35 | PyAPI_FUNC(PyThreadState *) Py_NewInterpreter(void); |
| 36 | PyAPI_FUNC(void) Py_EndInterpreter(PyThreadState *); |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 37 | |
Martin v. Löwis | 4d0d471 | 2010-12-03 20:14:31 +0000 | [diff] [blame] | 38 | #ifndef Py_LIMITED_API |
| 39 | PyAPI_FUNC(int) PyRun_SimpleStringFlags(const char *, PyCompilerFlags *); |
Martin v. Löwis | 056a69c | 2006-03-01 16:55:42 +0000 | [diff] [blame] | 40 | PyAPI_FUNC(int) PyRun_AnyFileFlags(FILE *, const char *, PyCompilerFlags *); |
Victor Stinner | 00676d1 | 2010-12-27 01:49:31 +0000 | [diff] [blame] | 41 | PyAPI_FUNC(int) PyRun_AnyFileExFlags( |
| 42 | FILE *fp, |
| 43 | const char *filename, /* decoded from the filesystem encoding */ |
| 44 | int closeit, |
| 45 | PyCompilerFlags *flags); |
| 46 | PyAPI_FUNC(int) PyRun_SimpleFileExFlags( |
| 47 | FILE *fp, |
| 48 | const char *filename, /* decoded from the filesystem encoding */ |
| 49 | int closeit, |
| 50 | PyCompilerFlags *flags); |
| 51 | PyAPI_FUNC(int) PyRun_InteractiveOneFlags( |
| 52 | FILE *fp, |
| 53 | const char *filename, /* decoded from the filesystem encoding */ |
| 54 | PyCompilerFlags *flags); |
| 55 | PyAPI_FUNC(int) PyRun_InteractiveLoopFlags( |
| 56 | FILE *fp, |
| 57 | const char *filename, /* decoded from the filesystem encoding */ |
| 58 | PyCompilerFlags *flags); |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 59 | |
Victor Stinner | 00676d1 | 2010-12-27 01:49:31 +0000 | [diff] [blame] | 60 | PyAPI_FUNC(struct _mod *) PyParser_ASTFromString( |
| 61 | const char *s, |
| 62 | const char *filename, /* decoded from the filesystem encoding */ |
| 63 | int start, |
| 64 | PyCompilerFlags *flags, |
| 65 | PyArena *arena); |
| 66 | PyAPI_FUNC(struct _mod *) PyParser_ASTFromFile( |
| 67 | FILE *fp, |
| 68 | const char *filename, /* decoded from the filesystem encoding */ |
| 69 | const char* enc, |
| 70 | int start, |
| 71 | char *ps1, |
| 72 | char *ps2, |
| 73 | PyCompilerFlags *flags, |
| 74 | int *errcode, |
| 75 | PyArena *arena); |
Martin v. Löwis | 4d0d471 | 2010-12-03 20:14:31 +0000 | [diff] [blame] | 76 | #endif |
| 77 | |
| 78 | #ifndef PyParser_SimpleParseString |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 79 | #define PyParser_SimpleParseString(S, B) \ |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 80 | PyParser_SimpleParseStringFlags(S, B, 0) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 81 | #define PyParser_SimpleParseFile(FP, S, B) \ |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 82 | PyParser_SimpleParseFileFlags(FP, S, B, 0) |
Martin v. Löwis | 4d0d471 | 2010-12-03 20:14:31 +0000 | [diff] [blame] | 83 | #endif |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 84 | PyAPI_FUNC(struct _node *) PyParser_SimpleParseStringFlags(const char *, int, |
| 85 | int); |
Martin v. Löwis | 95292d6 | 2002-12-11 14:04:59 +0000 | [diff] [blame] | 86 | PyAPI_FUNC(struct _node *) PyParser_SimpleParseFileFlags(FILE *, const char *, |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 87 | int, int); |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 88 | |
Martin v. Löwis | 4d0d471 | 2010-12-03 20:14:31 +0000 | [diff] [blame] | 89 | #ifndef Py_LIMITED_API |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 90 | PyAPI_FUNC(PyObject *) PyRun_StringFlags(const char *, int, PyObject *, |
| 91 | PyObject *, PyCompilerFlags *); |
Guido van Rossum | 5b72218 | 1993-03-30 17:46:03 +0000 | [diff] [blame] | 92 | |
Victor Stinner | 00676d1 | 2010-12-27 01:49:31 +0000 | [diff] [blame] | 93 | PyAPI_FUNC(PyObject *) PyRun_FileExFlags( |
| 94 | FILE *fp, |
| 95 | const char *filename, /* decoded from the filesystem encoding */ |
| 96 | int start, |
| 97 | PyObject *globals, |
| 98 | PyObject *locals, |
| 99 | int closeit, |
| 100 | PyCompilerFlags *flags); |
Martin v. Löwis | 4d0d471 | 2010-12-03 20:14:31 +0000 | [diff] [blame] | 101 | #endif |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 102 | |
Martin v. Löwis | 4d0d471 | 2010-12-03 20:14:31 +0000 | [diff] [blame] | 103 | #ifdef Py_LIMITED_API |
Martin v. Löwis | 0d012f2 | 2010-12-04 12:00:49 +0000 | [diff] [blame] | 104 | PyAPI_FUNC(PyObject *) Py_CompileString(const char *, const char *, int); |
Martin v. Löwis | 4d0d471 | 2010-12-03 20:14:31 +0000 | [diff] [blame] | 105 | #else |
Georg Brandl | 8334fd9 | 2010-12-04 10:26:46 +0000 | [diff] [blame] | 106 | #define Py_CompileString(str, p, s) Py_CompileStringExFlags(str, p, s, NULL, -1) |
| 107 | #define Py_CompileStringFlags(str, p, s, f) Py_CompileStringExFlags(str, p, s, f, -1) |
Victor Stinner | 00676d1 | 2010-12-27 01:49:31 +0000 | [diff] [blame] | 108 | PyAPI_FUNC(PyObject *) Py_CompileStringExFlags( |
| 109 | const char *str, |
| 110 | const char *filename, /* decoded from the filesystem encoding */ |
| 111 | int start, |
| 112 | PyCompilerFlags *flags, |
| 113 | int optimize); |
Martin v. Löwis | 4d0d471 | 2010-12-03 20:14:31 +0000 | [diff] [blame] | 114 | #endif |
Victor Stinner | 00676d1 | 2010-12-27 01:49:31 +0000 | [diff] [blame] | 115 | PyAPI_FUNC(struct symtable *) Py_SymtableString( |
| 116 | const char *str, |
| 117 | const char *filename, /* decoded from the filesystem encoding */ |
| 118 | int start); |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 119 | |
Mark Hammond | 91a681d | 2002-08-12 07:21:58 +0000 | [diff] [blame] | 120 | PyAPI_FUNC(void) PyErr_Print(void); |
| 121 | PyAPI_FUNC(void) PyErr_PrintEx(int); |
| 122 | PyAPI_FUNC(void) PyErr_Display(PyObject *, PyObject *, PyObject *); |
Guido van Rossum | c6cf1dd | 1994-09-07 14:35:10 +0000 | [diff] [blame] | 123 | |
Collin Winter | 670e692 | 2007-03-21 02:57:17 +0000 | [diff] [blame] | 124 | /* Py_PyAtExit is for the atexit module, Py_AtExit is for low-level |
| 125 | * exit functions. |
| 126 | */ |
Martin v. Löwis | 4d0d471 | 2010-12-03 20:14:31 +0000 | [diff] [blame] | 127 | #ifndef Py_LIMITED_API |
Collin Winter | 670e692 | 2007-03-21 02:57:17 +0000 | [diff] [blame] | 128 | PyAPI_FUNC(void) _Py_PyAtExit(void (*func)(void)); |
Martin v. Löwis | 4d0d471 | 2010-12-03 20:14:31 +0000 | [diff] [blame] | 129 | #endif |
Mark Hammond | 91a681d | 2002-08-12 07:21:58 +0000 | [diff] [blame] | 130 | PyAPI_FUNC(int) Py_AtExit(void (*func)(void)); |
Guido van Rossum | a330996 | 1993-07-28 09:05:47 +0000 | [diff] [blame] | 131 | |
Mark Hammond | 91a681d | 2002-08-12 07:21:58 +0000 | [diff] [blame] | 132 | PyAPI_FUNC(void) Py_Exit(int); |
Fred Drake | 3cf4d2b | 2000-07-09 00:55:06 +0000 | [diff] [blame] | 133 | |
Gregory P. Smith | fb94c5f | 2010-03-14 06:49:55 +0000 | [diff] [blame] | 134 | /* Restore signals that the interpreter has called SIG_IGN on to SIG_DFL. */ |
Martin v. Löwis | 4d0d471 | 2010-12-03 20:14:31 +0000 | [diff] [blame] | 135 | #ifndef Py_LIMITED_API |
Gregory P. Smith | fb94c5f | 2010-03-14 06:49:55 +0000 | [diff] [blame] | 136 | PyAPI_FUNC(void) _Py_RestoreSignals(void); |
| 137 | |
Martin v. Löwis | 95292d6 | 2002-12-11 14:04:59 +0000 | [diff] [blame] | 138 | PyAPI_FUNC(int) Py_FdIsInteractive(FILE *, const char *); |
Martin v. Löwis | 4d0d471 | 2010-12-03 20:14:31 +0000 | [diff] [blame] | 139 | #endif |
Guido van Rossum | 5c4998b | 1997-02-14 19:51:34 +0000 | [diff] [blame] | 140 | |
Mark Hammond | fe51c6d | 2002-08-02 02:27:13 +0000 | [diff] [blame] | 141 | /* Bootstrap */ |
Martin v. Löwis | 790465f | 2008-04-05 20:41:37 +0000 | [diff] [blame] | 142 | PyAPI_FUNC(int) Py_Main(int argc, wchar_t **argv); |
Mark Hammond | fe51c6d | 2002-08-02 02:27:13 +0000 | [diff] [blame] | 143 | |
Martin v. Löwis | 4d0d471 | 2010-12-03 20:14:31 +0000 | [diff] [blame] | 144 | #ifndef Py_LIMITED_API |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 145 | /* Use macros for a bunch of old variants */ |
| 146 | #define PyRun_String(str, s, g, l) PyRun_StringFlags(str, s, g, l, NULL) |
| 147 | #define PyRun_AnyFile(fp, name) PyRun_AnyFileExFlags(fp, name, 0, NULL) |
| 148 | #define PyRun_AnyFileEx(fp, name, closeit) \ |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 149 | PyRun_AnyFileExFlags(fp, name, closeit, NULL) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 150 | #define PyRun_AnyFileFlags(fp, name, flags) \ |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 151 | PyRun_AnyFileExFlags(fp, name, 0, flags) |
Mark Hammond | f3ddaee | 2005-10-23 10:53:06 +0000 | [diff] [blame] | 152 | #define PyRun_SimpleString(s) PyRun_SimpleStringFlags(s, NULL) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 153 | #define PyRun_SimpleFile(f, p) PyRun_SimpleFileExFlags(f, p, 0, NULL) |
| 154 | #define PyRun_SimpleFileEx(f, p, c) PyRun_SimpleFileExFlags(f, p, c, NULL) |
| 155 | #define PyRun_InteractiveOne(f, p) PyRun_InteractiveOneFlags(f, p, NULL) |
| 156 | #define PyRun_InteractiveLoop(f, p) PyRun_InteractiveLoopFlags(f, p, NULL) |
| 157 | #define PyRun_File(fp, p, s, g, l) \ |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 158 | PyRun_FileExFlags(fp, p, s, g, l, 0, NULL) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 159 | #define PyRun_FileEx(fp, p, s, g, l, c) \ |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 160 | PyRun_FileExFlags(fp, p, s, g, l, c, NULL) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 161 | #define PyRun_FileFlags(fp, p, s, g, l, flags) \ |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 162 | PyRun_FileExFlags(fp, p, s, g, l, 0, flags) |
Martin v. Löwis | 4d0d471 | 2010-12-03 20:14:31 +0000 | [diff] [blame] | 163 | #endif |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 164 | |
Guido van Rossum | 57d8e3f | 1997-07-19 19:50:52 +0000 | [diff] [blame] | 165 | /* In getpath.c */ |
Martin v. Löwis | 790465f | 2008-04-05 20:41:37 +0000 | [diff] [blame] | 166 | PyAPI_FUNC(wchar_t *) Py_GetProgramFullPath(void); |
| 167 | PyAPI_FUNC(wchar_t *) Py_GetPrefix(void); |
| 168 | PyAPI_FUNC(wchar_t *) Py_GetExecPrefix(void); |
| 169 | PyAPI_FUNC(wchar_t *) Py_GetPath(void); |
Kristján Valur Jónsson | 3b69db2 | 2010-09-27 05:32:54 +0000 | [diff] [blame] | 170 | PyAPI_FUNC(void) Py_SetPath(const wchar_t *); |
Martin v. Löwis | 4d0d471 | 2010-12-03 20:14:31 +0000 | [diff] [blame] | 171 | #ifdef MS_WINDOWS |
| 172 | int _Py_CheckPython3(); |
| 173 | #endif |
Guido van Rossum | 57d8e3f | 1997-07-19 19:50:52 +0000 | [diff] [blame] | 174 | |
| 175 | /* In their own files */ |
Mark Hammond | a290527 | 2002-07-29 13:42:14 +0000 | [diff] [blame] | 176 | PyAPI_FUNC(const char *) Py_GetVersion(void); |
| 177 | PyAPI_FUNC(const char *) Py_GetPlatform(void); |
| 178 | PyAPI_FUNC(const char *) Py_GetCopyright(void); |
| 179 | PyAPI_FUNC(const char *) Py_GetCompiler(void); |
| 180 | PyAPI_FUNC(const char *) Py_GetBuildInfo(void); |
Martin v. Löwis | 4d0d471 | 2010-12-03 20:14:31 +0000 | [diff] [blame] | 181 | #ifndef Py_LIMITED_API |
Georg Brandl | 1ca2e79 | 2011-03-05 20:51:24 +0100 | [diff] [blame] | 182 | PyAPI_FUNC(const char *) _Py_hgidentifier(void); |
| 183 | PyAPI_FUNC(const char *) _Py_hgversion(void); |
Martin v. Löwis | 4d0d471 | 2010-12-03 20:14:31 +0000 | [diff] [blame] | 184 | #endif |
Guido van Rossum | 57d8e3f | 1997-07-19 19:50:52 +0000 | [diff] [blame] | 185 | |
Guido van Rossum | 29e46a9 | 1997-08-02 02:56:48 +0000 | [diff] [blame] | 186 | /* Internal -- various one-time initializations */ |
Martin v. Löwis | 4d0d471 | 2010-12-03 20:14:31 +0000 | [diff] [blame] | 187 | #ifndef Py_LIMITED_API |
Mark Hammond | 91a681d | 2002-08-12 07:21:58 +0000 | [diff] [blame] | 188 | PyAPI_FUNC(PyObject *) _PyBuiltin_Init(void); |
| 189 | PyAPI_FUNC(PyObject *) _PySys_Init(void); |
| 190 | PyAPI_FUNC(void) _PyImport_Init(void); |
Mark Hammond | a290527 | 2002-07-29 13:42:14 +0000 | [diff] [blame] | 191 | PyAPI_FUNC(void) _PyExc_Init(void); |
Just van Rossum | 52e14d6 | 2002-12-30 22:08:05 +0000 | [diff] [blame] | 192 | PyAPI_FUNC(void) _PyImportHooks_Init(void); |
Neal Norwitz | b2501f4 | 2002-12-31 03:42:13 +0000 | [diff] [blame] | 193 | PyAPI_FUNC(int) _PyFrame_Init(void); |
Michael W. Hudson | ba283e2 | 2005-05-27 15:23:20 +0000 | [diff] [blame] | 194 | PyAPI_FUNC(void) _PyFloat_Init(void); |
Christian Heimes | 9c4756e | 2008-05-26 13:22:05 +0000 | [diff] [blame] | 195 | PyAPI_FUNC(int) PyByteArray_Init(void); |
Antoine Pitrou | 86838b0 | 2012-02-21 19:03:47 +0100 | [diff] [blame] | 196 | PyAPI_FUNC(void) _PyRandom_Init(void); |
Martin v. Löwis | 4d0d471 | 2010-12-03 20:14:31 +0000 | [diff] [blame] | 197 | #endif |
Guido van Rossum | 29e46a9 | 1997-08-02 02:56:48 +0000 | [diff] [blame] | 198 | |
Guido van Rossum | 8e5e446 | 1997-08-12 14:57:21 +0000 | [diff] [blame] | 199 | /* Various internal finalizers */ |
Martin v. Löwis | 4d0d471 | 2010-12-03 20:14:31 +0000 | [diff] [blame] | 200 | #ifndef Py_LIMITED_API |
Mark Hammond | a290527 | 2002-07-29 13:42:14 +0000 | [diff] [blame] | 201 | PyAPI_FUNC(void) _PyExc_Fini(void); |
| 202 | PyAPI_FUNC(void) _PyImport_Fini(void); |
| 203 | PyAPI_FUNC(void) PyMethod_Fini(void); |
| 204 | PyAPI_FUNC(void) PyFrame_Fini(void); |
| 205 | PyAPI_FUNC(void) PyCFunction_Fini(void); |
Christian Heimes | 77c02eb | 2008-02-09 02:18:51 +0000 | [diff] [blame] | 206 | PyAPI_FUNC(void) PyDict_Fini(void); |
Mark Hammond | a290527 | 2002-07-29 13:42:14 +0000 | [diff] [blame] | 207 | PyAPI_FUNC(void) PyTuple_Fini(void); |
Raymond Hettinger | fb09f0e | 2004-10-07 03:58:07 +0000 | [diff] [blame] | 208 | PyAPI_FUNC(void) PyList_Fini(void); |
Raymond Hettinger | d794666 | 2005-08-01 21:39:29 +0000 | [diff] [blame] | 209 | PyAPI_FUNC(void) PySet_Fini(void); |
Christian Heimes | 72b710a | 2008-05-26 13:28:38 +0000 | [diff] [blame] | 210 | PyAPI_FUNC(void) PyBytes_Fini(void); |
Christian Heimes | 9c4756e | 2008-05-26 13:22:05 +0000 | [diff] [blame] | 211 | PyAPI_FUNC(void) PyByteArray_Fini(void); |
Mark Hammond | a290527 | 2002-07-29 13:42:14 +0000 | [diff] [blame] | 212 | PyAPI_FUNC(void) PyFloat_Fini(void); |
| 213 | PyAPI_FUNC(void) PyOS_FiniInterrupts(void); |
Antoine Pitrou | 696e035 | 2010-08-08 22:18:46 +0000 | [diff] [blame] | 214 | PyAPI_FUNC(void) _PyGC_Fini(void); |
Antoine Pitrou | f34a0cd | 2011-11-18 20:14:34 +0100 | [diff] [blame] | 215 | PyAPI_FUNC(void) PySlice_Fini(void); |
Antoine Pitrou | 0d5e52d | 2011-05-04 20:02:30 +0200 | [diff] [blame] | 216 | |
| 217 | PyAPI_DATA(PyThreadState *) _Py_Finalizing; |
Martin v. Löwis | 4d0d471 | 2010-12-03 20:14:31 +0000 | [diff] [blame] | 218 | #endif |
Guido van Rossum | 8e5e446 | 1997-08-12 14:57:21 +0000 | [diff] [blame] | 219 | |
Guido van Rossum | 3fb1aea | 1997-08-12 15:14:22 +0000 | [diff] [blame] | 220 | /* Stuff with no proper home (yet) */ |
Martin v. Löwis | 4d0d471 | 2010-12-03 20:14:31 +0000 | [diff] [blame] | 221 | #ifndef Py_LIMITED_API |
Martin v. Löwis | 566f6af | 2002-10-26 14:39:10 +0000 | [diff] [blame] | 222 | PyAPI_FUNC(char *) PyOS_Readline(FILE *, FILE *, char *); |
Martin v. Löwis | 4d0d471 | 2010-12-03 20:14:31 +0000 | [diff] [blame] | 223 | #endif |
Mark Hammond | 5d54667 | 2002-08-12 13:06:35 +0000 | [diff] [blame] | 224 | PyAPI_DATA(int) (*PyOS_InputHook)(void); |
Martin v. Löwis | 566f6af | 2002-10-26 14:39:10 +0000 | [diff] [blame] | 225 | PyAPI_DATA(char) *(*PyOS_ReadlineFunctionPointer)(FILE *, FILE *, char *); |
Martin v. Löwis | 4d0d471 | 2010-12-03 20:14:31 +0000 | [diff] [blame] | 226 | #ifndef Py_LIMITED_API |
Jason Tishler | 0d2a75c | 2004-08-09 15:02:30 +0000 | [diff] [blame] | 227 | PyAPI_DATA(PyThreadState*) _PyOS_ReadlineTState; |
Martin v. Löwis | 4d0d471 | 2010-12-03 20:14:31 +0000 | [diff] [blame] | 228 | #endif |
Fredrik Lundh | 2f15b25 | 2000-08-27 19:15:31 +0000 | [diff] [blame] | 229 | |
| 230 | /* Stack size, in "pointers" (so we get extra safety margins |
| 231 | on 64-bit platforms). On a 32-bit platform, this translates |
| 232 | to a 8k margin. */ |
| 233 | #define PYOS_STACK_MARGIN 2048 |
| 234 | |
Amaury Forgeot d'Arc | 3d17a5c | 2008-06-13 01:09:34 +0000 | [diff] [blame] | 235 | #if defined(WIN32) && !defined(MS_WIN64) && defined(_MSC_VER) && _MSC_VER >= 1300 |
Fredrik Lundh | 2f15b25 | 2000-08-27 19:15:31 +0000 | [diff] [blame] | 236 | /* Enable stack checking under Microsoft C */ |
| 237 | #define USE_STACKCHECK |
| 238 | #endif |
| 239 | |
Jack Jansen | 275abb3 | 2000-08-07 21:00:42 +0000 | [diff] [blame] | 240 | #ifdef USE_STACKCHECK |
Fredrik Lundh | 2f15b25 | 2000-08-27 19:15:31 +0000 | [diff] [blame] | 241 | /* Check that we aren't overflowing our stack */ |
Mark Hammond | 91a681d | 2002-08-12 07:21:58 +0000 | [diff] [blame] | 242 | PyAPI_FUNC(int) PyOS_CheckStack(void); |
Jack Jansen | 275abb3 | 2000-08-07 21:00:42 +0000 | [diff] [blame] | 243 | #endif |
Guido van Rossum | 3fb1aea | 1997-08-12 15:14:22 +0000 | [diff] [blame] | 244 | |
Guido van Rossum | c7247ce | 2000-09-16 16:31:31 +0000 | [diff] [blame] | 245 | /* Signals */ |
| 246 | typedef void (*PyOS_sighandler_t)(int); |
Mark Hammond | 91a681d | 2002-08-12 07:21:58 +0000 | [diff] [blame] | 247 | PyAPI_FUNC(PyOS_sighandler_t) PyOS_getsig(int); |
| 248 | PyAPI_FUNC(PyOS_sighandler_t) PyOS_setsig(int, PyOS_sighandler_t); |
Guido van Rossum | c7247ce | 2000-09-16 16:31:31 +0000 | [diff] [blame] | 249 | |
Georg Brandl | 2daf6ae | 2012-02-20 19:54:16 +0100 | [diff] [blame] | 250 | /* Random */ |
| 251 | PyAPI_FUNC(int) _PyOS_URandom (void *buffer, Py_ssize_t size); |
Guido van Rossum | c7247ce | 2000-09-16 16:31:31 +0000 | [diff] [blame] | 252 | |
Guido van Rossum | a330996 | 1993-07-28 09:05:47 +0000 | [diff] [blame] | 253 | #ifdef __cplusplus |
| 254 | } |
| 255 | #endif |
| 256 | #endif /* !Py_PYTHONRUN_H */ |