1992-08-04 09:41:02 -03:00
|
|
|
|
|
|
|
/* Python interpreter top-level routines, including init/exit */
|
|
|
|
|
1997-03-04 20:20:32 -04:00
|
|
|
#include "Python.h"
|
1992-08-04 09:41:02 -03:00
|
|
|
|
2005-10-20 16:59:25 -03:00
|
|
|
#include "Python-ast.h"
|
2007-04-24 21:17:39 -03:00
|
|
|
#undef Yield /* undefine macro conflicting with winbase.h */
|
1992-08-04 09:41:02 -03:00
|
|
|
#include "grammar.h"
|
|
|
|
#include "node.h"
|
2000-07-11 14:53:00 -03:00
|
|
|
#include "token.h"
|
1992-08-04 09:41:02 -03:00
|
|
|
#include "parsetok.h"
|
|
|
|
#include "errcode.h"
|
2005-10-20 16:59:25 -03:00
|
|
|
#include "code.h"
|
1992-08-04 09:41:02 -03:00
|
|
|
#include "compile.h"
|
2001-02-02 14:19:15 -04:00
|
|
|
#include "symtable.h"
|
2005-12-17 16:54:49 -04:00
|
|
|
#include "pyarena.h"
|
2005-10-20 16:59:25 -03:00
|
|
|
#include "ast.h"
|
1992-08-05 16:58:53 -03:00
|
|
|
#include "eval.h"
|
1994-09-14 10:31:04 -03:00
|
|
|
#include "marshal.h"
|
2009-10-20 18:29:37 -03:00
|
|
|
#include "abstract.h"
|
1992-08-04 09:41:02 -03:00
|
|
|
|
2006-06-10 09:23:46 -03:00
|
|
|
#ifdef HAVE_SIGNAL_H
|
1992-10-18 15:53:57 -03:00
|
|
|
#include <signal.h>
|
2006-06-10 09:23:46 -03:00
|
|
|
#endif
|
1992-10-18 15:53:57 -03:00
|
|
|
|
2009-01-02 16:47:27 -04:00
|
|
|
#ifdef MS_WINDOWS
|
2009-01-02 16:32:55 -04:00
|
|
|
#include "malloc.h" /* for alloca */
|
2009-01-02 16:47:27 -04:00
|
|
|
#endif
|
2009-01-02 16:32:55 -04:00
|
|
|
|
2003-03-05 11:13:47 -04:00
|
|
|
#ifdef HAVE_LANGINFO_H
|
|
|
|
#include <locale.h>
|
|
|
|
#include <langinfo.h>
|
|
|
|
#endif
|
|
|
|
|
2002-06-30 12:26:10 -03:00
|
|
|
#ifdef MS_WINDOWS
|
1995-03-14 11:01:17 -04:00
|
|
|
#undef BYTE
|
|
|
|
#include "windows.h"
|
|
|
|
#endif
|
|
|
|
|
2006-03-04 15:58:13 -04:00
|
|
|
#ifndef Py_REF_DEBUG
|
2006-03-28 17:44:32 -04:00
|
|
|
#define PRINT_TOTAL_REFS()
|
2006-03-04 15:58:13 -04:00
|
|
|
#else /* Py_REF_DEBUG */
|
2006-03-28 17:44:32 -04:00
|
|
|
#define PRINT_TOTAL_REFS() fprintf(stderr, \
|
|
|
|
"[%" PY_FORMAT_SIZE_T "d refs]\n", \
|
2006-04-12 14:06:05 -03:00
|
|
|
_Py_GetRefTotal())
|
2006-03-04 15:58:13 -04:00
|
|
|
#endif
|
|
|
|
|
2006-04-12 23:06:09 -03:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2000-07-22 15:47:25 -03:00
|
|
|
extern char *Py_GetPath(void);
|
1992-08-04 09:41:02 -03:00
|
|
|
|
1997-03-04 20:20:32 -04:00
|
|
|
extern grammar _PyParser_Grammar; /* From graminit.c */
|
1992-08-04 09:41:02 -03:00
|
|
|
|
1993-11-01 12:28:59 -04:00
|
|
|
/* Forward */
|
2000-07-09 00:09:57 -03:00
|
|
|
static void initmain(void);
|
|
|
|
static void initsite(void);
|
2005-10-20 16:59:25 -03:00
|
|
|
static PyObject *run_mod(mod_ty, const char *, PyObject *, PyObject *,
|
2005-12-17 16:54:49 -04:00
|
|
|
PyCompilerFlags *, PyArena *);
|
2002-12-11 10:04:59 -04:00
|
|
|
static PyObject *run_pyc_file(FILE *, const char *, PyObject *, PyObject *,
|
2001-03-21 22:47:58 -04:00
|
|
|
PyCompilerFlags *);
|
2000-07-09 00:09:57 -03:00
|
|
|
static void err_input(perrdetail *);
|
|
|
|
static void initsigs(void);
|
2009-10-20 18:29:37 -03:00
|
|
|
static void wait_for_thread_shutdown(void);
|
2000-07-09 00:09:57 -03:00
|
|
|
static void call_sys_exitfunc(void);
|
|
|
|
static void call_ll_exitfuncs(void);
|
2000-07-22 15:47:25 -03:00
|
|
|
extern void _PyUnicode_Init(void);
|
|
|
|
extern void _PyUnicode_Fini(void);
|
2000-03-10 19:03:54 -04:00
|
|
|
|
2003-04-19 12:41:53 -03:00
|
|
|
#ifdef WITH_THREAD
|
|
|
|
extern void _PyGILState_Init(PyInterpreterState *, PyThreadState *);
|
|
|
|
extern void _PyGILState_Fini(void);
|
|
|
|
#endif /* WITH_THREAD */
|
|
|
|
|
1997-03-04 20:20:32 -04:00
|
|
|
int Py_DebugFlag; /* Needed by parser.c */
|
|
|
|
int Py_VerboseFlag; /* Needed by import.c */
|
1997-02-14 15:45:36 -04:00
|
|
|
int Py_InteractiveFlag; /* Needed by Py_FdIsInteractive() below */
|
2007-03-06 20:34:46 -04:00
|
|
|
int Py_InspectFlag; /* Needed to determine whether to exit at SystemError */
|
1997-08-29 19:32:42 -03:00
|
|
|
int Py_NoSiteFlag; /* Suppress 'import site' */
|
Merged revisions 61750,61752,61754,61756,61760,61763,61768,61772,61775,61805,61809,61812,61819,61917,61920,61930,61933-61934 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/trunk-bytearray
........
r61750 | christian.heimes | 2008-03-22 20:47:44 +0100 (Sat, 22 Mar 2008) | 1 line
Copied files from py3k w/o modifications
........
r61752 | christian.heimes | 2008-03-22 20:53:20 +0100 (Sat, 22 Mar 2008) | 7 lines
Take One
* Added initialization code, warnings, flags etc. to the appropriate places
* Added new buffer interface to string type
* Modified tests
* Modified Makefile.pre.in to compile the new files
* Added bytesobject.c to Python.h
........
r61754 | christian.heimes | 2008-03-22 21:22:19 +0100 (Sat, 22 Mar 2008) | 2 lines
Disabled bytearray.extend for now since it causes an infinite recursion
Fixed serveral unit tests
........
r61756 | christian.heimes | 2008-03-22 21:43:38 +0100 (Sat, 22 Mar 2008) | 5 lines
Added PyBytes support to several places:
str + bytearray
ord(bytearray)
bytearray(str, encoding)
........
r61760 | christian.heimes | 2008-03-22 21:56:32 +0100 (Sat, 22 Mar 2008) | 1 line
Fixed more unit tests related to type('') is not unicode
........
r61763 | christian.heimes | 2008-03-22 22:20:28 +0100 (Sat, 22 Mar 2008) | 2 lines
Fixed more unit tests
Fixed bytearray.extend
........
r61768 | christian.heimes | 2008-03-22 22:40:50 +0100 (Sat, 22 Mar 2008) | 1 line
Implemented old buffer interface for bytearray
........
r61772 | christian.heimes | 2008-03-22 23:24:52 +0100 (Sat, 22 Mar 2008) | 1 line
Added backport of the io module
........
r61775 | christian.heimes | 2008-03-23 03:50:49 +0100 (Sun, 23 Mar 2008) | 1 line
Fix str assignement to bytearray. Assignment of a str of size 1 is interpreted as a single byte
........
r61805 | christian.heimes | 2008-03-23 19:33:48 +0100 (Sun, 23 Mar 2008) | 3 lines
Fixed more tests
Fixed bytearray() comparsion with unicode()
Fixed iterator assignment of bytearray
........
r61809 | christian.heimes | 2008-03-23 21:02:21 +0100 (Sun, 23 Mar 2008) | 2 lines
str(bytesarray()) now returns the bytes and not the representation of the bytearray object
Enabled and fixed more unit tests
........
r61812 | christian.heimes | 2008-03-23 21:53:08 +0100 (Sun, 23 Mar 2008) | 3 lines
Clear error PyNumber_AsSsize_t() fails
Use CHARMASK for ob_svall access
disabled a test with memoryview again
........
r61819 | christian.heimes | 2008-03-23 23:05:57 +0100 (Sun, 23 Mar 2008) | 1 line
Untested updates to the PCBuild directory
........
r61917 | christian.heimes | 2008-03-26 00:57:06 +0100 (Wed, 26 Mar 2008) | 1 line
The type system of Python 2.6 has subtle differences to 3.0's. I've removed the Py_TPFLAGS_BASETYPE flags from bytearray for now. bytearray can't be subclasses until the issues with bytearray subclasses are fixed.
........
r61920 | christian.heimes | 2008-03-26 01:44:08 +0100 (Wed, 26 Mar 2008) | 2 lines
Disabled last failing test
I don't understand what the test is testing and how it suppose to work. Ka-Ping, please check it out.
........
r61930 | christian.heimes | 2008-03-26 12:46:18 +0100 (Wed, 26 Mar 2008) | 1 line
Re-enabled bytes warning code
........
r61933 | christian.heimes | 2008-03-26 13:20:46 +0100 (Wed, 26 Mar 2008) | 1 line
Fixed a bug in the new buffer protocol. The buffer slots weren't copied into a subclass.
........
r61934 | christian.heimes | 2008-03-26 13:25:09 +0100 (Wed, 26 Mar 2008) | 1 line
Re-enabled bytearray subclassing - all tests are passing.
........
2008-03-26 09:49:49 -03:00
|
|
|
int Py_BytesWarningFlag; /* Warn on str(bytes) and str(buffer) */
|
2008-01-07 13:09:35 -04:00
|
|
|
int Py_DontWriteBytecodeFlag; /* Suppress writing bytecode files (*.py[co]) */
|
2000-05-02 16:18:59 -03:00
|
|
|
int Py_UseClassExceptionsFlag = 1; /* Needed by bltinmodule.c: deprecated */
|
1998-02-06 18:27:24 -04:00
|
|
|
int Py_FrozenFlag; /* Needed by getpath.c */
|
2000-05-01 14:55:15 -03:00
|
|
|
int Py_UnicodeFlag = 0; /* Needed by compile.c */
|
2001-07-23 13:30:27 -03:00
|
|
|
int Py_IgnoreEnvironmentFlag; /* e.g. PYTHONPATH, PYTHONHOME */
|
2001-12-06 02:23:26 -04:00
|
|
|
/* _XXX Py_QnewFlag should go away in 2.3. It's true iff -Qnew is passed,
|
|
|
|
on the command line, and is used in 2.2 by ceval.c to make all "/" divisions
|
|
|
|
true divisions (which they will be in 2.3). */
|
|
|
|
int _Py_QnewFlag = 0;
|
2008-05-06 19:41:46 -03:00
|
|
|
int Py_NoUserSiteDirectory = 0; /* for -s and site.py */
|
1992-08-04 09:41:02 -03:00
|
|
|
|
2008-04-12 20:44:07 -03:00
|
|
|
/* PyModule_GetWarningsModule is no longer necessary as of 2.6
|
|
|
|
since _warnings is builtin. This API should not be used. */
|
|
|
|
PyObject *
|
|
|
|
PyModule_GetWarningsModule(void)
|
2003-07-15 20:03:55 -03:00
|
|
|
{
|
2008-04-12 20:44:07 -03:00
|
|
|
return PyImport_ImportModule("warnings");
|
2003-07-15 20:03:55 -03:00
|
|
|
}
|
2003-02-18 20:33:33 -04:00
|
|
|
|
1997-08-02 00:10:38 -03:00
|
|
|
static int initialized = 0;
|
|
|
|
|
2000-07-16 09:04:32 -03:00
|
|
|
/* API to access the initialized flag -- useful for esoteric use */
|
1997-08-22 01:20:13 -03:00
|
|
|
|
|
|
|
int
|
2000-07-22 15:47:25 -03:00
|
|
|
Py_IsInitialized(void)
|
1997-08-22 01:20:13 -03:00
|
|
|
{
|
|
|
|
return initialized;
|
|
|
|
}
|
|
|
|
|
1997-08-02 00:10:38 -03:00
|
|
|
/* Global initializations. Can be undone by Py_Finalize(). Don't
|
|
|
|
call this twice without an intervening Py_Finalize() call. When
|
|
|
|
initializations fail, a fatal error is issued and the function does
|
|
|
|
not return. On return, the first thread and interpreter state have
|
|
|
|
been created.
|
|
|
|
|
|
|
|
Locking: you must hold the interpreter lock while calling this.
|
|
|
|
(If the lock has not yet been initialized, that's equivalent to
|
|
|
|
having the lock, but you cannot use multiple threads.)
|
|
|
|
|
|
|
|
*/
|
1992-08-04 09:41:02 -03:00
|
|
|
|
2001-10-12 19:17:56 -03:00
|
|
|
static int
|
|
|
|
add_flag(int flag, const char *envs)
|
|
|
|
{
|
|
|
|
int env = atoi(envs);
|
|
|
|
if (flag < env)
|
|
|
|
flag = env;
|
|
|
|
if (flag < 1)
|
|
|
|
flag = 1;
|
|
|
|
return flag;
|
|
|
|
}
|
|
|
|
|
1992-08-04 09:41:02 -03:00
|
|
|
void
|
2004-08-19 08:31:58 -03:00
|
|
|
Py_InitializeEx(int install_sigs)
|
1992-08-04 09:41:02 -03:00
|
|
|
{
|
1997-08-02 00:10:38 -03:00
|
|
|
PyInterpreterState *interp;
|
|
|
|
PyThreadState *tstate;
|
|
|
|
PyObject *bimod, *sysmod;
|
|
|
|
char *p;
|
2008-08-24 02:04:52 -03:00
|
|
|
char *icodeset = NULL; /* On Windows, input codeset may theoretically
|
|
|
|
differ from output codeset. */
|
2008-06-01 04:20:46 -03:00
|
|
|
char *codeset = NULL;
|
|
|
|
char *errors = NULL;
|
|
|
|
int free_codeset = 0;
|
|
|
|
int overridden = 0;
|
2008-06-01 05:06:17 -03:00
|
|
|
PyObject *sys_stream, *sys_isatty;
|
2003-08-09 06:47:11 -03:00
|
|
|
#if defined(Py_USING_UNICODE) && defined(HAVE_LANGINFO_H) && defined(CODESET)
|
2008-06-01 04:20:46 -03:00
|
|
|
char *saved_locale, *loc_codeset;
|
|
|
|
#endif
|
|
|
|
#ifdef MS_WINDOWS
|
|
|
|
char ibuf[128];
|
|
|
|
char buf[128];
|
2003-08-09 06:47:11 -03:00
|
|
|
#endif
|
2001-08-16 05:21:42 -03:00
|
|
|
extern void _Py_ReadyTypes(void);
|
1997-08-02 00:10:38 -03:00
|
|
|
|
1997-08-29 19:32:42 -03:00
|
|
|
if (initialized)
|
1997-08-20 19:40:18 -03:00
|
|
|
return;
|
1997-08-29 19:32:42 -03:00
|
|
|
initialized = 1;
|
2003-04-17 12:24:21 -03:00
|
|
|
|
2001-07-23 13:30:27 -03:00
|
|
|
if ((p = Py_GETENV("PYTHONDEBUG")) && *p != '\0')
|
2001-10-12 19:17:56 -03:00
|
|
|
Py_DebugFlag = add_flag(Py_DebugFlag, p);
|
2001-07-23 13:30:27 -03:00
|
|
|
if ((p = Py_GETENV("PYTHONVERBOSE")) && *p != '\0')
|
2001-10-12 19:17:56 -03:00
|
|
|
Py_VerboseFlag = add_flag(Py_VerboseFlag, p);
|
2001-07-23 13:30:27 -03:00
|
|
|
if ((p = Py_GETENV("PYTHONOPTIMIZE")) && *p != '\0')
|
2001-10-12 19:17:56 -03:00
|
|
|
Py_OptimizeFlag = add_flag(Py_OptimizeFlag, p);
|
2008-01-07 13:09:35 -04:00
|
|
|
if ((p = Py_GETENV("PYTHONDONTWRITEBYTECODE")) && *p != '\0')
|
|
|
|
Py_DontWriteBytecodeFlag = add_flag(Py_DontWriteBytecodeFlag, p);
|
1997-08-02 00:10:38 -03:00
|
|
|
|
|
|
|
interp = PyInterpreterState_New();
|
|
|
|
if (interp == NULL)
|
|
|
|
Py_FatalError("Py_Initialize: can't make first interpreter");
|
|
|
|
|
|
|
|
tstate = PyThreadState_New(interp);
|
|
|
|
if (tstate == NULL)
|
|
|
|
Py_FatalError("Py_Initialize: can't make first thread");
|
|
|
|
(void) PyThreadState_Swap(tstate);
|
1992-08-04 09:41:02 -03:00
|
|
|
|
2001-08-16 05:21:42 -03:00
|
|
|
_Py_ReadyTypes();
|
2001-08-07 14:24:28 -03:00
|
|
|
|
2002-12-30 23:42:13 -04:00
|
|
|
if (!_PyFrame_Init())
|
2002-12-30 18:29:22 -04:00
|
|
|
Py_FatalError("Py_Initialize: can't init frames");
|
|
|
|
|
2002-12-30 23:42:13 -04:00
|
|
|
if (!_PyInt_Init())
|
2002-12-30 18:29:22 -04:00
|
|
|
Py_FatalError("Py_Initialize: can't init ints");
|
|
|
|
|
2009-03-20 12:51:55 -03:00
|
|
|
if (!_PyLong_Init())
|
|
|
|
Py_FatalError("Py_Initialize: can't init longs");
|
|
|
|
|
2008-05-26 09:29:14 -03:00
|
|
|
if (!PyByteArray_Init())
|
Merged revisions 61750,61752,61754,61756,61760,61763,61768,61772,61775,61805,61809,61812,61819,61917,61920,61930,61933-61934 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/trunk-bytearray
........
r61750 | christian.heimes | 2008-03-22 20:47:44 +0100 (Sat, 22 Mar 2008) | 1 line
Copied files from py3k w/o modifications
........
r61752 | christian.heimes | 2008-03-22 20:53:20 +0100 (Sat, 22 Mar 2008) | 7 lines
Take One
* Added initialization code, warnings, flags etc. to the appropriate places
* Added new buffer interface to string type
* Modified tests
* Modified Makefile.pre.in to compile the new files
* Added bytesobject.c to Python.h
........
r61754 | christian.heimes | 2008-03-22 21:22:19 +0100 (Sat, 22 Mar 2008) | 2 lines
Disabled bytearray.extend for now since it causes an infinite recursion
Fixed serveral unit tests
........
r61756 | christian.heimes | 2008-03-22 21:43:38 +0100 (Sat, 22 Mar 2008) | 5 lines
Added PyBytes support to several places:
str + bytearray
ord(bytearray)
bytearray(str, encoding)
........
r61760 | christian.heimes | 2008-03-22 21:56:32 +0100 (Sat, 22 Mar 2008) | 1 line
Fixed more unit tests related to type('') is not unicode
........
r61763 | christian.heimes | 2008-03-22 22:20:28 +0100 (Sat, 22 Mar 2008) | 2 lines
Fixed more unit tests
Fixed bytearray.extend
........
r61768 | christian.heimes | 2008-03-22 22:40:50 +0100 (Sat, 22 Mar 2008) | 1 line
Implemented old buffer interface for bytearray
........
r61772 | christian.heimes | 2008-03-22 23:24:52 +0100 (Sat, 22 Mar 2008) | 1 line
Added backport of the io module
........
r61775 | christian.heimes | 2008-03-23 03:50:49 +0100 (Sun, 23 Mar 2008) | 1 line
Fix str assignement to bytearray. Assignment of a str of size 1 is interpreted as a single byte
........
r61805 | christian.heimes | 2008-03-23 19:33:48 +0100 (Sun, 23 Mar 2008) | 3 lines
Fixed more tests
Fixed bytearray() comparsion with unicode()
Fixed iterator assignment of bytearray
........
r61809 | christian.heimes | 2008-03-23 21:02:21 +0100 (Sun, 23 Mar 2008) | 2 lines
str(bytesarray()) now returns the bytes and not the representation of the bytearray object
Enabled and fixed more unit tests
........
r61812 | christian.heimes | 2008-03-23 21:53:08 +0100 (Sun, 23 Mar 2008) | 3 lines
Clear error PyNumber_AsSsize_t() fails
Use CHARMASK for ob_svall access
disabled a test with memoryview again
........
r61819 | christian.heimes | 2008-03-23 23:05:57 +0100 (Sun, 23 Mar 2008) | 1 line
Untested updates to the PCBuild directory
........
r61917 | christian.heimes | 2008-03-26 00:57:06 +0100 (Wed, 26 Mar 2008) | 1 line
The type system of Python 2.6 has subtle differences to 3.0's. I've removed the Py_TPFLAGS_BASETYPE flags from bytearray for now. bytearray can't be subclasses until the issues with bytearray subclasses are fixed.
........
r61920 | christian.heimes | 2008-03-26 01:44:08 +0100 (Wed, 26 Mar 2008) | 2 lines
Disabled last failing test
I don't understand what the test is testing and how it suppose to work. Ka-Ping, please check it out.
........
r61930 | christian.heimes | 2008-03-26 12:46:18 +0100 (Wed, 26 Mar 2008) | 1 line
Re-enabled bytes warning code
........
r61933 | christian.heimes | 2008-03-26 13:20:46 +0100 (Wed, 26 Mar 2008) | 1 line
Fixed a bug in the new buffer protocol. The buffer slots weren't copied into a subclass.
........
r61934 | christian.heimes | 2008-03-26 13:25:09 +0100 (Wed, 26 Mar 2008) | 1 line
Re-enabled bytearray subclassing - all tests are passing.
........
2008-03-26 09:49:49 -03:00
|
|
|
Py_FatalError("Py_Initialize: can't init bytearray");
|
|
|
|
|
2005-05-27 12:23:20 -03:00
|
|
|
_PyFloat_Init();
|
|
|
|
|
1997-08-02 00:10:38 -03:00
|
|
|
interp->modules = PyDict_New();
|
|
|
|
if (interp->modules == NULL)
|
|
|
|
Py_FatalError("Py_Initialize: can't make modules dictionary");
|
2007-03-12 13:11:39 -03:00
|
|
|
interp->modules_reloading = PyDict_New();
|
|
|
|
if (interp->modules_reloading == NULL)
|
|
|
|
Py_FatalError("Py_Initialize: can't make modules_reloading dictionary");
|
1997-08-02 00:10:38 -03:00
|
|
|
|
2001-08-17 15:39:25 -03:00
|
|
|
#ifdef Py_USING_UNICODE
|
2000-03-10 19:03:54 -04:00
|
|
|
/* Init Unicode implementation; relies on the codec registry */
|
|
|
|
_PyUnicode_Init();
|
2001-08-17 15:39:25 -03:00
|
|
|
#endif
|
2000-03-10 19:03:54 -04:00
|
|
|
|
2000-05-25 20:09:49 -03:00
|
|
|
bimod = _PyBuiltin_Init();
|
1997-08-02 00:10:38 -03:00
|
|
|
if (bimod == NULL)
|
|
|
|
Py_FatalError("Py_Initialize: can't initialize __builtin__");
|
1997-11-04 15:36:18 -04:00
|
|
|
interp->builtins = PyModule_GetDict(bimod);
|
2006-08-12 00:17:41 -03:00
|
|
|
if (interp->builtins == NULL)
|
|
|
|
Py_FatalError("Py_Initialize: can't initialize builtins dict");
|
1997-11-04 15:36:18 -04:00
|
|
|
Py_INCREF(interp->builtins);
|
1997-08-02 00:10:38 -03:00
|
|
|
|
|
|
|
sysmod = _PySys_Init();
|
|
|
|
if (sysmod == NULL)
|
|
|
|
Py_FatalError("Py_Initialize: can't initialize sys");
|
|
|
|
interp->sysdict = PyModule_GetDict(sysmod);
|
2006-08-12 00:17:41 -03:00
|
|
|
if (interp->sysdict == NULL)
|
|
|
|
Py_FatalError("Py_Initialize: can't initialize sys dict");
|
1997-08-02 00:10:38 -03:00
|
|
|
Py_INCREF(interp->sysdict);
|
|
|
|
_PyImport_FixupExtension("sys", "sys");
|
1997-03-04 20:20:32 -04:00
|
|
|
PySys_SetPath(Py_GetPath());
|
1997-08-02 00:10:38 -03:00
|
|
|
PyDict_SetItemString(interp->sysdict, "modules",
|
|
|
|
interp->modules);
|
|
|
|
|
1999-07-08 14:26:56 -03:00
|
|
|
_PyImport_Init();
|
|
|
|
|
2000-05-25 20:09:49 -03:00
|
|
|
/* initialize builtin exceptions */
|
2001-08-02 01:15:00 -03:00
|
|
|
_PyExc_Init();
|
2001-08-13 20:04:56 -03:00
|
|
|
_PyImport_FixupExtension("exceptions", "exceptions");
|
2000-05-25 20:09:49 -03:00
|
|
|
|
1997-08-29 19:07:17 -03:00
|
|
|
/* phase 2 of builtins */
|
1997-09-18 13:42:02 -03:00
|
|
|
_PyImport_FixupExtension("__builtin__", "__builtin__");
|
1997-08-29 19:07:17 -03:00
|
|
|
|
2002-12-30 18:08:05 -04:00
|
|
|
_PyImportHooks_Init();
|
|
|
|
|
2004-08-19 08:31:58 -03:00
|
|
|
if (install_sigs)
|
|
|
|
initsigs(); /* Signal handling stuff, including initintr() */
|
2008-04-12 20:44:07 -03:00
|
|
|
|
2008-07-05 07:07:18 -03:00
|
|
|
/* Initialize warnings. */
|
|
|
|
_PyWarnings_Init();
|
|
|
|
if (PySys_HasWarnOptions()) {
|
|
|
|
PyObject *warnings_module = PyImport_ImportModule("warnings");
|
|
|
|
if (!warnings_module)
|
|
|
|
PyErr_Clear();
|
|
|
|
Py_XDECREF(warnings_module);
|
|
|
|
}
|
1995-01-09 13:53:26 -04:00
|
|
|
|
1997-08-02 00:10:38 -03:00
|
|
|
initmain(); /* Module __main__ */
|
1997-08-29 19:32:42 -03:00
|
|
|
if (!Py_NoSiteFlag)
|
|
|
|
initsite(); /* Module site */
|
2003-02-25 16:25:12 -04:00
|
|
|
|
2003-04-19 12:41:53 -03:00
|
|
|
/* auto-thread-state API, if available */
|
|
|
|
#ifdef WITH_THREAD
|
|
|
|
_PyGILState_Init(interp, tstate);
|
|
|
|
#endif /* WITH_THREAD */
|
|
|
|
|
2008-06-01 04:20:46 -03:00
|
|
|
if ((p = Py_GETENV("PYTHONIOENCODING")) && *p != '\0') {
|
|
|
|
p = icodeset = codeset = strdup(p);
|
|
|
|
free_codeset = 1;
|
|
|
|
errors = strchr(p, ':');
|
|
|
|
if (errors) {
|
|
|
|
*errors = '\0';
|
|
|
|
errors++;
|
|
|
|
}
|
|
|
|
overridden = 1;
|
|
|
|
}
|
|
|
|
|
2003-03-05 11:13:47 -04:00
|
|
|
#if defined(Py_USING_UNICODE) && defined(HAVE_LANGINFO_H) && defined(CODESET)
|
|
|
|
/* On Unix, set the file system encoding according to the
|
|
|
|
user's preference, if the CODESET names a well-known
|
|
|
|
Python codec, and Py_FileSystemDefaultEncoding isn't
|
2003-08-09 06:47:11 -03:00
|
|
|
initialized by other means. Also set the encoding of
|
2008-06-01 04:20:46 -03:00
|
|
|
stdin and stdout if these are terminals, unless overridden. */
|
|
|
|
|
|
|
|
if (!overridden || !Py_FileSystemDefaultEncoding) {
|
|
|
|
saved_locale = strdup(setlocale(LC_CTYPE, NULL));
|
|
|
|
setlocale(LC_CTYPE, "");
|
|
|
|
loc_codeset = nl_langinfo(CODESET);
|
|
|
|
if (loc_codeset && *loc_codeset) {
|
|
|
|
PyObject *enc = PyCodec_Encoder(loc_codeset);
|
|
|
|
if (enc) {
|
|
|
|
loc_codeset = strdup(loc_codeset);
|
|
|
|
Py_DECREF(enc);
|
|
|
|
} else {
|
|
|
|
loc_codeset = NULL;
|
|
|
|
PyErr_Clear();
|
|
|
|
}
|
|
|
|
} else
|
|
|
|
loc_codeset = NULL;
|
|
|
|
setlocale(LC_CTYPE, saved_locale);
|
|
|
|
free(saved_locale);
|
|
|
|
|
|
|
|
if (!overridden) {
|
|
|
|
codeset = icodeset = loc_codeset;
|
|
|
|
free_codeset = 1;
|
2003-08-09 06:47:11 -03:00
|
|
|
}
|
2008-06-01 04:20:46 -03:00
|
|
|
|
|
|
|
/* Initialize Py_FileSystemDefaultEncoding from
|
|
|
|
locale even if PYTHONIOENCODING is set. */
|
|
|
|
if (!Py_FileSystemDefaultEncoding) {
|
|
|
|
Py_FileSystemDefaultEncoding = loc_codeset;
|
|
|
|
if (!overridden)
|
|
|
|
free_codeset = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef MS_WINDOWS
|
|
|
|
if (!overridden) {
|
|
|
|
icodeset = ibuf;
|
2008-06-01 05:19:02 -03:00
|
|
|
codeset = buf;
|
2008-06-01 04:20:46 -03:00
|
|
|
sprintf(ibuf, "cp%d", GetConsoleCP());
|
|
|
|
sprintf(buf, "cp%d", GetConsoleOutputCP());
|
|
|
|
}
|
|
|
|
#endif
|
2003-08-09 06:47:11 -03:00
|
|
|
|
|
|
|
if (codeset) {
|
2003-08-11 09:20:24 -03:00
|
|
|
sys_stream = PySys_GetObject("stdin");
|
2003-08-09 06:47:11 -03:00
|
|
|
sys_isatty = PyObject_CallMethod(sys_stream, "isatty", "");
|
|
|
|
if (!sys_isatty)
|
|
|
|
PyErr_Clear();
|
2008-06-01 04:20:46 -03:00
|
|
|
if ((overridden ||
|
|
|
|
(sys_isatty && PyObject_IsTrue(sys_isatty))) &&
|
2007-01-23 09:42:00 -04:00
|
|
|
PyFile_Check(sys_stream)) {
|
2008-06-01 04:20:46 -03:00
|
|
|
if (!PyFile_SetEncodingAndErrors(sys_stream, icodeset, errors))
|
2003-08-09 06:47:11 -03:00
|
|
|
Py_FatalError("Cannot set codeset of stdin");
|
2003-03-05 11:13:47 -04:00
|
|
|
}
|
2003-08-09 06:47:11 -03:00
|
|
|
Py_XDECREF(sys_isatty);
|
|
|
|
|
|
|
|
sys_stream = PySys_GetObject("stdout");
|
|
|
|
sys_isatty = PyObject_CallMethod(sys_stream, "isatty", "");
|
|
|
|
if (!sys_isatty)
|
|
|
|
PyErr_Clear();
|
2008-06-01 04:20:46 -03:00
|
|
|
if ((overridden ||
|
|
|
|
(sys_isatty && PyObject_IsTrue(sys_isatty))) &&
|
2007-01-23 09:42:00 -04:00
|
|
|
PyFile_Check(sys_stream)) {
|
2008-06-01 04:20:46 -03:00
|
|
|
if (!PyFile_SetEncodingAndErrors(sys_stream, codeset, errors))
|
2003-08-09 06:47:11 -03:00
|
|
|
Py_FatalError("Cannot set codeset of stdout");
|
|
|
|
}
|
|
|
|
Py_XDECREF(sys_isatty);
|
|
|
|
|
2006-04-03 07:56:49 -03:00
|
|
|
sys_stream = PySys_GetObject("stderr");
|
|
|
|
sys_isatty = PyObject_CallMethod(sys_stream, "isatty", "");
|
|
|
|
if (!sys_isatty)
|
|
|
|
PyErr_Clear();
|
2008-06-01 04:20:46 -03:00
|
|
|
if((overridden ||
|
|
|
|
(sys_isatty && PyObject_IsTrue(sys_isatty))) &&
|
2007-01-23 09:42:00 -04:00
|
|
|
PyFile_Check(sys_stream)) {
|
2008-06-01 04:20:46 -03:00
|
|
|
if (!PyFile_SetEncodingAndErrors(sys_stream, codeset, errors))
|
2006-04-03 07:56:49 -03:00
|
|
|
Py_FatalError("Cannot set codeset of stderr");
|
|
|
|
}
|
|
|
|
Py_XDECREF(sys_isatty);
|
|
|
|
|
2008-06-01 04:20:46 -03:00
|
|
|
if (free_codeset)
|
2003-08-09 06:47:11 -03:00
|
|
|
free(codeset);
|
2003-03-05 11:13:47 -04:00
|
|
|
}
|
1995-01-09 13:53:26 -04:00
|
|
|
}
|
|
|
|
|
2004-08-19 08:31:58 -03:00
|
|
|
void
|
|
|
|
Py_Initialize(void)
|
|
|
|
{
|
|
|
|
Py_InitializeEx(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1998-12-15 12:12:00 -04:00
|
|
|
#ifdef COUNT_ALLOCS
|
2006-04-18 03:24:08 -03:00
|
|
|
extern void dump_counts(FILE*);
|
1998-12-15 12:12:00 -04:00
|
|
|
#endif
|
|
|
|
|
1997-08-02 00:10:38 -03:00
|
|
|
/* Undo the effect of Py_Initialize().
|
|
|
|
|
|
|
|
Beware: if multiple interpreter and/or thread states exist, these
|
|
|
|
are not wiped out; only the current thread and interpreter state
|
|
|
|
are deleted. But since everything else is deleted, those other
|
|
|
|
interpreter and thread states should no longer be used.
|
|
|
|
|
|
|
|
(XXX We should do better, e.g. wipe out all interpreters and
|
|
|
|
threads.)
|
|
|
|
|
|
|
|
Locking: as above.
|
|
|
|
|
|
|
|
*/
|
1997-05-05 17:56:21 -03:00
|
|
|
|
|
|
|
void
|
2000-07-22 15:47:25 -03:00
|
|
|
Py_Finalize(void)
|
1997-05-05 17:56:21 -03:00
|
|
|
{
|
1997-08-02 00:10:38 -03:00
|
|
|
PyInterpreterState *interp;
|
1997-05-05 17:56:21 -03:00
|
|
|
PyThreadState *tstate;
|
1997-08-02 00:10:38 -03:00
|
|
|
|
1997-08-29 19:32:42 -03:00
|
|
|
if (!initialized)
|
1997-08-20 19:40:18 -03:00
|
|
|
return;
|
1997-08-02 00:10:38 -03:00
|
|
|
|
2009-10-20 18:29:37 -03:00
|
|
|
wait_for_thread_shutdown();
|
|
|
|
|
2001-01-20 23:40:37 -04:00
|
|
|
/* The interpreter is still entirely intact at this point, and the
|
|
|
|
* exit funcs may be relying on that. In particular, if some thread
|
|
|
|
* or exit func is still waiting to do an import, the import machinery
|
|
|
|
* expects Py_IsInitialized() to return true. So don't say the
|
|
|
|
* interpreter is uninitialized until after the exit funcs have run.
|
|
|
|
* Note that Threading.py uses an exit func to do a join on all the
|
|
|
|
* threads created thru it, so this also protects pending imports in
|
|
|
|
* the threads created via Threading.
|
|
|
|
*/
|
1998-01-19 18:00:38 -04:00
|
|
|
call_sys_exitfunc();
|
2001-01-20 23:40:37 -04:00
|
|
|
initialized = 0;
|
1998-01-19 18:00:38 -04:00
|
|
|
|
1997-11-03 17:58:47 -04:00
|
|
|
/* Get current thread state and interpreter pointer */
|
2004-03-24 18:22:12 -04:00
|
|
|
tstate = PyThreadState_GET();
|
1997-08-02 00:10:38 -03:00
|
|
|
interp = tstate->interp;
|
|
|
|
|
1997-11-03 17:58:47 -04:00
|
|
|
/* Disable signal handling */
|
|
|
|
PyOS_FiniInterrupts();
|
|
|
|
|
2008-01-27 19:34:59 -04:00
|
|
|
/* Clear type lookup cache */
|
|
|
|
PyType_ClearCache();
|
|
|
|
|
2003-04-17 14:29:22 -03:00
|
|
|
/* Collect garbage. This may call finalizers; it's nice to call these
|
2003-12-01 17:35:27 -04:00
|
|
|
* before all modules are destroyed.
|
|
|
|
* XXX If a __del__ or weakref callback is triggered here, and tries to
|
|
|
|
* XXX import a module, bad things can happen, because Python no
|
|
|
|
* XXX longer believes it's initialized.
|
|
|
|
* XXX Fatal Python error: Interpreter not initialized (version mismatch?)
|
|
|
|
* XXX is easy to provoke that way. I've also seen, e.g.,
|
|
|
|
* XXX Exception exceptions.ImportError: 'No module named sha'
|
|
|
|
* XXX in <function callback at 0x008F5718> ignored
|
|
|
|
* XXX but I'm unclear on exactly how that one happens. In any case,
|
|
|
|
* XXX I haven't seen a real-life report of either of these.
|
2006-03-04 15:01:22 -04:00
|
|
|
*/
|
2003-04-17 14:29:22 -03:00
|
|
|
PyGC_Collect();
|
2006-04-18 03:24:08 -03:00
|
|
|
#ifdef COUNT_ALLOCS
|
|
|
|
/* With COUNT_ALLOCS, it helps to run GC multiple times:
|
|
|
|
each collection might release some types from the type
|
|
|
|
list, so they become garbage. */
|
|
|
|
while (PyGC_Collect() > 0)
|
|
|
|
/* nothing */;
|
|
|
|
#endif
|
2003-04-17 14:29:22 -03:00
|
|
|
|
1997-11-03 17:58:47 -04:00
|
|
|
/* Destroy all modules */
|
1997-08-02 00:10:38 -03:00
|
|
|
PyImport_Cleanup();
|
1997-11-03 17:58:47 -04:00
|
|
|
|
2003-04-17 14:29:22 -03:00
|
|
|
/* Collect final garbage. This disposes of cycles created by
|
2003-12-01 17:35:27 -04:00
|
|
|
* new-style class definitions, for example.
|
|
|
|
* XXX This is disabled because it caused too many problems. If
|
|
|
|
* XXX a __del__ or weakref callback triggers here, Python code has
|
|
|
|
* XXX a hard time running, because even the sys module has been
|
|
|
|
* XXX cleared out (sys.stdout is gone, sys.excepthook is gone, etc).
|
|
|
|
* XXX One symptom is a sequence of information-free messages
|
|
|
|
* XXX coming from threads (if a __del__ or callback is invoked,
|
|
|
|
* XXX other threads can execute too, and any exception they encounter
|
|
|
|
* XXX triggers a comedy of errors as subsystem after subsystem
|
|
|
|
* XXX fails to find what it *expects* to find in sys to help report
|
|
|
|
* XXX the exception and consequent unexpected failures). I've also
|
|
|
|
* XXX seen segfaults then, after adding print statements to the
|
|
|
|
* XXX Python code getting called.
|
|
|
|
*/
|
|
|
|
#if 0
|
2003-04-17 14:29:22 -03:00
|
|
|
PyGC_Collect();
|
2003-12-01 17:35:27 -04:00
|
|
|
#endif
|
2003-04-17 14:29:22 -03:00
|
|
|
|
1997-12-08 19:43:45 -04:00
|
|
|
/* Destroy the database used by _PyImport_{Fixup,Find}Extension */
|
|
|
|
_PyImport_Fini();
|
|
|
|
|
|
|
|
/* Debugging stuff */
|
|
|
|
#ifdef COUNT_ALLOCS
|
2006-04-18 03:24:08 -03:00
|
|
|
dump_counts(stdout);
|
1997-12-08 19:43:45 -04:00
|
|
|
#endif
|
|
|
|
|
2006-03-28 17:44:32 -04:00
|
|
|
PRINT_TOTAL_REFS();
|
1997-12-08 19:43:45 -04:00
|
|
|
|
2003-04-17 12:21:01 -03:00
|
|
|
#ifdef Py_TRACE_REFS
|
|
|
|
/* Display all objects still alive -- this can invoke arbitrary
|
|
|
|
* __repr__ overrides, so requires a mostly-intact interpreter.
|
|
|
|
* Alas, a lot of stuff may still be alive now that will be cleaned
|
|
|
|
* up later.
|
|
|
|
*/
|
2003-04-17 16:52:29 -03:00
|
|
|
if (Py_GETENV("PYTHONDUMPREFS"))
|
2003-04-17 12:21:01 -03:00
|
|
|
_Py_PrintReferences(stderr);
|
|
|
|
#endif /* Py_TRACE_REFS */
|
|
|
|
|
2003-04-15 11:10:09 -03:00
|
|
|
/* Clear interpreter state */
|
2000-05-25 20:09:49 -03:00
|
|
|
PyInterpreterState_Clear(interp);
|
2003-04-15 11:10:09 -03:00
|
|
|
|
2005-03-29 09:36:16 -04:00
|
|
|
/* Now we decref the exception classes. After this point nothing
|
|
|
|
can raise an exception. That's okay, because each Fini() method
|
|
|
|
below has been checked to make sure no exceptions are ever
|
|
|
|
raised.
|
|
|
|
*/
|
|
|
|
|
|
|
|
_PyExc_Fini();
|
|
|
|
|
2007-11-29 19:35:25 -04:00
|
|
|
/* Cleanup auto-thread-state */
|
|
|
|
#ifdef WITH_THREAD
|
|
|
|
_PyGILState_Fini();
|
|
|
|
#endif /* WITH_THREAD */
|
|
|
|
|
2003-04-15 11:10:09 -03:00
|
|
|
/* Delete current thread */
|
2000-05-25 20:09:49 -03:00
|
|
|
PyThreadState_Swap(NULL);
|
|
|
|
PyInterpreterState_Delete(interp);
|
|
|
|
|
2003-04-15 11:10:09 -03:00
|
|
|
/* Sundry finalizers */
|
1997-08-04 23:22:03 -03:00
|
|
|
PyMethod_Fini();
|
|
|
|
PyFrame_Fini();
|
|
|
|
PyCFunction_Fini();
|
|
|
|
PyTuple_Fini();
|
2004-10-07 00:58:07 -03:00
|
|
|
PyList_Fini();
|
2005-08-01 18:39:29 -03:00
|
|
|
PySet_Fini();
|
2008-06-09 01:58:54 -03:00
|
|
|
PyString_Fini();
|
2008-05-26 09:29:14 -03:00
|
|
|
PyByteArray_Fini();
|
1997-08-04 23:22:03 -03:00
|
|
|
PyInt_Fini();
|
|
|
|
PyFloat_Fini();
|
2008-02-07 20:11:31 -04:00
|
|
|
PyDict_Fini();
|
1997-08-04 23:22:03 -03:00
|
|
|
|
2002-04-08 05:19:36 -03:00
|
|
|
#ifdef Py_USING_UNICODE
|
|
|
|
/* Cleanup Unicode implementation */
|
|
|
|
_PyUnicode_Fini();
|
|
|
|
#endif
|
|
|
|
|
1997-08-04 23:22:03 -03:00
|
|
|
/* XXX Still allocated:
|
|
|
|
- various static ad-hoc pointers to interned strings
|
|
|
|
- int and float free list blocks
|
|
|
|
- whatever various modules and libraries allocate
|
|
|
|
*/
|
1997-08-02 00:10:38 -03:00
|
|
|
|
|
|
|
PyGrammar_RemoveAccelerators(&_PyParser_Grammar);
|
1997-08-04 23:22:03 -03:00
|
|
|
|
2003-04-17 16:52:29 -03:00
|
|
|
#ifdef Py_TRACE_REFS
|
|
|
|
/* Display addresses (& refcnts) of all objects still alive.
|
|
|
|
* An address can be used to find the repr of the object, printed
|
|
|
|
* above by _Py_PrintReferences.
|
|
|
|
*/
|
|
|
|
if (Py_GETENV("PYTHONDUMPREFS"))
|
|
|
|
_Py_PrintReferenceAddresses(stderr);
|
|
|
|
#endif /* Py_TRACE_REFS */
|
2002-04-13 05:29:14 -03:00
|
|
|
#ifdef PYMALLOC_DEBUG
|
|
|
|
if (Py_GETENV("PYTHONMALLOCSTATS"))
|
|
|
|
_PyObject_DebugMallocStats();
|
|
|
|
#endif
|
|
|
|
|
1997-08-04 23:22:03 -03:00
|
|
|
call_ll_exitfuncs();
|
1997-08-02 00:10:38 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Create and initialize a new interpreter and thread, and return the
|
|
|
|
new thread. This requires that Py_Initialize() has been called
|
|
|
|
first.
|
|
|
|
|
|
|
|
Unsuccessful initialization yields a NULL pointer. Note that *no*
|
|
|
|
exception information is available even in this case -- the
|
|
|
|
exception information is held in the thread, and there is no
|
|
|
|
thread.
|
|
|
|
|
|
|
|
Locking: as above.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
PyThreadState *
|
2000-07-22 15:47:25 -03:00
|
|
|
Py_NewInterpreter(void)
|
1997-08-02 00:10:38 -03:00
|
|
|
{
|
1997-05-05 17:56:21 -03:00
|
|
|
PyInterpreterState *interp;
|
1997-08-02 00:10:38 -03:00
|
|
|
PyThreadState *tstate, *save_tstate;
|
|
|
|
PyObject *bimod, *sysmod;
|
1997-07-19 16:17:22 -03:00
|
|
|
|
1997-08-02 00:10:38 -03:00
|
|
|
if (!initialized)
|
|
|
|
Py_FatalError("Py_NewInterpreter: call Py_Initialize first");
|
1997-07-19 16:17:22 -03:00
|
|
|
|
1997-05-05 17:56:21 -03:00
|
|
|
interp = PyInterpreterState_New();
|
|
|
|
if (interp == NULL)
|
1997-08-02 00:10:38 -03:00
|
|
|
return NULL;
|
1997-07-19 16:17:22 -03:00
|
|
|
|
1997-05-05 17:56:21 -03:00
|
|
|
tstate = PyThreadState_New(interp);
|
1997-08-02 00:10:38 -03:00
|
|
|
if (tstate == NULL) {
|
|
|
|
PyInterpreterState_Delete(interp);
|
|
|
|
return NULL;
|
|
|
|
}
|
1997-05-05 17:56:21 -03:00
|
|
|
|
1997-08-02 00:10:38 -03:00
|
|
|
save_tstate = PyThreadState_Swap(tstate);
|
1997-05-05 17:56:21 -03:00
|
|
|
|
1997-08-02 00:10:38 -03:00
|
|
|
/* XXX The following is lax in error checking */
|
|
|
|
|
|
|
|
interp->modules = PyDict_New();
|
2007-03-12 13:11:39 -03:00
|
|
|
interp->modules_reloading = PyDict_New();
|
1997-08-02 00:10:38 -03:00
|
|
|
|
|
|
|
bimod = _PyImport_FindExtension("__builtin__", "__builtin__");
|
|
|
|
if (bimod != NULL) {
|
1997-11-04 15:36:18 -04:00
|
|
|
interp->builtins = PyModule_GetDict(bimod);
|
2006-08-21 17:16:24 -03:00
|
|
|
if (interp->builtins == NULL)
|
|
|
|
goto handle_error;
|
1997-11-04 15:36:18 -04:00
|
|
|
Py_INCREF(interp->builtins);
|
1997-08-02 00:10:38 -03:00
|
|
|
}
|
|
|
|
sysmod = _PyImport_FindExtension("sys", "sys");
|
|
|
|
if (bimod != NULL && sysmod != NULL) {
|
|
|
|
interp->sysdict = PyModule_GetDict(sysmod);
|
2006-08-21 17:16:24 -03:00
|
|
|
if (interp->sysdict == NULL)
|
|
|
|
goto handle_error;
|
1997-08-02 00:10:38 -03:00
|
|
|
Py_INCREF(interp->sysdict);
|
|
|
|
PySys_SetPath(Py_GetPath());
|
|
|
|
PyDict_SetItemString(interp->sysdict, "modules",
|
|
|
|
interp->modules);
|
2003-01-22 05:00:38 -04:00
|
|
|
_PyImportHooks_Init();
|
1997-08-02 00:10:38 -03:00
|
|
|
initmain();
|
1997-08-29 19:32:42 -03:00
|
|
|
if (!Py_NoSiteFlag)
|
|
|
|
initsite();
|
1997-08-02 00:10:38 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!PyErr_Occurred())
|
|
|
|
return tstate;
|
|
|
|
|
2006-08-21 17:16:24 -03:00
|
|
|
handle_error:
|
1997-08-02 00:10:38 -03:00
|
|
|
/* Oops, it didn't work. Undo it all. */
|
|
|
|
|
|
|
|
PyErr_Print();
|
|
|
|
PyThreadState_Clear(tstate);
|
|
|
|
PyThreadState_Swap(save_tstate);
|
|
|
|
PyThreadState_Delete(tstate);
|
|
|
|
PyInterpreterState_Delete(interp);
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Delete an interpreter and its last thread. This requires that the
|
|
|
|
given thread state is current, that the thread has no remaining
|
|
|
|
frames, and that it is its interpreter's only remaining thread.
|
|
|
|
It is a fatal error to violate these constraints.
|
|
|
|
|
|
|
|
(Py_Finalize() doesn't have these constraints -- it zaps
|
|
|
|
everything, regardless.)
|
|
|
|
|
|
|
|
Locking: as above.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
void
|
2000-07-22 15:47:25 -03:00
|
|
|
Py_EndInterpreter(PyThreadState *tstate)
|
1997-08-02 00:10:38 -03:00
|
|
|
{
|
|
|
|
PyInterpreterState *interp = tstate->interp;
|
|
|
|
|
2004-03-24 18:22:12 -04:00
|
|
|
if (tstate != PyThreadState_GET())
|
1997-08-02 00:10:38 -03:00
|
|
|
Py_FatalError("Py_EndInterpreter: thread is not current");
|
|
|
|
if (tstate->frame != NULL)
|
|
|
|
Py_FatalError("Py_EndInterpreter: thread still has a frame");
|
|
|
|
if (tstate != interp->tstate_head || tstate->next != NULL)
|
|
|
|
Py_FatalError("Py_EndInterpreter: not the last thread");
|
|
|
|
|
|
|
|
PyImport_Cleanup();
|
|
|
|
PyInterpreterState_Clear(interp);
|
|
|
|
PyThreadState_Swap(NULL);
|
|
|
|
PyInterpreterState_Delete(interp);
|
1997-07-19 16:17:22 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
static char *progname = "python";
|
|
|
|
|
|
|
|
void
|
2000-07-22 15:47:25 -03:00
|
|
|
Py_SetProgramName(char *pn)
|
1997-07-19 16:17:22 -03:00
|
|
|
{
|
|
|
|
if (pn && *pn)
|
|
|
|
progname = pn;
|
|
|
|
}
|
|
|
|
|
|
|
|
char *
|
2000-07-22 15:47:25 -03:00
|
|
|
Py_GetProgramName(void)
|
1997-07-19 16:17:22 -03:00
|
|
|
{
|
|
|
|
return progname;
|
1997-05-05 17:56:21 -03:00
|
|
|
}
|
|
|
|
|
1998-02-06 18:27:24 -04:00
|
|
|
static char *default_home = NULL;
|
|
|
|
|
|
|
|
void
|
2000-07-22 15:47:25 -03:00
|
|
|
Py_SetPythonHome(char *home)
|
1998-02-06 18:27:24 -04:00
|
|
|
{
|
|
|
|
default_home = home;
|
|
|
|
}
|
|
|
|
|
|
|
|
char *
|
2000-07-22 15:47:25 -03:00
|
|
|
Py_GetPythonHome(void)
|
1998-02-06 18:27:24 -04:00
|
|
|
{
|
|
|
|
char *home = default_home;
|
2001-07-23 13:30:27 -03:00
|
|
|
if (home == NULL && !Py_IgnoreEnvironmentFlag)
|
|
|
|
home = Py_GETENV("PYTHONHOME");
|
1998-02-06 18:27:24 -04:00
|
|
|
return home;
|
|
|
|
}
|
|
|
|
|
1995-01-09 13:53:26 -04:00
|
|
|
/* Create __main__ module */
|
|
|
|
|
|
|
|
static void
|
2000-07-22 15:47:25 -03:00
|
|
|
initmain(void)
|
1995-01-09 13:53:26 -04:00
|
|
|
{
|
1997-03-04 20:20:32 -04:00
|
|
|
PyObject *m, *d;
|
|
|
|
m = PyImport_AddModule("__main__");
|
1995-01-09 13:53:26 -04:00
|
|
|
if (m == NULL)
|
1997-03-04 20:20:32 -04:00
|
|
|
Py_FatalError("can't create __main__ module");
|
|
|
|
d = PyModule_GetDict(m);
|
|
|
|
if (PyDict_GetItemString(d, "__builtins__") == NULL) {
|
1997-11-19 12:15:37 -04:00
|
|
|
PyObject *bimod = PyImport_ImportModule("__builtin__");
|
|
|
|
if (bimod == NULL ||
|
|
|
|
PyDict_SetItemString(d, "__builtins__", bimod) != 0)
|
1997-03-04 20:20:32 -04:00
|
|
|
Py_FatalError("can't add __builtins__ to __main__");
|
1999-01-29 17:30:22 -04:00
|
|
|
Py_DECREF(bimod);
|
1995-01-09 13:53:26 -04:00
|
|
|
}
|
1992-08-04 09:41:02 -03:00
|
|
|
}
|
|
|
|
|
1997-08-29 19:32:42 -03:00
|
|
|
/* Import the site module (not into __main__ though) */
|
|
|
|
|
|
|
|
static void
|
2000-07-22 15:47:25 -03:00
|
|
|
initsite(void)
|
1997-08-29 19:32:42 -03:00
|
|
|
{
|
|
|
|
PyObject *m, *f;
|
|
|
|
m = PyImport_ImportModule("site");
|
|
|
|
if (m == NULL) {
|
|
|
|
f = PySys_GetObject("stderr");
|
|
|
|
if (Py_VerboseFlag) {
|
|
|
|
PyFile_WriteString(
|
|
|
|
"'import site' failed; traceback:\n", f);
|
|
|
|
PyErr_Print();
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
PyFile_WriteString(
|
|
|
|
"'import site' failed; use -v for traceback\n", f);
|
|
|
|
PyErr_Clear();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
Py_DECREF(m);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1992-08-04 09:41:02 -03:00
|
|
|
/* Parse input from a file and execute it */
|
|
|
|
|
|
|
|
int
|
2006-05-28 07:41:29 -03:00
|
|
|
PyRun_AnyFileExFlags(FILE *fp, const char *filename, int closeit,
|
2001-03-21 22:47:58 -04:00
|
|
|
PyCompilerFlags *flags)
|
1992-08-04 09:41:02 -03:00
|
|
|
{
|
|
|
|
if (filename == NULL)
|
|
|
|
filename = "???";
|
2000-08-27 16:21:52 -03:00
|
|
|
if (Py_FdIsInteractive(fp, filename)) {
|
2001-03-21 22:47:58 -04:00
|
|
|
int err = PyRun_InteractiveLoopFlags(fp, filename, flags);
|
2000-08-27 16:21:52 -03:00
|
|
|
if (closeit)
|
|
|
|
fclose(fp);
|
|
|
|
return err;
|
|
|
|
}
|
1992-08-04 09:41:02 -03:00
|
|
|
else
|
2001-03-21 22:47:58 -04:00
|
|
|
return PyRun_SimpleFileExFlags(fp, filename, closeit, flags);
|
1992-08-04 09:41:02 -03:00
|
|
|
}
|
|
|
|
|
2001-03-21 22:47:58 -04:00
|
|
|
int
|
2002-12-11 10:04:59 -04:00
|
|
|
PyRun_InteractiveLoopFlags(FILE *fp, const char *filename, PyCompilerFlags *flags)
|
1992-08-04 09:41:02 -03:00
|
|
|
{
|
1997-03-04 20:20:32 -04:00
|
|
|
PyObject *v;
|
1992-08-04 09:41:02 -03:00
|
|
|
int ret;
|
2001-03-21 22:47:58 -04:00
|
|
|
PyCompilerFlags local_flags;
|
2001-03-01 18:59:14 -04:00
|
|
|
|
2001-03-21 22:47:58 -04:00
|
|
|
if (flags == NULL) {
|
|
|
|
flags = &local_flags;
|
2001-07-15 23:29:45 -03:00
|
|
|
local_flags.cf_flags = 0;
|
2001-03-21 22:47:58 -04:00
|
|
|
}
|
1997-03-04 20:20:32 -04:00
|
|
|
v = PySys_GetObject("ps1");
|
1992-08-04 09:41:02 -03:00
|
|
|
if (v == NULL) {
|
2008-06-09 01:58:54 -03:00
|
|
|
PySys_SetObject("ps1", v = PyString_FromString(">>> "));
|
1997-03-04 20:20:32 -04:00
|
|
|
Py_XDECREF(v);
|
1992-08-04 09:41:02 -03:00
|
|
|
}
|
1997-03-04 20:20:32 -04:00
|
|
|
v = PySys_GetObject("ps2");
|
1992-08-04 09:41:02 -03:00
|
|
|
if (v == NULL) {
|
2008-06-09 01:58:54 -03:00
|
|
|
PySys_SetObject("ps2", v = PyString_FromString("... "));
|
1997-03-04 20:20:32 -04:00
|
|
|
Py_XDECREF(v);
|
1992-08-04 09:41:02 -03:00
|
|
|
}
|
|
|
|
for (;;) {
|
2001-03-21 22:47:58 -04:00
|
|
|
ret = PyRun_InteractiveOneFlags(fp, filename, flags);
|
2006-03-28 17:44:32 -04:00
|
|
|
PRINT_TOTAL_REFS();
|
1992-08-04 09:41:02 -03:00
|
|
|
if (ret == E_EOF)
|
|
|
|
return 0;
|
|
|
|
/*
|
|
|
|
if (ret == E_NOMEM)
|
|
|
|
return -1;
|
|
|
|
*/
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-03-18 20:45:49 -03:00
|
|
|
#if 0
|
2002-03-22 19:53:36 -04:00
|
|
|
/* compute parser flags based on compiler flags */
|
2006-09-06 03:28:06 -03:00
|
|
|
#define PARSER_FLAGS(flags) \
|
|
|
|
((flags) ? ((((flags)->cf_flags & PyCF_DONT_IMPLY_DEDENT) ? \
|
|
|
|
PyPARSE_DONT_IMPLY_DEDENT : 0)) : 0)
|
2008-03-18 20:45:49 -03:00
|
|
|
#endif
|
|
|
|
#if 1
|
2006-09-06 03:28:06 -03:00
|
|
|
/* Keep an example of flags with future keyword support. */
|
2002-03-22 19:53:36 -04:00
|
|
|
#define PARSER_FLAGS(flags) \
|
2006-02-28 15:02:24 -04:00
|
|
|
((flags) ? ((((flags)->cf_flags & PyCF_DONT_IMPLY_DEDENT) ? \
|
|
|
|
PyPARSE_DONT_IMPLY_DEDENT : 0) \
|
2008-03-26 19:01:37 -03:00
|
|
|
| (((flags)->cf_flags & CO_FUTURE_PRINT_FUNCTION) ? \
|
|
|
|
PyPARSE_PRINT_IS_FUNCTION : 0) \
|
|
|
|
| (((flags)->cf_flags & CO_FUTURE_UNICODE_LITERALS) ? \
|
|
|
|
PyPARSE_UNICODE_LITERALS : 0) \
|
|
|
|
) : 0)
|
2006-09-06 03:28:06 -03:00
|
|
|
#endif
|
2002-03-22 19:53:36 -04:00
|
|
|
|
2001-03-01 18:59:14 -04:00
|
|
|
int
|
2002-12-11 10:04:59 -04:00
|
|
|
PyRun_InteractiveOneFlags(FILE *fp, const char *filename, PyCompilerFlags *flags)
|
1992-08-04 09:41:02 -03:00
|
|
|
{
|
1997-03-04 20:20:32 -04:00
|
|
|
PyObject *m, *d, *v, *w;
|
2005-10-20 16:59:25 -03:00
|
|
|
mod_ty mod;
|
2006-03-04 15:01:22 -04:00
|
|
|
PyArena *arena;
|
1997-11-25 16:58:13 -04:00
|
|
|
char *ps1 = "", *ps2 = "";
|
2005-10-20 16:59:25 -03:00
|
|
|
int errcode = 0;
|
2001-07-16 02:37:24 -03:00
|
|
|
|
1997-03-04 20:20:32 -04:00
|
|
|
v = PySys_GetObject("ps1");
|
1997-11-25 16:58:13 -04:00
|
|
|
if (v != NULL) {
|
|
|
|
v = PyObject_Str(v);
|
|
|
|
if (v == NULL)
|
|
|
|
PyErr_Clear();
|
2008-06-09 01:58:54 -03:00
|
|
|
else if (PyString_Check(v))
|
|
|
|
ps1 = PyString_AsString(v);
|
1992-08-04 09:41:02 -03:00
|
|
|
}
|
1997-11-25 16:58:13 -04:00
|
|
|
w = PySys_GetObject("ps2");
|
|
|
|
if (w != NULL) {
|
|
|
|
w = PyObject_Str(w);
|
|
|
|
if (w == NULL)
|
|
|
|
PyErr_Clear();
|
2008-06-09 01:58:54 -03:00
|
|
|
else if (PyString_Check(w))
|
|
|
|
ps2 = PyString_AsString(w);
|
1992-08-04 09:41:02 -03:00
|
|
|
}
|
2006-03-04 15:01:22 -04:00
|
|
|
arena = PyArena_New();
|
2006-07-22 13:20:49 -03:00
|
|
|
if (arena == NULL) {
|
|
|
|
Py_XDECREF(v);
|
|
|
|
Py_XDECREF(w);
|
|
|
|
return -1;
|
|
|
|
}
|
2006-05-28 07:41:29 -03:00
|
|
|
mod = PyParser_ASTFromFile(fp, filename,
|
2005-10-20 16:59:25 -03:00
|
|
|
Py_single_input, ps1, ps2,
|
2005-12-17 16:54:49 -04:00
|
|
|
flags, &errcode, arena);
|
1997-03-04 20:20:32 -04:00
|
|
|
Py_XDECREF(v);
|
|
|
|
Py_XDECREF(w);
|
2005-10-20 16:59:25 -03:00
|
|
|
if (mod == NULL) {
|
2006-03-04 15:01:22 -04:00
|
|
|
PyArena_Free(arena);
|
2005-10-20 16:59:25 -03:00
|
|
|
if (errcode == E_EOF) {
|
|
|
|
PyErr_Clear();
|
1994-08-29 09:50:44 -03:00
|
|
|
return E_EOF;
|
|
|
|
}
|
1997-03-04 20:20:32 -04:00
|
|
|
PyErr_Print();
|
2005-10-20 16:59:25 -03:00
|
|
|
return -1;
|
1992-08-04 09:41:02 -03:00
|
|
|
}
|
1997-03-04 20:20:32 -04:00
|
|
|
m = PyImport_AddModule("__main__");
|
2005-12-17 16:54:49 -04:00
|
|
|
if (m == NULL) {
|
2006-03-04 15:01:22 -04:00
|
|
|
PyArena_Free(arena);
|
1992-08-04 09:41:02 -03:00
|
|
|
return -1;
|
2005-12-17 16:54:49 -04:00
|
|
|
}
|
1997-03-04 20:20:32 -04:00
|
|
|
d = PyModule_GetDict(m);
|
2005-12-17 16:54:49 -04:00
|
|
|
v = run_mod(mod, filename, d, d, flags, arena);
|
2006-03-04 15:01:22 -04:00
|
|
|
PyArena_Free(arena);
|
1992-08-04 09:41:02 -03:00
|
|
|
if (v == NULL) {
|
1997-03-04 20:20:32 -04:00
|
|
|
PyErr_Print();
|
1992-08-04 09:41:02 -03:00
|
|
|
return -1;
|
|
|
|
}
|
1997-03-04 20:20:32 -04:00
|
|
|
Py_DECREF(v);
|
1997-05-22 19:35:04 -03:00
|
|
|
if (Py_FlushLine())
|
|
|
|
PyErr_Clear();
|
1992-08-04 09:41:02 -03:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2001-01-04 16:30:56 -04:00
|
|
|
/* Check whether a file maybe a pyc file: Look at the extension,
|
|
|
|
the file type, and, if we may close it, at the first few bytes. */
|
|
|
|
|
|
|
|
static int
|
2002-12-11 10:04:59 -04:00
|
|
|
maybe_pyc_file(FILE *fp, const char* filename, const char* ext, int closeit)
|
2001-01-04 16:30:56 -04:00
|
|
|
{
|
|
|
|
if (strcmp(ext, ".pyc") == 0 || strcmp(ext, ".pyo") == 0)
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
/* Only look into the file if we are allowed to close it, since
|
|
|
|
it then should also be seekable. */
|
|
|
|
if (closeit) {
|
|
|
|
/* Read only two bytes of the magic. If the file was opened in
|
|
|
|
text mode, the bytes 3 and 4 of the magic (\r\n) might not
|
|
|
|
be read as they are on disk. */
|
|
|
|
unsigned int halfmagic = PyImport_GetMagicNumber() & 0xFFFF;
|
|
|
|
unsigned char buf[2];
|
2001-02-11 00:35:39 -04:00
|
|
|
/* Mess: In case of -x, the stream is NOT at its start now,
|
|
|
|
and ungetc() was used to push back the first newline,
|
2001-02-17 18:02:34 -04:00
|
|
|
which makes the current stream position formally undefined,
|
|
|
|
and a x-platform nightmare.
|
|
|
|
Unfortunately, we have no direct way to know whether -x
|
|
|
|
was specified. So we use a terrible hack: if the current
|
|
|
|
stream position is not 0, we assume -x was specified, and
|
|
|
|
give up. Bug 132850 on SourceForge spells out the
|
|
|
|
hopelessness of trying anything else (fseek and ftell
|
|
|
|
don't work predictably x-platform for text-mode files).
|
2001-02-11 00:35:39 -04:00
|
|
|
*/
|
|
|
|
int ispyc = 0;
|
2001-02-17 18:02:34 -04:00
|
|
|
if (ftell(fp) == 0) {
|
|
|
|
if (fread(buf, 1, 2, fp) == 2 &&
|
2003-04-17 12:24:21 -03:00
|
|
|
((unsigned int)buf[1]<<8 | buf[0]) == halfmagic)
|
2001-02-17 18:02:34 -04:00
|
|
|
ispyc = 1;
|
|
|
|
rewind(fp);
|
|
|
|
}
|
2001-02-11 00:35:39 -04:00
|
|
|
return ispyc;
|
2001-01-04 16:30:56 -04:00
|
|
|
}
|
|
|
|
return 0;
|
2003-04-17 12:24:21 -03:00
|
|
|
}
|
2001-01-04 16:30:56 -04:00
|
|
|
|
2001-03-21 22:47:58 -04:00
|
|
|
int
|
2002-12-11 10:04:59 -04:00
|
|
|
PyRun_SimpleFileExFlags(FILE *fp, const char *filename, int closeit,
|
2001-03-21 22:47:58 -04:00
|
|
|
PyCompilerFlags *flags)
|
1992-08-04 09:41:02 -03:00
|
|
|
{
|
1997-03-04 20:20:32 -04:00
|
|
|
PyObject *m, *d, *v;
|
2002-12-11 10:04:59 -04:00
|
|
|
const char *ext;
|
2009-04-04 11:18:13 -03:00
|
|
|
int set_file_name = 0, ret, len;
|
1994-09-14 10:31:04 -03:00
|
|
|
|
1997-03-04 20:20:32 -04:00
|
|
|
m = PyImport_AddModule("__main__");
|
1992-08-04 09:41:02 -03:00
|
|
|
if (m == NULL)
|
|
|
|
return -1;
|
1997-03-04 20:20:32 -04:00
|
|
|
d = PyModule_GetDict(m);
|
2002-10-17 18:24:58 -03:00
|
|
|
if (PyDict_GetItemString(d, "__file__") == NULL) {
|
2008-06-09 01:58:54 -03:00
|
|
|
PyObject *f = PyString_FromString(filename);
|
2002-10-17 18:24:58 -03:00
|
|
|
if (f == NULL)
|
|
|
|
return -1;
|
|
|
|
if (PyDict_SetItemString(d, "__file__", f) < 0) {
|
|
|
|
Py_DECREF(f);
|
|
|
|
return -1;
|
|
|
|
}
|
2007-03-06 20:40:28 -04:00
|
|
|
set_file_name = 1;
|
2002-10-17 18:24:58 -03:00
|
|
|
Py_DECREF(f);
|
|
|
|
}
|
2009-04-04 11:18:13 -03:00
|
|
|
len = strlen(filename);
|
|
|
|
ext = filename + len - (len > 4 ? 4 : 0);
|
2001-01-04 16:30:56 -04:00
|
|
|
if (maybe_pyc_file(fp, filename, ext, closeit)) {
|
1994-09-14 10:31:04 -03:00
|
|
|
/* Try to run a pyc file. First, re-open in binary */
|
2000-08-27 16:21:52 -03:00
|
|
|
if (closeit)
|
|
|
|
fclose(fp);
|
2002-10-17 18:24:58 -03:00
|
|
|
if ((fp = fopen(filename, "rb")) == NULL) {
|
1994-09-14 10:31:04 -03:00
|
|
|
fprintf(stderr, "python: Can't reopen .pyc file\n");
|
2007-03-06 20:40:28 -04:00
|
|
|
ret = -1;
|
|
|
|
goto done;
|
1994-09-14 10:31:04 -03:00
|
|
|
}
|
1997-04-02 01:28:38 -04:00
|
|
|
/* Turn on optimization if a .pyo file is given */
|
|
|
|
if (strcmp(ext, ".pyo") == 0)
|
|
|
|
Py_OptimizeFlag = 1;
|
2001-03-21 22:47:58 -04:00
|
|
|
v = run_pyc_file(fp, filename, d, d, flags);
|
1994-09-14 10:31:04 -03:00
|
|
|
} else {
|
2003-04-17 12:24:21 -03:00
|
|
|
v = PyRun_FileExFlags(fp, filename, Py_file_input, d, d,
|
2001-03-21 22:47:58 -04:00
|
|
|
closeit, flags);
|
1994-09-14 10:31:04 -03:00
|
|
|
}
|
1992-08-04 09:41:02 -03:00
|
|
|
if (v == NULL) {
|
1997-03-04 20:20:32 -04:00
|
|
|
PyErr_Print();
|
2007-03-06 20:40:28 -04:00
|
|
|
ret = -1;
|
|
|
|
goto done;
|
1992-08-04 09:41:02 -03:00
|
|
|
}
|
1997-03-04 20:20:32 -04:00
|
|
|
Py_DECREF(v);
|
1997-05-22 19:35:04 -03:00
|
|
|
if (Py_FlushLine())
|
|
|
|
PyErr_Clear();
|
2007-03-06 20:40:28 -04:00
|
|
|
ret = 0;
|
|
|
|
done:
|
|
|
|
if (set_file_name && PyDict_DelItemString(d, "__file__"))
|
|
|
|
PyErr_Clear();
|
|
|
|
return ret;
|
1992-08-04 09:41:02 -03:00
|
|
|
}
|
|
|
|
|
Add warning mode for classic division, almost exactly as specified in
PEP 238. Changes:
- add a new flag variable Py_DivisionWarningFlag, declared in
pydebug.h, defined in object.c, set in main.c, and used in
{int,long,float,complex}object.c. When this flag is set, the
classic division operator issues a DeprecationWarning message.
- add a new API PyRun_SimpleStringFlags() to match
PyRun_SimpleString(). The main() function calls this so that
commands run with -c can also benefit from -Dnew.
- While I was at it, I changed the usage message in main() somewhat:
alphabetized the options, split it in *four* parts to fit in under
512 bytes (not that I still believe this is necessary -- doc strings
elsewhere are much longer), and perhaps most visibly, don't display
the full list of options on each command line error. Instead, the
full list is only displayed when -h is used, and otherwise a brief
reminder of -h is displayed. When -h is used, write to stdout so
that you can do `python -h | more'.
Notes:
- I don't want to use the -W option to control whether the classic
division warning is issued or not, because the machinery to decide
whether to display the warning or not is very expensive (it involves
calling into the warnings.py module). You can use -Werror to turn
the warnings into exceptions though.
- The -Dnew option doesn't select future division for all of the
program -- only for the __main__ module. I don't know if I'll ever
change this -- it would require changes to the .pyc file magic
number to do it right, and a more global notion of compiler flags.
- You can usefully combine -Dwarn and -Dnew: this gives the __main__
module new division, and warns about classic division everywhere
else.
2001-08-31 14:40:15 -03:00
|
|
|
int
|
2002-12-11 10:04:59 -04:00
|
|
|
PyRun_SimpleStringFlags(const char *command, PyCompilerFlags *flags)
|
1992-08-04 09:41:02 -03:00
|
|
|
{
|
1997-03-04 20:20:32 -04:00
|
|
|
PyObject *m, *d, *v;
|
|
|
|
m = PyImport_AddModule("__main__");
|
1992-08-04 09:41:02 -03:00
|
|
|
if (m == NULL)
|
|
|
|
return -1;
|
1997-03-04 20:20:32 -04:00
|
|
|
d = PyModule_GetDict(m);
|
Add warning mode for classic division, almost exactly as specified in
PEP 238. Changes:
- add a new flag variable Py_DivisionWarningFlag, declared in
pydebug.h, defined in object.c, set in main.c, and used in
{int,long,float,complex}object.c. When this flag is set, the
classic division operator issues a DeprecationWarning message.
- add a new API PyRun_SimpleStringFlags() to match
PyRun_SimpleString(). The main() function calls this so that
commands run with -c can also benefit from -Dnew.
- While I was at it, I changed the usage message in main() somewhat:
alphabetized the options, split it in *four* parts to fit in under
512 bytes (not that I still believe this is necessary -- doc strings
elsewhere are much longer), and perhaps most visibly, don't display
the full list of options on each command line error. Instead, the
full list is only displayed when -h is used, and otherwise a brief
reminder of -h is displayed. When -h is used, write to stdout so
that you can do `python -h | more'.
Notes:
- I don't want to use the -W option to control whether the classic
division warning is issued or not, because the machinery to decide
whether to display the warning or not is very expensive (it involves
calling into the warnings.py module). You can use -Werror to turn
the warnings into exceptions though.
- The -Dnew option doesn't select future division for all of the
program -- only for the __main__ module. I don't know if I'll ever
change this -- it would require changes to the .pyc file magic
number to do it right, and a more global notion of compiler flags.
- You can usefully combine -Dwarn and -Dnew: this gives the __main__
module new division, and warns about classic division everywhere
else.
2001-08-31 14:40:15 -03:00
|
|
|
v = PyRun_StringFlags(command, Py_file_input, d, d, flags);
|
1992-08-04 09:41:02 -03:00
|
|
|
if (v == NULL) {
|
1997-03-04 20:20:32 -04:00
|
|
|
PyErr_Print();
|
1992-08-04 09:41:02 -03:00
|
|
|
return -1;
|
|
|
|
}
|
1997-03-04 20:20:32 -04:00
|
|
|
Py_DECREF(v);
|
1997-05-22 19:35:04 -03:00
|
|
|
if (Py_FlushLine())
|
|
|
|
PyErr_Clear();
|
1992-08-04 09:41:02 -03:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
1997-08-29 19:07:17 -03:00
|
|
|
static int
|
2002-12-11 10:04:59 -04:00
|
|
|
parse_syntax_error(PyObject *err, PyObject **message, const char **filename,
|
|
|
|
int *lineno, int *offset, const char **text)
|
1997-08-29 19:07:17 -03:00
|
|
|
{
|
|
|
|
long hold;
|
|
|
|
PyObject *v;
|
|
|
|
|
|
|
|
/* old style errors */
|
|
|
|
if (PyTuple_Check(err))
|
2002-03-31 21:41:20 -04:00
|
|
|
return PyArg_ParseTuple(err, "O(ziiz)", message, filename,
|
2006-03-04 15:01:22 -04:00
|
|
|
lineno, offset, text);
|
1997-08-29 19:07:17 -03:00
|
|
|
|
|
|
|
/* new style errors. `err' is an instance */
|
|
|
|
|
|
|
|
if (! (v = PyObject_GetAttrString(err, "msg")))
|
|
|
|
goto finally;
|
|
|
|
*message = v;
|
|
|
|
|
|
|
|
if (!(v = PyObject_GetAttrString(err, "filename")))
|
|
|
|
goto finally;
|
|
|
|
if (v == Py_None)
|
|
|
|
*filename = NULL;
|
2008-06-09 01:58:54 -03:00
|
|
|
else if (! (*filename = PyString_AsString(v)))
|
1997-08-29 19:07:17 -03:00
|
|
|
goto finally;
|
|
|
|
|
|
|
|
Py_DECREF(v);
|
|
|
|
if (!(v = PyObject_GetAttrString(err, "lineno")))
|
|
|
|
goto finally;
|
|
|
|
hold = PyInt_AsLong(v);
|
|
|
|
Py_DECREF(v);
|
|
|
|
v = NULL;
|
|
|
|
if (hold < 0 && PyErr_Occurred())
|
|
|
|
goto finally;
|
|
|
|
*lineno = (int)hold;
|
|
|
|
|
|
|
|
if (!(v = PyObject_GetAttrString(err, "offset")))
|
|
|
|
goto finally;
|
2001-02-28 03:07:43 -04:00
|
|
|
if (v == Py_None) {
|
|
|
|
*offset = -1;
|
|
|
|
Py_DECREF(v);
|
|
|
|
v = NULL;
|
|
|
|
} else {
|
|
|
|
hold = PyInt_AsLong(v);
|
|
|
|
Py_DECREF(v);
|
|
|
|
v = NULL;
|
|
|
|
if (hold < 0 && PyErr_Occurred())
|
|
|
|
goto finally;
|
|
|
|
*offset = (int)hold;
|
|
|
|
}
|
1997-08-29 19:07:17 -03:00
|
|
|
|
|
|
|
if (!(v = PyObject_GetAttrString(err, "text")))
|
|
|
|
goto finally;
|
|
|
|
if (v == Py_None)
|
|
|
|
*text = NULL;
|
2008-06-09 01:58:54 -03:00
|
|
|
else if (! (*text = PyString_AsString(v)))
|
1997-08-29 19:07:17 -03:00
|
|
|
goto finally;
|
|
|
|
Py_DECREF(v);
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
finally:
|
|
|
|
Py_XDECREF(v);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
1992-08-04 09:41:02 -03:00
|
|
|
void
|
2000-07-22 15:47:25 -03:00
|
|
|
PyErr_Print(void)
|
1998-02-06 18:27:24 -04:00
|
|
|
{
|
|
|
|
PyErr_PrintEx(1);
|
|
|
|
}
|
|
|
|
|
2001-02-28 03:07:43 -04:00
|
|
|
static void
|
2002-12-11 10:04:59 -04:00
|
|
|
print_error_text(PyObject *f, int offset, const char *text)
|
2001-02-28 03:07:43 -04:00
|
|
|
{
|
|
|
|
char *nl;
|
|
|
|
if (offset >= 0) {
|
|
|
|
if (offset > 0 && offset == (int)strlen(text))
|
|
|
|
offset--;
|
|
|
|
for (;;) {
|
|
|
|
nl = strchr(text, '\n');
|
|
|
|
if (nl == NULL || nl-text >= offset)
|
|
|
|
break;
|
2006-02-15 13:27:45 -04:00
|
|
|
offset -= (int)(nl+1-text);
|
2001-02-28 03:07:43 -04:00
|
|
|
text = nl+1;
|
|
|
|
}
|
|
|
|
while (*text == ' ' || *text == '\t') {
|
|
|
|
text++;
|
|
|
|
offset--;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
PyFile_WriteString(" ", f);
|
|
|
|
PyFile_WriteString(text, f);
|
|
|
|
if (*text == '\0' || text[strlen(text)-1] != '\n')
|
|
|
|
PyFile_WriteString("\n", f);
|
|
|
|
if (offset == -1)
|
|
|
|
return;
|
|
|
|
PyFile_WriteString(" ", f);
|
|
|
|
offset--;
|
|
|
|
while (offset > 0) {
|
|
|
|
PyFile_WriteString(" ", f);
|
|
|
|
offset--;
|
|
|
|
}
|
|
|
|
PyFile_WriteString("^\n", f);
|
|
|
|
}
|
|
|
|
|
2001-03-23 13:54:43 -04:00
|
|
|
static void
|
|
|
|
handle_system_exit(void)
|
2001-03-23 11:36:41 -04:00
|
|
|
{
|
2006-03-04 15:01:22 -04:00
|
|
|
PyObject *exception, *value, *tb;
|
|
|
|
int exitcode = 0;
|
2003-04-19 15:47:02 -03:00
|
|
|
|
2007-03-06 20:34:46 -04:00
|
|
|
if (Py_InspectFlag)
|
|
|
|
/* Don't exit if -i flag was given. This flag is set to 0
|
|
|
|
* when entering interactive mode for inspecting. */
|
|
|
|
return;
|
|
|
|
|
2001-03-23 13:54:43 -04:00
|
|
|
PyErr_Fetch(&exception, &value, &tb);
|
2001-03-23 11:36:41 -04:00
|
|
|
if (Py_FlushLine())
|
|
|
|
PyErr_Clear();
|
|
|
|
fflush(stdout);
|
|
|
|
if (value == NULL || value == Py_None)
|
2003-04-19 15:47:02 -03:00
|
|
|
goto done;
|
2006-03-01 00:25:17 -04:00
|
|
|
if (PyExceptionInstance_Check(value)) {
|
2001-03-23 11:36:41 -04:00
|
|
|
/* The error code should be in the `code' attribute. */
|
|
|
|
PyObject *code = PyObject_GetAttrString(value, "code");
|
|
|
|
if (code) {
|
|
|
|
Py_DECREF(value);
|
|
|
|
value = code;
|
|
|
|
if (value == Py_None)
|
2003-04-19 15:47:02 -03:00
|
|
|
goto done;
|
2001-03-23 11:36:41 -04:00
|
|
|
}
|
|
|
|
/* If we failed to dig out the 'code' attribute,
|
|
|
|
just let the else clause below print the error. */
|
|
|
|
}
|
|
|
|
if (PyInt_Check(value))
|
2003-04-19 15:47:02 -03:00
|
|
|
exitcode = (int)PyInt_AsLong(value);
|
2001-03-23 11:36:41 -04:00
|
|
|
else {
|
|
|
|
PyObject_Print(value, stderr, Py_PRINT_RAW);
|
|
|
|
PySys_WriteStderr("\n");
|
2003-04-19 15:47:02 -03:00
|
|
|
exitcode = 1;
|
2001-03-23 11:36:41 -04:00
|
|
|
}
|
2003-04-19 15:47:02 -03:00
|
|
|
done:
|
2006-03-04 15:01:22 -04:00
|
|
|
/* Restore and clear the exception info, in order to properly decref
|
|
|
|
* the exception, value, and traceback. If we just exit instead,
|
|
|
|
* these leak, which confuses PYTHONDUMPREFS output, and may prevent
|
|
|
|
* some finalizers from running.
|
|
|
|
*/
|
2003-04-19 15:47:02 -03:00
|
|
|
PyErr_Restore(exception, value, tb);
|
|
|
|
PyErr_Clear();
|
|
|
|
Py_Exit(exitcode);
|
|
|
|
/* NOTREACHED */
|
2001-03-23 11:36:41 -04:00
|
|
|
}
|
|
|
|
|
1998-02-06 18:27:24 -04:00
|
|
|
void
|
2000-07-22 15:47:25 -03:00
|
|
|
PyErr_PrintEx(int set_sys_last_vars)
|
1992-08-04 09:41:02 -03:00
|
|
|
{
|
2001-03-22 22:46:52 -04:00
|
|
|
PyObject *exception, *v, *tb, *hook;
|
2001-03-23 13:54:43 -04:00
|
|
|
|
|
|
|
if (PyErr_ExceptionMatches(PyExc_SystemExit)) {
|
|
|
|
handle_system_exit();
|
|
|
|
}
|
1997-03-04 20:20:32 -04:00
|
|
|
PyErr_Fetch(&exception, &v, &tb);
|
2005-10-20 16:59:25 -03:00
|
|
|
if (exception == NULL)
|
|
|
|
return;
|
1997-08-29 19:07:17 -03:00
|
|
|
PyErr_NormalizeException(&exception, &v, &tb);
|
1995-01-02 15:04:15 -04:00
|
|
|
if (exception == NULL)
|
1997-05-22 21:19:20 -03:00
|
|
|
return;
|
2008-07-05 07:07:18 -03:00
|
|
|
/* Now we know v != NULL too */
|
1998-02-06 18:27:24 -04:00
|
|
|
if (set_sys_last_vars) {
|
|
|
|
PySys_SetObject("last_type", exception);
|
|
|
|
PySys_SetObject("last_value", v);
|
|
|
|
PySys_SetObject("last_traceback", tb);
|
|
|
|
}
|
2001-03-22 22:46:52 -04:00
|
|
|
hook = PySys_GetObject("excepthook");
|
|
|
|
if (hook) {
|
2003-10-12 16:09:37 -03:00
|
|
|
PyObject *args = PyTuple_Pack(3,
|
2006-03-07 14:31:44 -04:00
|
|
|
exception, v, tb ? tb : Py_None);
|
2001-03-22 22:46:52 -04:00
|
|
|
PyObject *result = PyEval_CallObject(hook, args);
|
|
|
|
if (result == NULL) {
|
|
|
|
PyObject *exception2, *v2, *tb2;
|
2001-03-23 13:54:43 -04:00
|
|
|
if (PyErr_ExceptionMatches(PyExc_SystemExit)) {
|
|
|
|
handle_system_exit();
|
|
|
|
}
|
2001-03-22 22:46:52 -04:00
|
|
|
PyErr_Fetch(&exception2, &v2, &tb2);
|
|
|
|
PyErr_NormalizeException(&exception2, &v2, &tb2);
|
2006-07-16 21:59:04 -03:00
|
|
|
/* It should not be possible for exception2 or v2
|
|
|
|
to be NULL. However PyErr_Display() can't
|
|
|
|
tolerate NULLs, so just be safe. */
|
|
|
|
if (exception2 == NULL) {
|
|
|
|
exception2 = Py_None;
|
|
|
|
Py_INCREF(exception2);
|
|
|
|
}
|
|
|
|
if (v2 == NULL) {
|
|
|
|
v2 = Py_None;
|
|
|
|
Py_INCREF(v2);
|
|
|
|
}
|
2001-03-22 22:46:52 -04:00
|
|
|
if (Py_FlushLine())
|
|
|
|
PyErr_Clear();
|
|
|
|
fflush(stdout);
|
|
|
|
PySys_WriteStderr("Error in sys.excepthook:\n");
|
|
|
|
PyErr_Display(exception2, v2, tb2);
|
|
|
|
PySys_WriteStderr("\nOriginal exception was:\n");
|
|
|
|
PyErr_Display(exception, v, tb);
|
2006-07-16 21:59:04 -03:00
|
|
|
Py_DECREF(exception2);
|
|
|
|
Py_DECREF(v2);
|
2001-12-07 11:35:35 -04:00
|
|
|
Py_XDECREF(tb2);
|
2001-03-22 22:46:52 -04:00
|
|
|
}
|
|
|
|
Py_XDECREF(result);
|
|
|
|
Py_XDECREF(args);
|
|
|
|
} else {
|
|
|
|
PySys_WriteStderr("sys.excepthook is missing\n");
|
|
|
|
PyErr_Display(exception, v, tb);
|
|
|
|
}
|
|
|
|
Py_XDECREF(exception);
|
|
|
|
Py_XDECREF(v);
|
|
|
|
Py_XDECREF(tb);
|
|
|
|
}
|
|
|
|
|
2006-05-27 09:29:24 -03:00
|
|
|
void
|
|
|
|
PyErr_Display(PyObject *exception, PyObject *value, PyObject *tb)
|
2001-03-22 22:46:52 -04:00
|
|
|
{
|
|
|
|
int err = 0;
|
|
|
|
PyObject *f = PySys_GetObject("stderr");
|
2004-03-22 16:16:58 -04:00
|
|
|
Py_INCREF(value);
|
1992-09-25 18:59:05 -03:00
|
|
|
if (f == NULL)
|
|
|
|
fprintf(stderr, "lost sys.stderr\n");
|
|
|
|
else {
|
1998-02-28 00:31:39 -04:00
|
|
|
if (Py_FlushLine())
|
|
|
|
PyErr_Clear();
|
1997-05-22 19:35:04 -03:00
|
|
|
fflush(stdout);
|
2001-03-22 22:46:52 -04:00
|
|
|
if (tb && tb != Py_None)
|
|
|
|
err = PyTraceBack_Print(tb, f);
|
1997-08-26 15:09:48 -03:00
|
|
|
if (err == 0 &&
|
2004-03-22 16:16:58 -04:00
|
|
|
PyObject_HasAttrString(value, "print_file_and_line"))
|
1997-08-26 15:09:48 -03:00
|
|
|
{
|
1997-03-04 20:20:32 -04:00
|
|
|
PyObject *message;
|
2002-12-11 10:04:59 -04:00
|
|
|
const char *filename, *text;
|
1994-08-29 09:50:44 -03:00
|
|
|
int lineno, offset;
|
2004-03-22 16:16:58 -04:00
|
|
|
if (!parse_syntax_error(value, &message, &filename,
|
1997-08-29 19:07:17 -03:00
|
|
|
&lineno, &offset, &text))
|
1997-03-04 20:20:32 -04:00
|
|
|
PyErr_Clear();
|
1994-08-29 09:50:44 -03:00
|
|
|
else {
|
|
|
|
char buf[10];
|
1997-03-04 20:20:32 -04:00
|
|
|
PyFile_WriteString(" File \"", f);
|
1994-08-29 09:50:44 -03:00
|
|
|
if (filename == NULL)
|
1997-03-04 20:20:32 -04:00
|
|
|
PyFile_WriteString("<string>", f);
|
1994-08-29 09:50:44 -03:00
|
|
|
else
|
1997-03-04 20:20:32 -04:00
|
|
|
PyFile_WriteString(filename, f);
|
|
|
|
PyFile_WriteString("\", line ", f);
|
2001-11-28 16:42:20 -04:00
|
|
|
PyOS_snprintf(buf, sizeof(buf), "%d", lineno);
|
1997-03-04 20:20:32 -04:00
|
|
|
PyFile_WriteString(buf, f);
|
|
|
|
PyFile_WriteString("\n", f);
|
2001-02-28 03:07:43 -04:00
|
|
|
if (text != NULL)
|
|
|
|
print_error_text(f, offset, text);
|
2004-03-22 16:16:58 -04:00
|
|
|
Py_DECREF(value);
|
|
|
|
value = message;
|
1997-05-22 19:35:04 -03:00
|
|
|
/* Can't be bothered to check all those
|
|
|
|
PyFile_WriteString() calls */
|
|
|
|
if (PyErr_Occurred())
|
|
|
|
err = -1;
|
1994-08-29 09:50:44 -03:00
|
|
|
}
|
|
|
|
}
|
1997-05-22 19:35:04 -03:00
|
|
|
if (err) {
|
|
|
|
/* Don't do anything else */
|
|
|
|
}
|
2006-03-01 00:25:17 -04:00
|
|
|
else if (PyExceptionClass_Check(exception)) {
|
2006-05-27 09:29:24 -03:00
|
|
|
PyObject* moduleName;
|
2006-05-28 07:41:29 -03:00
|
|
|
char* className = PyExceptionClass_Name(exception);
|
|
|
|
if (className != NULL) {
|
|
|
|
char *dot = strrchr(className, '.');
|
|
|
|
if (dot != NULL)
|
|
|
|
className = dot+1;
|
|
|
|
}
|
1997-09-16 18:42:03 -03:00
|
|
|
|
2006-05-28 07:41:29 -03:00
|
|
|
moduleName = PyObject_GetAttrString(exception, "__module__");
|
1997-09-16 18:42:03 -03:00
|
|
|
if (moduleName == NULL)
|
1997-05-22 19:35:04 -03:00
|
|
|
err = PyFile_WriteString("<unknown>", f);
|
1997-09-16 18:42:03 -03:00
|
|
|
else {
|
2008-06-09 01:58:54 -03:00
|
|
|
char* modstr = PyString_AsString(moduleName);
|
2003-04-17 12:24:21 -03:00
|
|
|
if (modstr && strcmp(modstr, "exceptions"))
|
1997-09-16 18:42:03 -03:00
|
|
|
{
|
|
|
|
err = PyFile_WriteString(modstr, f);
|
|
|
|
err += PyFile_WriteString(".", f);
|
|
|
|
}
|
2006-05-27 09:29:24 -03:00
|
|
|
Py_DECREF(moduleName);
|
1997-09-16 18:42:03 -03:00
|
|
|
}
|
|
|
|
if (err == 0) {
|
|
|
|
if (className == NULL)
|
|
|
|
err = PyFile_WriteString("<unknown>", f);
|
|
|
|
else
|
2006-03-01 00:25:17 -04:00
|
|
|
err = PyFile_WriteString(className, f);
|
1997-09-16 18:42:03 -03:00
|
|
|
}
|
1995-02-07 11:30:45 -04:00
|
|
|
}
|
1997-05-22 19:35:04 -03:00
|
|
|
else
|
|
|
|
err = PyFile_WriteObject(exception, f, Py_PRINT_RAW);
|
2006-03-02 14:34:57 -04:00
|
|
|
if (err == 0 && (value != Py_None)) {
|
|
|
|
PyObject *s = PyObject_Str(value);
|
|
|
|
/* only print colon if the str() of the
|
|
|
|
object is not the empty string
|
|
|
|
*/
|
|
|
|
if (s == NULL)
|
|
|
|
err = -1;
|
2008-06-09 01:58:54 -03:00
|
|
|
else if (!PyString_Check(s) ||
|
|
|
|
PyString_GET_SIZE(s) != 0)
|
2006-03-02 14:34:57 -04:00
|
|
|
err = PyFile_WriteString(": ", f);
|
|
|
|
if (err == 0)
|
|
|
|
err = PyFile_WriteObject(s, f, Py_PRINT_RAW);
|
|
|
|
Py_XDECREF(s);
|
1992-09-25 18:59:05 -03:00
|
|
|
}
|
2007-03-12 11:30:05 -03:00
|
|
|
/* try to write a newline in any case */
|
|
|
|
err += PyFile_WriteString("\n", f);
|
1992-08-04 09:41:02 -03:00
|
|
|
}
|
2004-03-22 16:16:58 -04:00
|
|
|
Py_DECREF(value);
|
1997-05-22 19:35:04 -03:00
|
|
|
/* If an error happened here, don't show it.
|
|
|
|
XXX This is wrong, but too many callers rely on this behavior. */
|
|
|
|
if (err != 0)
|
|
|
|
PyErr_Clear();
|
1992-08-04 09:41:02 -03:00
|
|
|
}
|
|
|
|
|
1997-03-04 20:20:32 -04:00
|
|
|
PyObject *
|
2006-05-28 07:41:29 -03:00
|
|
|
PyRun_StringFlags(const char *str, int start, PyObject *globals,
|
2005-10-20 16:59:25 -03:00
|
|
|
PyObject *locals, PyCompilerFlags *flags)
|
1992-08-04 09:41:02 -03:00
|
|
|
{
|
2006-03-04 14:52:26 -04:00
|
|
|
PyObject *ret = NULL;
|
2006-07-21 04:59:47 -03:00
|
|
|
mod_ty mod;
|
2006-07-22 13:20:49 -03:00
|
|
|
PyArena *arena = PyArena_New();
|
2006-07-21 04:59:47 -03:00
|
|
|
if (arena == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
mod = PyParser_ASTFromString(str, "<string>", start, flags, arena);
|
2006-03-04 14:52:26 -04:00
|
|
|
if (mod != NULL)
|
|
|
|
ret = run_mod(mod, "<string>", globals, locals, flags, arena);
|
2006-03-04 15:01:22 -04:00
|
|
|
PyArena_Free(arena);
|
2005-10-20 16:59:25 -03:00
|
|
|
return ret;
|
2001-03-21 22:47:58 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
PyObject *
|
2002-12-11 10:04:59 -04:00
|
|
|
PyRun_FileExFlags(FILE *fp, const char *filename, int start, PyObject *globals,
|
2001-03-21 22:47:58 -04:00
|
|
|
PyObject *locals, int closeit, PyCompilerFlags *flags)
|
|
|
|
{
|
2005-10-20 16:59:25 -03:00
|
|
|
PyObject *ret;
|
2006-07-21 04:59:47 -03:00
|
|
|
mod_ty mod;
|
2006-07-22 13:20:49 -03:00
|
|
|
PyArena *arena = PyArena_New();
|
2006-07-21 04:59:47 -03:00
|
|
|
if (arena == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
mod = PyParser_ASTFromFile(fp, filename, start, 0, 0,
|
|
|
|
flags, NULL, arena);
|
2007-03-06 08:17:50 -04:00
|
|
|
if (closeit)
|
|
|
|
fclose(fp);
|
2005-12-17 16:54:49 -04:00
|
|
|
if (mod == NULL) {
|
2006-03-04 15:01:22 -04:00
|
|
|
PyArena_Free(arena);
|
2005-10-20 16:59:25 -03:00
|
|
|
return NULL;
|
2006-03-04 15:01:22 -04:00
|
|
|
}
|
2006-03-04 14:52:26 -04:00
|
|
|
ret = run_mod(mod, filename, globals, locals, flags, arena);
|
2006-03-04 15:01:22 -04:00
|
|
|
PyArena_Free(arena);
|
2005-10-20 16:59:25 -03:00
|
|
|
return ret;
|
2001-03-21 22:47:58 -04:00
|
|
|
}
|
|
|
|
|
1997-03-04 20:20:32 -04:00
|
|
|
static PyObject *
|
2005-10-20 16:59:25 -03:00
|
|
|
run_mod(mod_ty mod, const char *filename, PyObject *globals, PyObject *locals,
|
2005-12-17 16:54:49 -04:00
|
|
|
PyCompilerFlags *flags, PyArena *arena)
|
1992-08-04 09:41:02 -03:00
|
|
|
{
|
1997-03-04 20:20:32 -04:00
|
|
|
PyCodeObject *co;
|
|
|
|
PyObject *v;
|
2005-12-17 16:54:49 -04:00
|
|
|
co = PyAST_Compile(mod, filename, flags, arena);
|
1992-08-04 09:41:02 -03:00
|
|
|
if (co == NULL)
|
|
|
|
return NULL;
|
1997-03-04 20:20:32 -04:00
|
|
|
v = PyEval_EvalCode(co, globals, locals);
|
|
|
|
Py_DECREF(co);
|
1992-08-04 09:41:02 -03:00
|
|
|
return v;
|
|
|
|
}
|
|
|
|
|
1997-03-04 20:20:32 -04:00
|
|
|
static PyObject *
|
2006-05-28 07:41:29 -03:00
|
|
|
run_pyc_file(FILE *fp, const char *filename, PyObject *globals,
|
2005-10-20 16:59:25 -03:00
|
|
|
PyObject *locals, PyCompilerFlags *flags)
|
1994-09-14 10:31:04 -03:00
|
|
|
{
|
1997-03-04 20:20:32 -04:00
|
|
|
PyCodeObject *co;
|
|
|
|
PyObject *v;
|
1994-09-14 10:31:04 -03:00
|
|
|
long magic;
|
2000-08-31 02:38:39 -03:00
|
|
|
long PyImport_GetMagicNumber(void);
|
1994-09-14 10:31:04 -03:00
|
|
|
|
1997-03-04 20:20:32 -04:00
|
|
|
magic = PyMarshal_ReadLongFromFile(fp);
|
|
|
|
if (magic != PyImport_GetMagicNumber()) {
|
|
|
|
PyErr_SetString(PyExc_RuntimeError,
|
1994-09-14 10:31:04 -03:00
|
|
|
"Bad magic number in .pyc file");
|
|
|
|
return NULL;
|
|
|
|
}
|
1997-03-04 20:20:32 -04:00
|
|
|
(void) PyMarshal_ReadLongFromFile(fp);
|
2001-01-27 20:27:39 -04:00
|
|
|
v = PyMarshal_ReadLastObjectFromFile(fp);
|
1994-09-14 10:31:04 -03:00
|
|
|
fclose(fp);
|
1997-03-04 20:20:32 -04:00
|
|
|
if (v == NULL || !PyCode_Check(v)) {
|
|
|
|
Py_XDECREF(v);
|
|
|
|
PyErr_SetString(PyExc_RuntimeError,
|
1994-09-14 10:31:04 -03:00
|
|
|
"Bad code object in .pyc file");
|
|
|
|
return NULL;
|
|
|
|
}
|
1997-03-04 20:20:32 -04:00
|
|
|
co = (PyCodeObject *)v;
|
|
|
|
v = PyEval_EvalCode(co, globals, locals);
|
2001-08-10 18:41:33 -03:00
|
|
|
if (v && flags)
|
|
|
|
flags->cf_flags |= (co->co_flags & PyCF_MASK);
|
1997-03-04 20:20:32 -04:00
|
|
|
Py_DECREF(co);
|
1994-09-14 10:31:04 -03:00
|
|
|
return v;
|
|
|
|
}
|
|
|
|
|
2001-03-21 22:47:58 -04:00
|
|
|
PyObject *
|
2003-04-17 12:24:21 -03:00
|
|
|
Py_CompileStringFlags(const char *str, const char *filename, int start,
|
2001-03-21 22:47:58 -04:00
|
|
|
PyCompilerFlags *flags)
|
1993-03-30 13:46:03 -04:00
|
|
|
{
|
1997-03-04 20:20:32 -04:00
|
|
|
PyCodeObject *co;
|
2006-07-22 13:20:49 -03:00
|
|
|
mod_ty mod;
|
2006-03-04 15:01:22 -04:00
|
|
|
PyArena *arena = PyArena_New();
|
2006-07-22 13:20:49 -03:00
|
|
|
if (arena == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
mod = PyParser_ASTFromString(str, filename, start, flags, arena);
|
2005-12-17 16:54:49 -04:00
|
|
|
if (mod == NULL) {
|
2006-03-04 15:01:22 -04:00
|
|
|
PyArena_Free(arena);
|
1993-03-30 13:46:03 -04:00
|
|
|
return NULL;
|
2006-03-04 15:01:22 -04:00
|
|
|
}
|
2006-02-26 18:12:35 -04:00
|
|
|
if (flags && (flags->cf_flags & PyCF_ONLY_AST)) {
|
2006-02-26 15:42:26 -04:00
|
|
|
PyObject *result = PyAST_mod2obj(mod);
|
|
|
|
PyArena_Free(arena);
|
|
|
|
return result;
|
|
|
|
}
|
2005-12-17 16:54:49 -04:00
|
|
|
co = PyAST_Compile(mod, filename, flags, arena);
|
2006-03-04 15:01:22 -04:00
|
|
|
PyArena_Free(arena);
|
1997-03-04 20:20:32 -04:00
|
|
|
return (PyObject *)co;
|
1993-03-30 13:46:03 -04:00
|
|
|
}
|
|
|
|
|
2001-02-02 14:19:15 -04:00
|
|
|
struct symtable *
|
2002-12-11 10:04:59 -04:00
|
|
|
Py_SymtableString(const char *str, const char *filename, int start)
|
2001-02-02 14:19:15 -04:00
|
|
|
{
|
|
|
|
struct symtable *st;
|
2006-07-22 13:20:49 -03:00
|
|
|
mod_ty mod;
|
2008-03-26 19:01:37 -03:00
|
|
|
PyCompilerFlags flags;
|
2006-03-04 15:01:22 -04:00
|
|
|
PyArena *arena = PyArena_New();
|
2006-07-22 13:20:49 -03:00
|
|
|
if (arena == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
2008-03-26 19:51:58 -03:00
|
|
|
flags.cf_flags = 0;
|
|
|
|
|
2008-03-26 19:01:37 -03:00
|
|
|
mod = PyParser_ASTFromString(str, filename, start, &flags, arena);
|
2005-12-17 16:54:49 -04:00
|
|
|
if (mod == NULL) {
|
2006-03-04 15:01:22 -04:00
|
|
|
PyArena_Free(arena);
|
2001-02-02 14:19:15 -04:00
|
|
|
return NULL;
|
2006-03-04 15:01:22 -04:00
|
|
|
}
|
2005-10-20 16:59:25 -03:00
|
|
|
st = PySymtable_Build(mod, filename, 0);
|
2006-03-04 15:01:22 -04:00
|
|
|
PyArena_Free(arena);
|
2001-02-02 14:19:15 -04:00
|
|
|
return st;
|
|
|
|
}
|
|
|
|
|
2005-10-20 16:59:25 -03:00
|
|
|
/* Preferred access to parser is through AST. */
|
|
|
|
mod_ty
|
2006-05-28 07:41:29 -03:00
|
|
|
PyParser_ASTFromString(const char *s, const char *filename, int start,
|
2005-12-17 16:54:49 -04:00
|
|
|
PyCompilerFlags *flags, PyArena *arena)
|
2005-10-20 16:59:25 -03:00
|
|
|
{
|
|
|
|
mod_ty mod;
|
2008-10-30 23:16:05 -03:00
|
|
|
PyCompilerFlags localflags;
|
2005-10-20 16:59:25 -03:00
|
|
|
perrdetail err;
|
2008-03-26 20:07:43 -03:00
|
|
|
int iflags = PARSER_FLAGS(flags);
|
2008-03-26 19:01:37 -03:00
|
|
|
|
|
|
|
node *n = PyParser_ParseStringFlagsFilenameEx(s, filename,
|
2006-05-28 07:41:29 -03:00
|
|
|
&_PyParser_Grammar, start, &err,
|
2008-03-26 19:01:37 -03:00
|
|
|
&iflags);
|
2008-10-30 23:16:05 -03:00
|
|
|
if (flags == NULL) {
|
|
|
|
localflags.cf_flags = 0;
|
|
|
|
flags = &localflags;
|
|
|
|
}
|
2005-10-20 16:59:25 -03:00
|
|
|
if (n) {
|
2008-10-30 23:16:05 -03:00
|
|
|
flags->cf_flags |= iflags & PyCF_MASK;
|
2005-12-17 16:54:49 -04:00
|
|
|
mod = PyAST_FromNode(n, flags, filename, arena);
|
2005-10-20 16:59:25 -03:00
|
|
|
PyNode_Free(n);
|
|
|
|
return mod;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
err_input(&err);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
mod_ty
|
2006-05-28 07:41:29 -03:00
|
|
|
PyParser_ASTFromFile(FILE *fp, const char *filename, int start, char *ps1,
|
2005-12-17 16:54:49 -04:00
|
|
|
char *ps2, PyCompilerFlags *flags, int *errcode,
|
2006-03-04 15:01:22 -04:00
|
|
|
PyArena *arena)
|
2005-10-20 16:59:25 -03:00
|
|
|
{
|
|
|
|
mod_ty mod;
|
2008-10-30 23:16:05 -03:00
|
|
|
PyCompilerFlags localflags;
|
2005-10-20 16:59:25 -03:00
|
|
|
perrdetail err;
|
2008-03-26 20:07:43 -03:00
|
|
|
int iflags = PARSER_FLAGS(flags);
|
2008-03-26 19:01:37 -03:00
|
|
|
|
|
|
|
node *n = PyParser_ParseFileFlagsEx(fp, filename, &_PyParser_Grammar,
|
|
|
|
start, ps1, ps2, &err, &iflags);
|
2008-10-30 23:16:05 -03:00
|
|
|
if (flags == NULL) {
|
|
|
|
localflags.cf_flags = 0;
|
|
|
|
flags = &localflags;
|
|
|
|
}
|
2005-10-20 16:59:25 -03:00
|
|
|
if (n) {
|
2008-10-30 23:16:05 -03:00
|
|
|
flags->cf_flags |= iflags & PyCF_MASK;
|
2005-12-17 16:54:49 -04:00
|
|
|
mod = PyAST_FromNode(n, flags, filename, arena);
|
2005-10-20 16:59:25 -03:00
|
|
|
PyNode_Free(n);
|
|
|
|
return mod;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
err_input(&err);
|
|
|
|
if (errcode)
|
|
|
|
*errcode = err.error;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1994-08-29 09:50:44 -03:00
|
|
|
/* Simplified interface to parsefile -- return node or set exception */
|
1992-08-04 09:41:02 -03:00
|
|
|
|
1994-08-29 09:50:44 -03:00
|
|
|
node *
|
2002-12-11 10:04:59 -04:00
|
|
|
PyParser_SimpleParseFileFlags(FILE *fp, const char *filename, int start, int flags)
|
1992-08-04 09:41:02 -03:00
|
|
|
{
|
1994-08-29 09:50:44 -03:00
|
|
|
perrdetail err;
|
2005-12-17 16:54:49 -04:00
|
|
|
node *n = PyParser_ParseFileFlags(fp, filename, &_PyParser_Grammar,
|
|
|
|
start, NULL, NULL, &err, flags);
|
1994-08-29 09:50:44 -03:00
|
|
|
if (n == NULL)
|
|
|
|
err_input(&err);
|
2006-05-28 07:41:29 -03:00
|
|
|
|
1994-08-29 09:50:44 -03:00
|
|
|
return n;
|
1992-08-04 09:41:02 -03:00
|
|
|
}
|
|
|
|
|
1994-08-29 09:50:44 -03:00
|
|
|
/* Simplified interface to parsestring -- return node or set exception */
|
1992-08-04 09:41:02 -03:00
|
|
|
|
1994-08-29 09:50:44 -03:00
|
|
|
node *
|
2002-12-11 10:04:59 -04:00
|
|
|
PyParser_SimpleParseStringFlags(const char *str, int start, int flags)
|
1992-08-04 09:41:02 -03:00
|
|
|
{
|
1994-08-29 09:50:44 -03:00
|
|
|
perrdetail err;
|
2005-12-17 16:54:49 -04:00
|
|
|
node *n = PyParser_ParseStringFlags(str, &_PyParser_Grammar,
|
|
|
|
start, &err, flags);
|
1994-08-29 09:50:44 -03:00
|
|
|
if (n == NULL)
|
|
|
|
err_input(&err);
|
|
|
|
return n;
|
|
|
|
}
|
|
|
|
|
2002-07-09 06:23:27 -03:00
|
|
|
node *
|
2002-12-11 10:04:59 -04:00
|
|
|
PyParser_SimpleParseStringFlagsFilename(const char *str, const char *filename,
|
2002-07-09 06:23:27 -03:00
|
|
|
int start, int flags)
|
|
|
|
{
|
|
|
|
perrdetail err;
|
2005-12-17 16:54:49 -04:00
|
|
|
node *n = PyParser_ParseStringFlagsFilename(str, filename,
|
|
|
|
&_PyParser_Grammar, start, &err, flags);
|
2002-07-09 06:23:27 -03:00
|
|
|
if (n == NULL)
|
|
|
|
err_input(&err);
|
|
|
|
return n;
|
|
|
|
}
|
|
|
|
|
|
|
|
node *
|
2002-12-11 10:04:59 -04:00
|
|
|
PyParser_SimpleParseStringFilename(const char *str, const char *filename, int start)
|
2002-07-09 06:23:27 -03:00
|
|
|
{
|
2005-12-17 16:54:49 -04:00
|
|
|
return PyParser_SimpleParseStringFlagsFilename(str, filename, start, 0);
|
2002-07-09 06:23:27 -03:00
|
|
|
}
|
|
|
|
|
2003-04-17 13:02:26 -03:00
|
|
|
/* May want to move a more generalized form of this to parsetok.c or
|
|
|
|
even parser modules. */
|
|
|
|
|
|
|
|
void
|
|
|
|
PyParser_SetError(perrdetail *err)
|
|
|
|
{
|
|
|
|
err_input(err);
|
|
|
|
}
|
|
|
|
|
1994-08-29 09:50:44 -03:00
|
|
|
/* Set the error appropriate to the given input error code (see errcode.h) */
|
|
|
|
|
|
|
|
static void
|
2000-07-22 15:47:25 -03:00
|
|
|
err_input(perrdetail *err)
|
1994-08-29 09:50:44 -03:00
|
|
|
{
|
2000-07-11 14:53:00 -03:00
|
|
|
PyObject *v, *w, *errtype;
|
2002-08-04 14:29:52 -03:00
|
|
|
PyObject* u = NULL;
|
1994-08-29 09:50:44 -03:00
|
|
|
char *msg = NULL;
|
2000-07-11 14:53:00 -03:00
|
|
|
errtype = PyExc_SyntaxError;
|
1994-08-29 09:50:44 -03:00
|
|
|
switch (err->error) {
|
|
|
|
case E_SYNTAX:
|
2000-07-11 14:53:00 -03:00
|
|
|
errtype = PyExc_IndentationError;
|
|
|
|
if (err->expected == INDENT)
|
|
|
|
msg = "expected an indented block";
|
|
|
|
else if (err->token == INDENT)
|
|
|
|
msg = "unexpected indent";
|
|
|
|
else if (err->token == DEDENT)
|
|
|
|
msg = "unexpected unindent";
|
|
|
|
else {
|
|
|
|
errtype = PyExc_SyntaxError;
|
|
|
|
msg = "invalid syntax";
|
|
|
|
}
|
1994-08-29 09:50:44 -03:00
|
|
|
break;
|
|
|
|
case E_TOKEN:
|
|
|
|
msg = "invalid token";
|
|
|
|
break;
|
2002-08-14 22:20:16 -03:00
|
|
|
case E_EOFS:
|
2008-05-11 12:07:39 -03:00
|
|
|
msg = "EOF while scanning triple-quoted string literal";
|
2002-08-14 22:20:16 -03:00
|
|
|
break;
|
|
|
|
case E_EOLS:
|
2008-05-11 12:07:39 -03:00
|
|
|
msg = "EOL while scanning string literal";
|
2002-08-14 22:20:16 -03:00
|
|
|
break;
|
1994-08-29 09:50:44 -03:00
|
|
|
case E_INTR:
|
2004-07-07 14:44:12 -03:00
|
|
|
if (!PyErr_Occurred())
|
|
|
|
PyErr_SetNone(PyExc_KeyboardInterrupt);
|
2008-07-19 07:08:55 -03:00
|
|
|
goto cleanup;
|
1994-08-29 09:50:44 -03:00
|
|
|
case E_NOMEM:
|
1997-03-04 20:20:32 -04:00
|
|
|
PyErr_NoMemory();
|
2008-07-19 07:08:55 -03:00
|
|
|
goto cleanup;
|
1994-08-29 09:50:44 -03:00
|
|
|
case E_EOF:
|
|
|
|
msg = "unexpected EOF while parsing";
|
|
|
|
break;
|
2000-07-11 14:53:00 -03:00
|
|
|
case E_TABSPACE:
|
|
|
|
errtype = PyExc_TabError;
|
1998-04-10 16:43:42 -03:00
|
|
|
msg = "inconsistent use of tabs and spaces in indentation";
|
|
|
|
break;
|
2000-06-20 16:10:44 -03:00
|
|
|
case E_OVERFLOW:
|
|
|
|
msg = "expression too long";
|
|
|
|
break;
|
2000-07-11 14:53:00 -03:00
|
|
|
case E_DEDENT:
|
|
|
|
errtype = PyExc_IndentationError;
|
|
|
|
msg = "unindent does not match any outer indentation level";
|
|
|
|
break;
|
|
|
|
case E_TOODEEP:
|
|
|
|
errtype = PyExc_IndentationError;
|
|
|
|
msg = "too many levels of indentation";
|
|
|
|
break;
|
2005-08-24 05:39:24 -03:00
|
|
|
case E_DECODE: {
|
|
|
|
PyObject *type, *value, *tb;
|
|
|
|
PyErr_Fetch(&type, &value, &tb);
|
2002-08-04 14:29:52 -03:00
|
|
|
if (value != NULL) {
|
2005-08-24 05:39:24 -03:00
|
|
|
u = PyObject_Str(value);
|
2002-08-04 14:29:52 -03:00
|
|
|
if (u != NULL) {
|
2008-06-09 01:58:54 -03:00
|
|
|
msg = PyString_AsString(u);
|
2002-08-04 14:29:52 -03:00
|
|
|
}
|
|
|
|
}
|
2004-07-21 02:35:02 -03:00
|
|
|
if (msg == NULL)
|
|
|
|
msg = "unknown decode error";
|
2005-12-18 01:29:30 -04:00
|
|
|
Py_XDECREF(type);
|
|
|
|
Py_XDECREF(value);
|
2005-10-01 22:48:49 -03:00
|
|
|
Py_XDECREF(tb);
|
2004-07-21 02:35:02 -03:00
|
|
|
break;
|
2002-08-04 14:29:52 -03:00
|
|
|
}
|
2005-03-03 07:45:45 -04:00
|
|
|
case E_LINECONT:
|
|
|
|
msg = "unexpected character after line continuation character";
|
|
|
|
break;
|
1994-08-29 09:50:44 -03:00
|
|
|
default:
|
|
|
|
fprintf(stderr, "error=%d\n", err->error);
|
|
|
|
msg = "unknown parsing error";
|
|
|
|
break;
|
|
|
|
}
|
2005-10-20 16:59:25 -03:00
|
|
|
v = Py_BuildValue("(ziiz)", err->filename,
|
|
|
|
err->lineno, err->offset, err->text);
|
|
|
|
w = NULL;
|
|
|
|
if (v != NULL)
|
|
|
|
w = Py_BuildValue("(sO)", msg, v);
|
2002-08-04 14:29:52 -03:00
|
|
|
Py_XDECREF(u);
|
2001-03-23 00:01:07 -04:00
|
|
|
Py_XDECREF(v);
|
2000-07-11 14:53:00 -03:00
|
|
|
PyErr_SetObject(errtype, w);
|
1997-03-04 20:20:32 -04:00
|
|
|
Py_XDECREF(w);
|
2008-07-19 07:08:55 -03:00
|
|
|
cleanup:
|
|
|
|
if (err->text != NULL) {
|
|
|
|
PyObject_FREE(err->text);
|
|
|
|
err->text = NULL;
|
|
|
|
}
|
1992-08-04 09:41:02 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Print fatal error message and abort */
|
|
|
|
|
|
|
|
void
|
2002-07-08 23:57:01 -03:00
|
|
|
Py_FatalError(const char *msg)
|
1992-08-04 09:41:02 -03:00
|
|
|
{
|
1994-09-29 06:38:33 -03:00
|
|
|
fprintf(stderr, "Fatal Python error: %s\n", msg);
|
2009-03-31 19:20:35 -03:00
|
|
|
fflush(stderr); /* it helps in Windows debug build */
|
|
|
|
|
2002-06-30 12:26:10 -03:00
|
|
|
#ifdef MS_WINDOWS
|
2009-01-02 16:32:55 -04:00
|
|
|
{
|
|
|
|
size_t len = strlen(msg);
|
|
|
|
WCHAR* buffer;
|
|
|
|
size_t i;
|
|
|
|
|
|
|
|
/* Convert the message to wchar_t. This uses a simple one-to-one
|
|
|
|
conversion, assuming that the this error message actually uses ASCII
|
|
|
|
only. If this ceases to be true, we will have to convert. */
|
|
|
|
buffer = alloca( (len+1) * (sizeof *buffer));
|
|
|
|
for( i=0; i<=len; ++i)
|
|
|
|
buffer[i] = msg[i];
|
|
|
|
OutputDebugStringW(L"Fatal Python error: ");
|
|
|
|
OutputDebugStringW(buffer);
|
|
|
|
OutputDebugStringW(L"\n");
|
|
|
|
}
|
1998-08-13 10:33:16 -03:00
|
|
|
#ifdef _DEBUG
|
|
|
|
DebugBreak();
|
1995-01-25 20:40:38 -04:00
|
|
|
#endif
|
2002-06-30 12:26:10 -03:00
|
|
|
#endif /* MS_WINDOWS */
|
1992-08-04 09:41:02 -03:00
|
|
|
abort();
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Clean up and exit */
|
|
|
|
|
1994-08-29 09:50:44 -03:00
|
|
|
#ifdef WITH_THREAD
|
1998-10-01 17:42:43 -03:00
|
|
|
#include "pythread.h"
|
1992-08-17 05:59:08 -03:00
|
|
|
#endif
|
|
|
|
|
2009-10-20 18:29:37 -03:00
|
|
|
/* Wait until threading._shutdown completes, provided
|
|
|
|
the threading module was imported in the first place.
|
|
|
|
The shutdown routine will wait until all non-daemon
|
|
|
|
"threading" threads have completed. */
|
|
|
|
static void
|
|
|
|
wait_for_thread_shutdown(void)
|
|
|
|
{
|
|
|
|
#ifdef WITH_THREAD
|
|
|
|
PyObject *result;
|
|
|
|
PyThreadState *tstate = PyThreadState_GET();
|
|
|
|
PyObject *threading = PyMapping_GetItemString(tstate->interp->modules,
|
|
|
|
"threading");
|
|
|
|
if (threading == NULL) {
|
|
|
|
/* threading not imported */
|
|
|
|
PyErr_Clear();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
result = PyObject_CallMethod(threading, "_shutdown", "");
|
|
|
|
if (result == NULL)
|
|
|
|
PyErr_WriteUnraisable(threading);
|
|
|
|
else
|
|
|
|
Py_DECREF(result);
|
|
|
|
Py_DECREF(threading);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
1998-10-01 13:01:57 -03:00
|
|
|
#define NEXITFUNCS 32
|
2000-07-22 15:47:25 -03:00
|
|
|
static void (*exitfuncs[NEXITFUNCS])(void);
|
1994-09-07 11:38:28 -03:00
|
|
|
static int nexitfuncs = 0;
|
|
|
|
|
2000-07-22 15:47:25 -03:00
|
|
|
int Py_AtExit(void (*func)(void))
|
1994-09-07 11:38:28 -03:00
|
|
|
{
|
|
|
|
if (nexitfuncs >= NEXITFUNCS)
|
|
|
|
return -1;
|
|
|
|
exitfuncs[nexitfuncs++] = func;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
1997-08-04 23:22:03 -03:00
|
|
|
static void
|
2000-07-22 15:47:25 -03:00
|
|
|
call_sys_exitfunc(void)
|
1992-08-04 09:41:02 -03:00
|
|
|
{
|
1997-03-04 20:20:32 -04:00
|
|
|
PyObject *exitfunc = PySys_GetObject("exitfunc");
|
1992-09-03 17:28:00 -03:00
|
|
|
|
|
|
|
if (exitfunc) {
|
2001-03-23 13:34:02 -04:00
|
|
|
PyObject *res;
|
1997-03-04 20:20:32 -04:00
|
|
|
Py_INCREF(exitfunc);
|
|
|
|
PySys_SetObject("exitfunc", (PyObject *)NULL);
|
|
|
|
res = PyEval_CallObject(exitfunc, (PyObject *)NULL);
|
1992-09-03 17:28:00 -03:00
|
|
|
if (res == NULL) {
|
2001-03-23 11:36:41 -04:00
|
|
|
if (!PyErr_ExceptionMatches(PyExc_SystemExit)) {
|
|
|
|
PySys_WriteStderr("Error in sys.exitfunc:\n");
|
|
|
|
}
|
1997-03-04 20:20:32 -04:00
|
|
|
PyErr_Print();
|
1992-09-03 17:28:00 -03:00
|
|
|
}
|
1997-03-04 20:20:32 -04:00
|
|
|
Py_DECREF(exitfunc);
|
1992-09-03 17:28:00 -03:00
|
|
|
}
|
|
|
|
|
1998-02-28 00:31:39 -04:00
|
|
|
if (Py_FlushLine())
|
|
|
|
PyErr_Clear();
|
1997-08-04 23:22:03 -03:00
|
|
|
}
|
1994-09-07 11:38:28 -03:00
|
|
|
|
1997-08-04 23:22:03 -03:00
|
|
|
static void
|
2000-07-22 15:47:25 -03:00
|
|
|
call_ll_exitfuncs(void)
|
1997-08-04 23:22:03 -03:00
|
|
|
{
|
1994-09-07 11:38:28 -03:00
|
|
|
while (nexitfuncs > 0)
|
|
|
|
(*exitfuncs[--nexitfuncs])();
|
1997-08-02 00:10:38 -03:00
|
|
|
|
|
|
|
fflush(stdout);
|
|
|
|
fflush(stderr);
|
1992-10-18 15:53:57 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2000-07-22 15:47:25 -03:00
|
|
|
Py_Exit(int sts)
|
1992-10-18 15:53:57 -03:00
|
|
|
{
|
1997-08-04 23:22:03 -03:00
|
|
|
Py_Finalize();
|
1992-08-04 09:41:02 -03:00
|
|
|
|
|
|
|
exit(sts);
|
|
|
|
}
|
|
|
|
|
1993-07-05 07:31:29 -03:00
|
|
|
static void
|
2000-07-22 15:47:25 -03:00
|
|
|
initsigs(void)
|
1992-10-18 15:53:57 -03:00
|
|
|
{
|
1994-08-29 09:50:44 -03:00
|
|
|
#ifdef SIGPIPE
|
2004-10-13 11:48:50 -03:00
|
|
|
PyOS_setsig(SIGPIPE, SIG_IGN);
|
1994-08-29 09:50:44 -03:00
|
|
|
#endif
|
2001-08-16 05:21:42 -03:00
|
|
|
#ifdef SIGXFZ
|
2004-10-13 11:48:50 -03:00
|
|
|
PyOS_setsig(SIGXFZ, SIG_IGN);
|
2001-08-16 05:21:42 -03:00
|
|
|
#endif
|
2002-04-23 17:31:01 -03:00
|
|
|
#ifdef SIGXFSZ
|
2004-10-13 11:48:50 -03:00
|
|
|
PyOS_setsig(SIGXFSZ, SIG_IGN);
|
2002-04-23 17:31:01 -03:00
|
|
|
#endif
|
1997-03-04 20:20:32 -04:00
|
|
|
PyOS_InitInterrupts(); /* May imply initsignal() */
|
1992-10-18 15:53:57 -03:00
|
|
|
}
|
|
|
|
|
1997-02-14 15:45:36 -04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* The file descriptor fd is considered ``interactive'' if either
|
|
|
|
* a) isatty(fd) is TRUE, or
|
|
|
|
* b) the -i flag was given, and the filename associated with
|
|
|
|
* the descriptor is NULL or "<stdin>" or "???".
|
|
|
|
*/
|
|
|
|
int
|
2002-12-11 10:04:59 -04:00
|
|
|
Py_FdIsInteractive(FILE *fp, const char *filename)
|
1997-02-14 15:45:36 -04:00
|
|
|
{
|
|
|
|
if (isatty((int)fileno(fp)))
|
|
|
|
return 1;
|
|
|
|
if (!Py_InteractiveFlag)
|
|
|
|
return 0;
|
|
|
|
return (filename == NULL) ||
|
|
|
|
(strcmp(filename, "<stdin>") == 0) ||
|
|
|
|
(strcmp(filename, "???") == 0);
|
|
|
|
}
|
2000-08-27 16:15:31 -03:00
|
|
|
|
|
|
|
|
2003-04-17 12:24:21 -03:00
|
|
|
#if defined(USE_STACKCHECK)
|
2000-08-27 16:15:31 -03:00
|
|
|
#if defined(WIN32) && defined(_MSC_VER)
|
|
|
|
|
|
|
|
/* Stack checking for Microsoft C */
|
|
|
|
|
|
|
|
#include <malloc.h>
|
|
|
|
#include <excpt.h>
|
|
|
|
|
2000-08-31 02:38:39 -03:00
|
|
|
/*
|
|
|
|
* Return non-zero when we run out of memory on the stack; zero otherwise.
|
|
|
|
*/
|
2000-08-27 16:15:31 -03:00
|
|
|
int
|
2000-08-31 02:52:44 -03:00
|
|
|
PyOS_CheckStack(void)
|
2000-08-27 16:15:31 -03:00
|
|
|
{
|
|
|
|
__try {
|
2002-10-04 22:47:34 -03:00
|
|
|
/* alloca throws a stack overflow exception if there's
|
2000-08-27 16:15:31 -03:00
|
|
|
not enough space left on the stack */
|
2002-10-04 22:47:34 -03:00
|
|
|
alloca(PYOS_STACK_MARGIN * sizeof(void*));
|
2000-08-27 16:15:31 -03:00
|
|
|
return 0;
|
2008-02-18 13:40:47 -04:00
|
|
|
} __except (GetExceptionCode() == STATUS_STACK_OVERFLOW ?
|
|
|
|
EXCEPTION_EXECUTE_HANDLER :
|
|
|
|
EXCEPTION_CONTINUE_SEARCH) {
|
|
|
|
int errcode = _resetstkoflw();
|
2008-11-22 16:01:18 -04:00
|
|
|
if (errcode == 0)
|
2008-02-18 13:40:47 -04:00
|
|
|
{
|
|
|
|
Py_FatalError("Could not reset the stack!");
|
|
|
|
}
|
2000-08-27 16:15:31 -03:00
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* WIN32 && _MSC_VER */
|
|
|
|
|
|
|
|
/* Alternate implementations can be added here... */
|
|
|
|
|
|
|
|
#endif /* USE_STACKCHECK */
|
2000-09-16 13:32:19 -03:00
|
|
|
|
|
|
|
|
|
|
|
/* Wrappers around sigaction() or signal(). */
|
|
|
|
|
|
|
|
PyOS_sighandler_t
|
|
|
|
PyOS_getsig(int sig)
|
|
|
|
{
|
|
|
|
#ifdef HAVE_SIGACTION
|
|
|
|
struct sigaction context;
|
2004-10-13 11:48:50 -03:00
|
|
|
if (sigaction(sig, NULL, &context) == -1)
|
|
|
|
return SIG_ERR;
|
2000-09-16 13:32:19 -03:00
|
|
|
return context.sa_handler;
|
|
|
|
#else
|
|
|
|
PyOS_sighandler_t handler;
|
2005-11-28 13:34:23 -04:00
|
|
|
/* Special signal handling for the secure CRT in Visual Studio 2005 */
|
|
|
|
#if defined(_MSC_VER) && _MSC_VER >= 1400
|
|
|
|
switch (sig) {
|
|
|
|
/* Only these signals are valid */
|
|
|
|
case SIGINT:
|
|
|
|
case SIGILL:
|
|
|
|
case SIGFPE:
|
|
|
|
case SIGSEGV:
|
|
|
|
case SIGTERM:
|
|
|
|
case SIGBREAK:
|
|
|
|
case SIGABRT:
|
|
|
|
break;
|
|
|
|
/* Don't call signal() with other values or it will assert */
|
|
|
|
default:
|
|
|
|
return SIG_ERR;
|
|
|
|
}
|
|
|
|
#endif /* _MSC_VER && _MSC_VER >= 1400 */
|
2000-09-16 13:32:19 -03:00
|
|
|
handler = signal(sig, SIG_IGN);
|
2004-10-13 11:48:50 -03:00
|
|
|
if (handler != SIG_ERR)
|
|
|
|
signal(sig, handler);
|
2000-09-16 13:32:19 -03:00
|
|
|
return handler;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
PyOS_sighandler_t
|
|
|
|
PyOS_setsig(int sig, PyOS_sighandler_t handler)
|
|
|
|
{
|
|
|
|
#ifdef HAVE_SIGACTION
|
2004-10-13 11:48:50 -03:00
|
|
|
struct sigaction context, ocontext;
|
2000-09-16 13:32:19 -03:00
|
|
|
context.sa_handler = handler;
|
2004-10-13 11:48:50 -03:00
|
|
|
sigemptyset(&context.sa_mask);
|
|
|
|
context.sa_flags = 0;
|
|
|
|
if (sigaction(sig, &context, &ocontext) == -1)
|
|
|
|
return SIG_ERR;
|
|
|
|
return ocontext.sa_handler;
|
2000-09-16 13:32:19 -03:00
|
|
|
#else
|
2004-10-13 11:48:50 -03:00
|
|
|
PyOS_sighandler_t oldhandler;
|
|
|
|
oldhandler = signal(sig, handler);
|
|
|
|
#ifdef HAVE_SIGINTERRUPT
|
|
|
|
siginterrupt(sig, 1);
|
|
|
|
#endif
|
|
|
|
return oldhandler;
|
2000-09-16 13:32:19 -03:00
|
|
|
#endif
|
|
|
|
}
|
2005-10-20 16:59:25 -03:00
|
|
|
|
|
|
|
/* Deprecated C API functions still provided for binary compatiblity */
|
|
|
|
|
|
|
|
#undef PyParser_SimpleParseFile
|
2006-04-18 15:51:06 -03:00
|
|
|
PyAPI_FUNC(node *)
|
2005-10-20 16:59:25 -03:00
|
|
|
PyParser_SimpleParseFile(FILE *fp, const char *filename, int start)
|
|
|
|
{
|
|
|
|
return PyParser_SimpleParseFileFlags(fp, filename, start, 0);
|
|
|
|
}
|
|
|
|
|
2006-04-18 15:51:06 -03:00
|
|
|
#undef PyParser_SimpleParseString
|
|
|
|
PyAPI_FUNC(node *)
|
2005-10-20 16:59:25 -03:00
|
|
|
PyParser_SimpleParseString(const char *str, int start)
|
|
|
|
{
|
|
|
|
return PyParser_SimpleParseStringFlags(str, start, 0);
|
|
|
|
}
|
2006-04-12 23:06:09 -03:00
|
|
|
|
2006-04-18 15:51:06 -03:00
|
|
|
#undef PyRun_AnyFile
|
|
|
|
PyAPI_FUNC(int)
|
|
|
|
PyRun_AnyFile(FILE *fp, const char *name)
|
|
|
|
{
|
|
|
|
return PyRun_AnyFileExFlags(fp, name, 0, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
#undef PyRun_AnyFileEx
|
|
|
|
PyAPI_FUNC(int)
|
|
|
|
PyRun_AnyFileEx(FILE *fp, const char *name, int closeit)
|
|
|
|
{
|
|
|
|
return PyRun_AnyFileExFlags(fp, name, closeit, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
#undef PyRun_AnyFileFlags
|
|
|
|
PyAPI_FUNC(int)
|
|
|
|
PyRun_AnyFileFlags(FILE *fp, const char *name, PyCompilerFlags *flags)
|
|
|
|
{
|
|
|
|
return PyRun_AnyFileExFlags(fp, name, 0, flags);
|
|
|
|
}
|
|
|
|
|
|
|
|
#undef PyRun_File
|
|
|
|
PyAPI_FUNC(PyObject *)
|
|
|
|
PyRun_File(FILE *fp, const char *p, int s, PyObject *g, PyObject *l)
|
|
|
|
{
|
2008-07-05 07:07:18 -03:00
|
|
|
return PyRun_FileExFlags(fp, p, s, g, l, 0, NULL);
|
2006-04-18 15:51:06 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
#undef PyRun_FileEx
|
|
|
|
PyAPI_FUNC(PyObject *)
|
|
|
|
PyRun_FileEx(FILE *fp, const char *p, int s, PyObject *g, PyObject *l, int c)
|
|
|
|
{
|
2008-07-05 07:07:18 -03:00
|
|
|
return PyRun_FileExFlags(fp, p, s, g, l, c, NULL);
|
2006-04-18 15:51:06 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
#undef PyRun_FileFlags
|
|
|
|
PyAPI_FUNC(PyObject *)
|
|
|
|
PyRun_FileFlags(FILE *fp, const char *p, int s, PyObject *g, PyObject *l,
|
|
|
|
PyCompilerFlags *flags)
|
|
|
|
{
|
2008-07-05 07:07:18 -03:00
|
|
|
return PyRun_FileExFlags(fp, p, s, g, l, 0, flags);
|
2006-04-18 15:51:06 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
#undef PyRun_SimpleFile
|
|
|
|
PyAPI_FUNC(int)
|
|
|
|
PyRun_SimpleFile(FILE *f, const char *p)
|
|
|
|
{
|
|
|
|
return PyRun_SimpleFileExFlags(f, p, 0, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
#undef PyRun_SimpleFileEx
|
|
|
|
PyAPI_FUNC(int)
|
|
|
|
PyRun_SimpleFileEx(FILE *f, const char *p, int c)
|
|
|
|
{
|
|
|
|
return PyRun_SimpleFileExFlags(f, p, c, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#undef PyRun_String
|
|
|
|
PyAPI_FUNC(PyObject *)
|
|
|
|
PyRun_String(const char *str, int s, PyObject *g, PyObject *l)
|
|
|
|
{
|
|
|
|
return PyRun_StringFlags(str, s, g, l, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
#undef PyRun_SimpleString
|
|
|
|
PyAPI_FUNC(int)
|
|
|
|
PyRun_SimpleString(const char *s)
|
|
|
|
{
|
|
|
|
return PyRun_SimpleStringFlags(s, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
#undef Py_CompileString
|
|
|
|
PyAPI_FUNC(PyObject *)
|
|
|
|
Py_CompileString(const char *str, const char *p, int s)
|
|
|
|
{
|
|
|
|
return Py_CompileStringFlags(str, p, s, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
#undef PyRun_InteractiveOne
|
|
|
|
PyAPI_FUNC(int)
|
|
|
|
PyRun_InteractiveOne(FILE *f, const char *p)
|
|
|
|
{
|
|
|
|
return PyRun_InteractiveOneFlags(f, p, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
#undef PyRun_InteractiveLoop
|
|
|
|
PyAPI_FUNC(int)
|
|
|
|
PyRun_InteractiveLoop(FILE *f, const char *p)
|
|
|
|
{
|
|
|
|
return PyRun_InteractiveLoopFlags(f, p, NULL);
|
|
|
|
}
|
|
|
|
|
2006-04-12 23:06:09 -03:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|