blob: 72004f8a14ae2a7fa0ad892073f8a4876096d24b [file] [log] [blame]
Guido van Rossumf70e43a1991-02-19 12:39:46 +00001
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002/* System module */
3
4/*
5Various bits of information used by the interpreter are collected in
6module 'sys'.
Guido van Rossum3f5da241990-12-20 15:06:42 +00007Function member:
Guido van Rossumcc8914f1995-03-20 15:09:40 +00008- exit(sts): raise SystemExit
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00009Data members:
10- stdin, stdout, stderr: standard file objects
Guido van Rossum85a5fbb1990-10-14 12:07:46 +000011- modules: the table of modules (dictionary)
Guido van Rossum3f5da241990-12-20 15:06:42 +000012- path: module search path (list of strings)
13- argv: script arguments (list of strings)
14- ps1, ps2: optional primary and secondary prompts (strings)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +000015*/
16
Guido van Rossum65bf9f21997-04-29 18:33:38 +000017#include "Python.h"
Jeremy Hylton3e0055f2005-10-20 19:59:25 +000018#include "code.h"
Barry Warsawb6a54d22000-12-06 21:47:46 +000019#include "frameobject.h"
Victor Stinnerd5c355c2011-04-30 14:53:09 +020020#include "pythread.h"
Guido van Rossum85a5fbb1990-10-14 12:07:46 +000021
Guido van Rossume2437a11992-03-23 18:20:18 +000022#include "osdefs.h"
Guido van Rossum3f5da241990-12-20 15:06:42 +000023
Mark Hammond8696ebc2002-10-08 02:44:31 +000024#ifdef MS_WINDOWS
25#define WIN32_LEAN_AND_MEAN
Amaury Forgeot d'Arc06cfe952007-11-10 13:55:44 +000026#include <windows.h>
Mark Hammond8696ebc2002-10-08 02:44:31 +000027#endif /* MS_WINDOWS */
28
Guido van Rossum9b38a141996-09-11 23:12:24 +000029#ifdef MS_COREDLL
Guido van Rossumc606fe11996-04-09 02:37:57 +000030extern void *PyWin_DLLhModule;
Guido van Rossum6c1e5f21997-09-29 23:34:23 +000031/* A string loaded from the DLL at startup: */
32extern const char *PyWin_DLLVersionString;
Guido van Rossumc606fe11996-04-09 02:37:57 +000033#endif
34
Martin v. Löwisc16f3bd2003-05-03 09:14:54 +000035#ifdef __VMS
36#include <unixlib.h>
37#endif
38
Martin v. Löwis5467d4c2003-05-10 07:10:12 +000039#ifdef HAVE_LANGINFO_H
40#include <locale.h>
41#include <langinfo.h>
42#endif
43
Guido van Rossum65bf9f21997-04-29 18:33:38 +000044PyObject *
Neal Norwitzf3081322007-08-25 00:32:45 +000045PySys_GetObject(const char *name)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +000046{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000047 PyThreadState *tstate = PyThreadState_GET();
48 PyObject *sd = tstate->interp->sysdict;
49 if (sd == NULL)
50 return NULL;
51 return PyDict_GetItemString(sd, name);
Guido van Rossum85a5fbb1990-10-14 12:07:46 +000052}
53
Guido van Rossum85a5fbb1990-10-14 12:07:46 +000054int
Neal Norwitzf3081322007-08-25 00:32:45 +000055PySys_SetObject(const char *name, PyObject *v)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +000056{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000057 PyThreadState *tstate = PyThreadState_GET();
58 PyObject *sd = tstate->interp->sysdict;
59 if (v == NULL) {
60 if (PyDict_GetItemString(sd, name) == NULL)
61 return 0;
62 else
63 return PyDict_DelItemString(sd, name);
64 }
65 else
66 return PyDict_SetItemString(sd, name, v);
Guido van Rossum85a5fbb1990-10-14 12:07:46 +000067}
68
Victor Stinner13d49ee2010-12-04 17:24:33 +000069/* Write repr(o) to sys.stdout using sys.stdout.encoding and 'backslashreplace'
70 error handler. If sys.stdout has a buffer attribute, use
71 sys.stdout.buffer.write(encoded), otherwise redecode the string and use
72 sys.stdout.write(redecoded).
73
74 Helper function for sys_displayhook(). */
75static int
76sys_displayhook_unencodable(PyObject *outf, PyObject *o)
77{
78 PyObject *stdout_encoding = NULL;
79 PyObject *encoded, *escaped_str, *repr_str, *buffer, *result;
80 char *stdout_encoding_str;
81 int ret;
Martin v. Löwisbd928fe2011-10-14 10:20:37 +020082 _Py_IDENTIFIER(encoding);
83 _Py_IDENTIFIER(buffer);
Victor Stinner13d49ee2010-12-04 17:24:33 +000084
Martin v. Löwis1ee1b6f2011-10-10 18:11:30 +020085 stdout_encoding = _PyObject_GetAttrId(outf, &PyId_encoding);
Victor Stinner13d49ee2010-12-04 17:24:33 +000086 if (stdout_encoding == NULL)
87 goto error;
88 stdout_encoding_str = _PyUnicode_AsString(stdout_encoding);
89 if (stdout_encoding_str == NULL)
90 goto error;
91
92 repr_str = PyObject_Repr(o);
93 if (repr_str == NULL)
94 goto error;
95 encoded = PyUnicode_AsEncodedString(repr_str,
96 stdout_encoding_str,
97 "backslashreplace");
98 Py_DECREF(repr_str);
99 if (encoded == NULL)
100 goto error;
101
Martin v. Löwis1ee1b6f2011-10-10 18:11:30 +0200102 buffer = _PyObject_GetAttrId(outf, &PyId_buffer);
Victor Stinner13d49ee2010-12-04 17:24:33 +0000103 if (buffer) {
Martin v. Löwisbd928fe2011-10-14 10:20:37 +0200104 _Py_IDENTIFIER(write);
Martin v. Löwisafe55bb2011-10-09 10:38:36 +0200105 result = _PyObject_CallMethodId(buffer, &PyId_write, "(O)", encoded);
Victor Stinner13d49ee2010-12-04 17:24:33 +0000106 Py_DECREF(buffer);
107 Py_DECREF(encoded);
108 if (result == NULL)
109 goto error;
110 Py_DECREF(result);
111 }
112 else {
113 PyErr_Clear();
114 escaped_str = PyUnicode_FromEncodedObject(encoded,
115 stdout_encoding_str,
116 "strict");
117 Py_DECREF(encoded);
118 if (PyFile_WriteObject(escaped_str, outf, Py_PRINT_RAW) != 0) {
119 Py_DECREF(escaped_str);
120 goto error;
121 }
122 Py_DECREF(escaped_str);
123 }
124 ret = 0;
125 goto finally;
126
127error:
128 ret = -1;
129finally:
130 Py_XDECREF(stdout_encoding);
131 return ret;
132}
133
Guido van Rossum65bf9f21997-04-29 18:33:38 +0000134static PyObject *
Martin v. Löwise3eb1f22001-08-16 13:15:00 +0000135sys_displayhook(PyObject *self, PyObject *o)
Moshe Zadkaf68f2fe2001-01-11 05:41:27 +0000136{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000137 PyObject *outf;
138 PyInterpreterState *interp = PyThreadState_GET()->interp;
139 PyObject *modules = interp->modules;
140 PyObject *builtins = PyDict_GetItemString(modules, "builtins");
Victor Stinner13d49ee2010-12-04 17:24:33 +0000141 int err;
Martin v. Löwis1c67dd92011-10-14 15:16:45 +0200142 _Py_IDENTIFIER(_);
Moshe Zadkaf68f2fe2001-01-11 05:41:27 +0000143
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000144 if (builtins == NULL) {
145 PyErr_SetString(PyExc_RuntimeError, "lost builtins module");
146 return NULL;
147 }
Moshe Zadka03897ea2001-07-23 13:32:43 +0000148
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000149 /* Print value except if None */
150 /* After printing, also assign to '_' */
151 /* Before, set '_' to None to avoid recursion */
152 if (o == Py_None) {
153 Py_INCREF(Py_None);
154 return Py_None;
155 }
Martin v. Löwis1c67dd92011-10-14 15:16:45 +0200156 if (_PyObject_SetAttrId(builtins, &PyId__, Py_None) != 0)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000157 return NULL;
158 outf = PySys_GetObject("stdout");
159 if (outf == NULL || outf == Py_None) {
160 PyErr_SetString(PyExc_RuntimeError, "lost sys.stdout");
161 return NULL;
162 }
Victor Stinner13d49ee2010-12-04 17:24:33 +0000163 if (PyFile_WriteObject(o, outf, 0) != 0) {
164 if (PyErr_ExceptionMatches(PyExc_UnicodeEncodeError)) {
165 /* repr(o) is not encodable to sys.stdout.encoding with
166 * sys.stdout.errors error handler (which is probably 'strict') */
167 PyErr_Clear();
168 err = sys_displayhook_unencodable(outf, o);
169 if (err)
170 return NULL;
171 }
172 else {
173 return NULL;
174 }
175 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000176 if (PyFile_WriteString("\n", outf) != 0)
177 return NULL;
Martin v. Löwis1c67dd92011-10-14 15:16:45 +0200178 if (_PyObject_SetAttrId(builtins, &PyId__, o) != 0)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000179 return NULL;
180 Py_INCREF(Py_None);
181 return Py_None;
Moshe Zadkaf68f2fe2001-01-11 05:41:27 +0000182}
183
Martin v. Löwisa3fb4f72002-06-09 13:33:54 +0000184PyDoc_STRVAR(displayhook_doc,
Ka-Ping Yeeb5c51322001-03-23 02:46:52 +0000185"displayhook(object) -> None\n"
Moshe Zadkaf68f2fe2001-01-11 05:41:27 +0000186"\n"
Florent Xicluna5749e852010-03-03 11:54:54 +0000187"Print an object to sys.stdout and also save it in builtins._\n"
Martin v. Löwisa3fb4f72002-06-09 13:33:54 +0000188);
Ka-Ping Yeeb5c51322001-03-23 02:46:52 +0000189
190static PyObject *
191sys_excepthook(PyObject* self, PyObject* args)
192{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000193 PyObject *exc, *value, *tb;
194 if (!PyArg_UnpackTuple(args, "excepthook", 3, 3, &exc, &value, &tb))
195 return NULL;
196 PyErr_Display(exc, value, tb);
197 Py_INCREF(Py_None);
198 return Py_None;
Ka-Ping Yeeb5c51322001-03-23 02:46:52 +0000199}
200
Martin v. Löwisa3fb4f72002-06-09 13:33:54 +0000201PyDoc_STRVAR(excepthook_doc,
Ka-Ping Yeeb5c51322001-03-23 02:46:52 +0000202"excepthook(exctype, value, traceback) -> None\n"
203"\n"
Martin v. Löwisa3fb4f72002-06-09 13:33:54 +0000204"Handle an exception by displaying it with a traceback on sys.stderr.\n"
205);
Moshe Zadkaf68f2fe2001-01-11 05:41:27 +0000206
207static PyObject *
Guido van Rossum46d3dc32003-03-01 03:20:41 +0000208sys_exc_info(PyObject *self, PyObject *noargs)
Guido van Rossuma027efa1997-05-05 20:56:21 +0000209{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000210 PyThreadState *tstate;
211 tstate = PyThreadState_GET();
212 return Py_BuildValue(
213 "(OOO)",
214 tstate->exc_type != NULL ? tstate->exc_type : Py_None,
215 tstate->exc_value != NULL ? tstate->exc_value : Py_None,
216 tstate->exc_traceback != NULL ?
217 tstate->exc_traceback : Py_None);
Guido van Rossuma027efa1997-05-05 20:56:21 +0000218}
219
Martin v. Löwisa3fb4f72002-06-09 13:33:54 +0000220PyDoc_STRVAR(exc_info_doc,
Guido van Rossumc3bc31e1998-06-27 19:43:25 +0000221"exc_info() -> (type, value, traceback)\n\
222\n\
Guido van Rossum46d3dc32003-03-01 03:20:41 +0000223Return information about the most recent exception caught by an except\n\
224clause in the current stack frame or in an older stack frame."
225);
226
227static PyObject *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +0000228sys_exit(PyObject *self, PyObject *args)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000229{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000230 PyObject *exit_code = 0;
231 if (!PyArg_UnpackTuple(args, "exit", 0, 1, &exit_code))
232 return NULL;
233 /* Raise SystemExit so callers may catch it or clean up. */
234 PyErr_SetObject(PyExc_SystemExit, exit_code);
235 return NULL;
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000236}
237
Martin v. Löwisa3fb4f72002-06-09 13:33:54 +0000238PyDoc_STRVAR(exit_doc,
Guido van Rossumc3bc31e1998-06-27 19:43:25 +0000239"exit([status])\n\
240\n\
241Exit the interpreter by raising SystemExit(status).\n\
242If the status is omitted or None, it defaults to zero (i.e., success).\n\
Neil Schemenauer0f2103f2002-03-23 20:46:35 +0000243If the status is numeric, it will be used as the system exit status.\n\
Guido van Rossumc3bc31e1998-06-27 19:43:25 +0000244If it is another kind of object, it will be printed and the system\n\
Martin v. Löwisa3fb4f72002-06-09 13:33:54 +0000245exit status will be one (i.e., failure)."
246);
Guido van Rossumc3bc31e1998-06-27 19:43:25 +0000247
Martin v. Löwis107b7da2001-11-09 20:59:39 +0000248
Guido van Rossum65bf9f21997-04-29 18:33:38 +0000249static PyObject *
Martin v. Löwise3eb1f22001-08-16 13:15:00 +0000250sys_getdefaultencoding(PyObject *self)
Fred Drake8b4d01d2000-05-09 19:57:01 +0000251{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000252 return PyUnicode_FromString(PyUnicode_GetDefaultEncoding());
Fred Drake8b4d01d2000-05-09 19:57:01 +0000253}
254
Martin v. Löwisa3fb4f72002-06-09 13:33:54 +0000255PyDoc_STRVAR(getdefaultencoding_doc,
Marc-André Lemburg99964b82000-06-07 09:13:41 +0000256"getdefaultencoding() -> string\n\
Fred Drake8b4d01d2000-05-09 19:57:01 +0000257\n\
258Return the current default string encoding used by the Unicode \n\
Martin v. Löwisa3fb4f72002-06-09 13:33:54 +0000259implementation."
260);
Fred Drake8b4d01d2000-05-09 19:57:01 +0000261
262static PyObject *
Martin v. Löwis73d538b2003-03-05 15:13:47 +0000263sys_getfilesystemencoding(PyObject *self)
264{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000265 if (Py_FileSystemDefaultEncoding)
266 return PyUnicode_FromString(Py_FileSystemDefaultEncoding);
Victor Stinner27181ac2011-03-31 13:39:03 +0200267 PyErr_SetString(PyExc_RuntimeError,
268 "filesystem encoding is not initialized");
269 return NULL;
Martin v. Löwis73d538b2003-03-05 15:13:47 +0000270}
271
272PyDoc_STRVAR(getfilesystemencoding_doc,
273"getfilesystemencoding() -> string\n\
274\n\
275Return the encoding used to convert Unicode filenames in\n\
276operating system filenames."
277);
278
Martin v. Löwis04dc25c2008-10-03 16:09:28 +0000279static PyObject *
Georg Brandl66a796e2006-12-19 20:50:34 +0000280sys_intern(PyObject *self, PyObject *args)
281{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000282 PyObject *s;
283 if (!PyArg_ParseTuple(args, "U:intern", &s))
284 return NULL;
285 if (PyUnicode_CheckExact(s)) {
286 Py_INCREF(s);
287 PyUnicode_InternInPlace(&s);
288 return s;
289 }
290 else {
291 PyErr_Format(PyExc_TypeError,
292 "can't intern %.400s", s->ob_type->tp_name);
293 return NULL;
294 }
Georg Brandl66a796e2006-12-19 20:50:34 +0000295}
296
297PyDoc_STRVAR(intern_doc,
298"intern(string) -> string\n\
299\n\
300``Intern'' the given string. This enters the string in the (global)\n\
301table of interned strings whose purpose is to speed up dictionary lookups.\n\
302Return the string itself or the previously interned string object with the\n\
303same value.");
304
305
Fred Drake5755ce62001-06-27 19:19:46 +0000306/*
307 * Cached interned string objects used for calling the profile and
308 * trace functions. Initialized by trace_init().
309 */
Nicholas Bastinc69ebe82004-03-24 21:57:10 +0000310static PyObject *whatstrings[7] = {NULL, NULL, NULL, NULL, NULL, NULL, NULL};
Fred Drake5755ce62001-06-27 19:19:46 +0000311
312static int
313trace_init(void)
314{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000315 static char *whatnames[7] = {"call", "exception", "line", "return",
316 "c_call", "c_exception", "c_return"};
317 PyObject *name;
318 int i;
319 for (i = 0; i < 7; ++i) {
320 if (whatstrings[i] == NULL) {
321 name = PyUnicode_InternFromString(whatnames[i]);
322 if (name == NULL)
323 return -1;
324 whatstrings[i] = name;
325 }
326 }
327 return 0;
Fred Drake5755ce62001-06-27 19:19:46 +0000328}
329
330
331static PyObject *
332call_trampoline(PyThreadState *tstate, PyObject* callback,
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000333 PyFrameObject *frame, int what, PyObject *arg)
Fred Drake5755ce62001-06-27 19:19:46 +0000334{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000335 PyObject *args = PyTuple_New(3);
336 PyObject *whatstr;
337 PyObject *result;
Fred Drake5755ce62001-06-27 19:19:46 +0000338
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000339 if (args == NULL)
340 return NULL;
341 Py_INCREF(frame);
342 whatstr = whatstrings[what];
343 Py_INCREF(whatstr);
344 if (arg == NULL)
345 arg = Py_None;
346 Py_INCREF(arg);
347 PyTuple_SET_ITEM(args, 0, (PyObject *)frame);
348 PyTuple_SET_ITEM(args, 1, whatstr);
349 PyTuple_SET_ITEM(args, 2, arg);
Fred Drake5755ce62001-06-27 19:19:46 +0000350
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000351 /* call the Python-level function */
352 PyFrame_FastToLocals(frame);
353 result = PyEval_CallObject(callback, args);
354 PyFrame_LocalsToFast(frame, 1);
355 if (result == NULL)
356 PyTraceBack_Here(frame);
Fred Drake5755ce62001-06-27 19:19:46 +0000357
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000358 /* cleanup */
359 Py_DECREF(args);
360 return result;
Fred Drake5755ce62001-06-27 19:19:46 +0000361}
362
363static int
364profile_trampoline(PyObject *self, PyFrameObject *frame,
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000365 int what, PyObject *arg)
Fred Drake5755ce62001-06-27 19:19:46 +0000366{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000367 PyThreadState *tstate = frame->f_tstate;
368 PyObject *result;
Fred Drake5755ce62001-06-27 19:19:46 +0000369
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000370 if (arg == NULL)
371 arg = Py_None;
372 result = call_trampoline(tstate, self, frame, what, arg);
373 if (result == NULL) {
374 PyEval_SetProfile(NULL, NULL);
375 return -1;
376 }
377 Py_DECREF(result);
378 return 0;
Fred Drake5755ce62001-06-27 19:19:46 +0000379}
380
381static int
382trace_trampoline(PyObject *self, PyFrameObject *frame,
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000383 int what, PyObject *arg)
Fred Drake5755ce62001-06-27 19:19:46 +0000384{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000385 PyThreadState *tstate = frame->f_tstate;
386 PyObject *callback;
387 PyObject *result;
Fred Drake5755ce62001-06-27 19:19:46 +0000388
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000389 if (what == PyTrace_CALL)
390 callback = self;
391 else
392 callback = frame->f_trace;
393 if (callback == NULL)
394 return 0;
395 result = call_trampoline(tstate, callback, frame, what, arg);
396 if (result == NULL) {
397 PyEval_SetTrace(NULL, NULL);
398 Py_XDECREF(frame->f_trace);
399 frame->f_trace = NULL;
400 return -1;
401 }
402 if (result != Py_None) {
403 PyObject *temp = frame->f_trace;
404 frame->f_trace = NULL;
405 Py_XDECREF(temp);
406 frame->f_trace = result;
407 }
408 else {
409 Py_DECREF(result);
410 }
411 return 0;
Fred Drake5755ce62001-06-27 19:19:46 +0000412}
Fred Draked0838392001-06-16 21:02:31 +0000413
Fred Drake8b4d01d2000-05-09 19:57:01 +0000414static PyObject *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +0000415sys_settrace(PyObject *self, PyObject *args)
Guido van Rossume2437a11992-03-23 18:20:18 +0000416{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000417 if (trace_init() == -1)
418 return NULL;
419 if (args == Py_None)
420 PyEval_SetTrace(NULL, NULL);
421 else
422 PyEval_SetTrace(trace_trampoline, args);
423 Py_INCREF(Py_None);
424 return Py_None;
Guido van Rossume2437a11992-03-23 18:20:18 +0000425}
426
Martin v. Löwisa3fb4f72002-06-09 13:33:54 +0000427PyDoc_STRVAR(settrace_doc,
Guido van Rossumc3bc31e1998-06-27 19:43:25 +0000428"settrace(function)\n\
429\n\
430Set the global debug tracing function. It will be called on each\n\
Martin v. Löwisa3fb4f72002-06-09 13:33:54 +0000431function call. See the debugger chapter in the library manual."
432);
Guido van Rossumc3bc31e1998-06-27 19:43:25 +0000433
Guido van Rossum65bf9f21997-04-29 18:33:38 +0000434static PyObject *
Christian Heimes9bd667a2008-01-20 15:14:11 +0000435sys_gettrace(PyObject *self, PyObject *args)
436{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000437 PyThreadState *tstate = PyThreadState_GET();
438 PyObject *temp = tstate->c_traceobj;
Christian Heimes9bd667a2008-01-20 15:14:11 +0000439
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000440 if (temp == NULL)
441 temp = Py_None;
442 Py_INCREF(temp);
443 return temp;
Christian Heimes9bd667a2008-01-20 15:14:11 +0000444}
445
446PyDoc_STRVAR(gettrace_doc,
447"gettrace()\n\
448\n\
449Return the global debug tracing function set with sys.settrace.\n\
450See the debugger chapter in the library manual."
451);
452
453static PyObject *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +0000454sys_setprofile(PyObject *self, PyObject *args)
Guido van Rossume2437a11992-03-23 18:20:18 +0000455{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000456 if (trace_init() == -1)
457 return NULL;
458 if (args == Py_None)
459 PyEval_SetProfile(NULL, NULL);
460 else
461 PyEval_SetProfile(profile_trampoline, args);
462 Py_INCREF(Py_None);
463 return Py_None;
Guido van Rossume2437a11992-03-23 18:20:18 +0000464}
465
Martin v. Löwisa3fb4f72002-06-09 13:33:54 +0000466PyDoc_STRVAR(setprofile_doc,
Guido van Rossumc3bc31e1998-06-27 19:43:25 +0000467"setprofile(function)\n\
468\n\
469Set the profiling function. It will be called on each function call\n\
Martin v. Löwisa3fb4f72002-06-09 13:33:54 +0000470and return. See the profiler chapter in the library manual."
471);
Guido van Rossumc3bc31e1998-06-27 19:43:25 +0000472
Guido van Rossum65bf9f21997-04-29 18:33:38 +0000473static PyObject *
Christian Heimes9bd667a2008-01-20 15:14:11 +0000474sys_getprofile(PyObject *self, PyObject *args)
475{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000476 PyThreadState *tstate = PyThreadState_GET();
477 PyObject *temp = tstate->c_profileobj;
Christian Heimes9bd667a2008-01-20 15:14:11 +0000478
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000479 if (temp == NULL)
480 temp = Py_None;
481 Py_INCREF(temp);
482 return temp;
Christian Heimes9bd667a2008-01-20 15:14:11 +0000483}
484
485PyDoc_STRVAR(getprofile_doc,
486"getprofile()\n\
487\n\
488Return the profiling function set with sys.setprofile.\n\
489See the profiler chapter in the library manual."
490);
491
Antoine Pitrou074e5ed2009-11-10 19:50:40 +0000492static int _check_interval = 100;
493
Christian Heimes9bd667a2008-01-20 15:14:11 +0000494static PyObject *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +0000495sys_setcheckinterval(PyObject *self, PyObject *args)
Guido van Rossuma0d7a231995-01-09 17:46:13 +0000496{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000497 if (PyErr_WarnEx(PyExc_DeprecationWarning,
498 "sys.getcheckinterval() and sys.setcheckinterval() "
499 "are deprecated. Use sys.setswitchinterval() "
500 "instead.", 1) < 0)
501 return NULL;
502 if (!PyArg_ParseTuple(args, "i:setcheckinterval", &_check_interval))
503 return NULL;
504 Py_INCREF(Py_None);
505 return Py_None;
Guido van Rossuma0d7a231995-01-09 17:46:13 +0000506}
507
Martin v. Löwisa3fb4f72002-06-09 13:33:54 +0000508PyDoc_STRVAR(setcheckinterval_doc,
Guido van Rossumc3bc31e1998-06-27 19:43:25 +0000509"setcheckinterval(n)\n\
510\n\
511Tell the Python interpreter to check for asynchronous events every\n\
Martin v. Löwisa3fb4f72002-06-09 13:33:54 +0000512n instructions. This also affects how often thread switches occur."
513);
Guido van Rossumc3bc31e1998-06-27 19:43:25 +0000514
Jeremy Hyltonee5adfb2000-08-31 19:23:01 +0000515static PyObject *
Tim Peterse5e065b2003-07-06 18:36:54 +0000516sys_getcheckinterval(PyObject *self, PyObject *args)
517{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000518 if (PyErr_WarnEx(PyExc_DeprecationWarning,
519 "sys.getcheckinterval() and sys.setcheckinterval() "
520 "are deprecated. Use sys.getswitchinterval() "
521 "instead.", 1) < 0)
522 return NULL;
523 return PyLong_FromLong(_check_interval);
Tim Peterse5e065b2003-07-06 18:36:54 +0000524}
525
526PyDoc_STRVAR(getcheckinterval_doc,
527"getcheckinterval() -> current check interval; see setcheckinterval()."
528);
529
Antoine Pitrou074e5ed2009-11-10 19:50:40 +0000530#ifdef WITH_THREAD
531static PyObject *
532sys_setswitchinterval(PyObject *self, PyObject *args)
533{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000534 double d;
535 if (!PyArg_ParseTuple(args, "d:setswitchinterval", &d))
536 return NULL;
537 if (d <= 0.0) {
538 PyErr_SetString(PyExc_ValueError,
539 "switch interval must be strictly positive");
540 return NULL;
541 }
542 _PyEval_SetSwitchInterval((unsigned long) (1e6 * d));
543 Py_INCREF(Py_None);
544 return Py_None;
Antoine Pitrou074e5ed2009-11-10 19:50:40 +0000545}
546
547PyDoc_STRVAR(setswitchinterval_doc,
548"setswitchinterval(n)\n\
549\n\
550Set the ideal thread switching delay inside the Python interpreter\n\
551The actual frequency of switching threads can be lower if the\n\
552interpreter executes long sequences of uninterruptible code\n\
553(this is implementation-specific and workload-dependent).\n\
554\n\
555The parameter must represent the desired switching delay in seconds\n\
556A typical value is 0.005 (5 milliseconds)."
557);
558
559static PyObject *
560sys_getswitchinterval(PyObject *self, PyObject *args)
561{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000562 return PyFloat_FromDouble(1e-6 * _PyEval_GetSwitchInterval());
Antoine Pitrou074e5ed2009-11-10 19:50:40 +0000563}
564
565PyDoc_STRVAR(getswitchinterval_doc,
566"getswitchinterval() -> current thread switch interval; see setswitchinterval()."
567);
568
569#endif /* WITH_THREAD */
570
Martin v. Löwisf30d60e2004-06-08 08:17:44 +0000571#ifdef WITH_TSC
572static PyObject *
573sys_settscdump(PyObject *self, PyObject *args)
574{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000575 int bool;
576 PyThreadState *tstate = PyThreadState_Get();
Martin v. Löwisf30d60e2004-06-08 08:17:44 +0000577
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000578 if (!PyArg_ParseTuple(args, "i:settscdump", &bool))
579 return NULL;
580 if (bool)
581 tstate->interp->tscdump = 1;
582 else
583 tstate->interp->tscdump = 0;
584 Py_INCREF(Py_None);
585 return Py_None;
Tim Peters216b78b2006-01-06 02:40:53 +0000586
Martin v. Löwisf30d60e2004-06-08 08:17:44 +0000587}
588
Tim Peters216b78b2006-01-06 02:40:53 +0000589PyDoc_STRVAR(settscdump_doc,
Martin v. Löwisf30d60e2004-06-08 08:17:44 +0000590"settscdump(bool)\n\
591\n\
592If true, tell the Python interpreter to dump VM measurements to\n\
593stderr. If false, turn off dump. The measurements are based on the\n\
Michael W. Hudson800ba232004-08-12 18:19:17 +0000594processor's time-stamp counter."
Tim Peters216b78b2006-01-06 02:40:53 +0000595);
Neal Norwitz0f5aed42004-06-13 20:32:17 +0000596#endif /* TSC */
Martin v. Löwisf30d60e2004-06-08 08:17:44 +0000597
Tim Peterse5e065b2003-07-06 18:36:54 +0000598static PyObject *
Jeremy Hyltonee5adfb2000-08-31 19:23:01 +0000599sys_setrecursionlimit(PyObject *self, PyObject *args)
600{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000601 int new_limit;
602 if (!PyArg_ParseTuple(args, "i:setrecursionlimit", &new_limit))
603 return NULL;
604 if (new_limit <= 0) {
605 PyErr_SetString(PyExc_ValueError,
606 "recursion limit must be positive");
607 return NULL;
608 }
609 Py_SetRecursionLimit(new_limit);
610 Py_INCREF(Py_None);
611 return Py_None;
Jeremy Hyltonee5adfb2000-08-31 19:23:01 +0000612}
613
Mark Dickinsondc787d22010-05-23 13:33:13 +0000614static PyTypeObject Hash_InfoType;
615
616PyDoc_STRVAR(hash_info_doc,
617"hash_info\n\
618\n\
619A struct sequence providing parameters used for computing\n\
620numeric hashes. The attributes are read only.");
621
622static PyStructSequence_Field hash_info_fields[] = {
623 {"width", "width of the type used for hashing, in bits"},
624 {"modulus", "prime number giving the modulus on which the hash "
625 "function is based"},
626 {"inf", "value to be used for hash of a positive infinity"},
627 {"nan", "value to be used for hash of a nan"},
628 {"imag", "multiplier used for the imaginary part of a complex number"},
629 {NULL, NULL}
630};
631
632static PyStructSequence_Desc hash_info_desc = {
633 "sys.hash_info",
634 hash_info_doc,
635 hash_info_fields,
636 5,
637};
638
Matthias Klosed885e952010-07-06 10:53:30 +0000639static PyObject *
Mark Dickinsondc787d22010-05-23 13:33:13 +0000640get_hash_info(void)
641{
642 PyObject *hash_info;
643 int field = 0;
644 hash_info = PyStructSequence_New(&Hash_InfoType);
645 if (hash_info == NULL)
646 return NULL;
647 PyStructSequence_SET_ITEM(hash_info, field++,
Benjamin Peterson8f67d082010-10-17 20:54:53 +0000648 PyLong_FromLong(8*sizeof(Py_hash_t)));
Mark Dickinsondc787d22010-05-23 13:33:13 +0000649 PyStructSequence_SET_ITEM(hash_info, field++,
Benjamin Peterson8035bc52010-10-23 16:20:50 +0000650 PyLong_FromSsize_t(_PyHASH_MODULUS));
Mark Dickinsondc787d22010-05-23 13:33:13 +0000651 PyStructSequence_SET_ITEM(hash_info, field++,
652 PyLong_FromLong(_PyHASH_INF));
653 PyStructSequence_SET_ITEM(hash_info, field++,
654 PyLong_FromLong(_PyHASH_NAN));
655 PyStructSequence_SET_ITEM(hash_info, field++,
656 PyLong_FromLong(_PyHASH_IMAG));
657 if (PyErr_Occurred()) {
658 Py_CLEAR(hash_info);
659 return NULL;
660 }
661 return hash_info;
662}
663
664
Martin v. Löwisa3fb4f72002-06-09 13:33:54 +0000665PyDoc_STRVAR(setrecursionlimit_doc,
Jeremy Hyltonee5adfb2000-08-31 19:23:01 +0000666"setrecursionlimit(n)\n\
667\n\
668Set the maximum depth of the Python interpreter stack to n. This\n\
669limit prevents infinite recursion from causing an overflow of the C\n\
670stack and crashing Python. The highest possible limit is platform-\n\
Martin v. Löwisa3fb4f72002-06-09 13:33:54 +0000671dependent."
672);
Jeremy Hyltonee5adfb2000-08-31 19:23:01 +0000673
674static PyObject *
Martin v. Löwise3eb1f22001-08-16 13:15:00 +0000675sys_getrecursionlimit(PyObject *self)
Jeremy Hyltonee5adfb2000-08-31 19:23:01 +0000676{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000677 return PyLong_FromLong(Py_GetRecursionLimit());
Jeremy Hyltonee5adfb2000-08-31 19:23:01 +0000678}
679
Martin v. Löwisa3fb4f72002-06-09 13:33:54 +0000680PyDoc_STRVAR(getrecursionlimit_doc,
Jeremy Hyltonee5adfb2000-08-31 19:23:01 +0000681"getrecursionlimit()\n\
682\n\
683Return the current value of the recursion limit, the maximum depth\n\
684of the Python interpreter stack. This limit prevents infinite\n\
Jack Jansene739a0d2002-06-26 20:39:20 +0000685recursion from causing an overflow of the C stack and crashing Python."
Martin v. Löwisa3fb4f72002-06-09 13:33:54 +0000686);
Jeremy Hyltonee5adfb2000-08-31 19:23:01 +0000687
Mark Hammond8696ebc2002-10-08 02:44:31 +0000688#ifdef MS_WINDOWS
689PyDoc_STRVAR(getwindowsversion_doc,
690"getwindowsversion()\n\
691\n\
Eric Smithf7bb5782010-01-27 00:44:57 +0000692Return information about the running version of Windows as a named tuple.\n\
693The members are named: major, minor, build, platform, service_pack,\n\
694service_pack_major, service_pack_minor, suite_mask, and product_type. For\n\
Ezio Melotti4969f702011-03-15 05:59:46 +0200695backward compatibility, only the first 5 items are available by indexing.\n\
Eric Smithf7bb5782010-01-27 00:44:57 +0000696All elements are numbers, except service_pack which is a string. Platform\n\
697may be 0 for win32s, 1 for Windows 9x/ME, 2 for Windows NT/2000/XP/Vista/7,\n\
6983 for Windows CE. Product_type may be 1 for a workstation, 2 for a domain\n\
699controller, 3 for a server."
Mark Hammond8696ebc2002-10-08 02:44:31 +0000700);
701
Eric Smithf7bb5782010-01-27 00:44:57 +0000702static PyTypeObject WindowsVersionType = {0, 0, 0, 0, 0, 0};
703
704static PyStructSequence_Field windows_version_fields[] = {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000705 {"major", "Major version number"},
706 {"minor", "Minor version number"},
707 {"build", "Build number"},
708 {"platform", "Operating system platform"},
709 {"service_pack", "Latest Service Pack installed on the system"},
710 {"service_pack_major", "Service Pack major version number"},
711 {"service_pack_minor", "Service Pack minor version number"},
712 {"suite_mask", "Bit mask identifying available product suites"},
713 {"product_type", "System product type"},
714 {0}
Eric Smithf7bb5782010-01-27 00:44:57 +0000715};
716
717static PyStructSequence_Desc windows_version_desc = {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000718 "sys.getwindowsversion", /* name */
719 getwindowsversion_doc, /* doc */
720 windows_version_fields, /* fields */
721 5 /* For backward compatibility,
722 only the first 5 items are accessible
723 via indexing, the rest are name only */
Eric Smithf7bb5782010-01-27 00:44:57 +0000724};
725
Mark Hammond8696ebc2002-10-08 02:44:31 +0000726static PyObject *
727sys_getwindowsversion(PyObject *self)
728{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000729 PyObject *version;
730 int pos = 0;
731 OSVERSIONINFOEX ver;
732 ver.dwOSVersionInfoSize = sizeof(ver);
733 if (!GetVersionEx((OSVERSIONINFO*) &ver))
734 return PyErr_SetFromWindowsErr(0);
Eric Smithf7bb5782010-01-27 00:44:57 +0000735
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000736 version = PyStructSequence_New(&WindowsVersionType);
737 if (version == NULL)
738 return NULL;
Eric Smithf7bb5782010-01-27 00:44:57 +0000739
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000740 PyStructSequence_SET_ITEM(version, pos++, PyLong_FromLong(ver.dwMajorVersion));
741 PyStructSequence_SET_ITEM(version, pos++, PyLong_FromLong(ver.dwMinorVersion));
742 PyStructSequence_SET_ITEM(version, pos++, PyLong_FromLong(ver.dwBuildNumber));
743 PyStructSequence_SET_ITEM(version, pos++, PyLong_FromLong(ver.dwPlatformId));
744 PyStructSequence_SET_ITEM(version, pos++, PyUnicode_FromString(ver.szCSDVersion));
745 PyStructSequence_SET_ITEM(version, pos++, PyLong_FromLong(ver.wServicePackMajor));
746 PyStructSequence_SET_ITEM(version, pos++, PyLong_FromLong(ver.wServicePackMinor));
747 PyStructSequence_SET_ITEM(version, pos++, PyLong_FromLong(ver.wSuiteMask));
748 PyStructSequence_SET_ITEM(version, pos++, PyLong_FromLong(ver.wProductType));
Eric Smithf7bb5782010-01-27 00:44:57 +0000749
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000750 return version;
Mark Hammond8696ebc2002-10-08 02:44:31 +0000751}
752
753#endif /* MS_WINDOWS */
754
Martin v. Löwisf0473d52001-07-18 16:17:16 +0000755#ifdef HAVE_DLOPEN
756static PyObject *
757sys_setdlopenflags(PyObject *self, PyObject *args)
758{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000759 int new_val;
760 PyThreadState *tstate = PyThreadState_GET();
761 if (!PyArg_ParseTuple(args, "i:setdlopenflags", &new_val))
762 return NULL;
763 if (!tstate)
764 return NULL;
765 tstate->interp->dlopenflags = new_val;
766 Py_INCREF(Py_None);
767 return Py_None;
Martin v. Löwisf0473d52001-07-18 16:17:16 +0000768}
769
Martin v. Löwisa3fb4f72002-06-09 13:33:54 +0000770PyDoc_STRVAR(setdlopenflags_doc,
Martin v. Löwisf0473d52001-07-18 16:17:16 +0000771"setdlopenflags(n) -> None\n\
772\n\
Alexandre Vassalotti260484d2009-07-17 11:43:26 +0000773Set the flags used by the interpreter for dlopen calls, such as when the\n\
774interpreter loads extension modules. Among other things, this will enable\n\
775a lazy resolving of symbols when importing a module, if called as\n\
776sys.setdlopenflags(0). To share symbols across extension modules, call as\n\
Andrew Kuchlingc61b9132013-06-21 10:58:41 -0400777sys.setdlopenflags(os.RTLD_GLOBAL). Symbolic names for the flag modules\n\
Victor Stinnerf4afa432011-10-31 11:48:09 +0100778can be found in the os module (RTLD_xxx constants, e.g. os.RTLD_LAZY).");
Martin v. Löwisf0473d52001-07-18 16:17:16 +0000779
780static PyObject *
781sys_getdlopenflags(PyObject *self, PyObject *args)
782{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000783 PyThreadState *tstate = PyThreadState_GET();
784 if (!tstate)
785 return NULL;
786 return PyLong_FromLong(tstate->interp->dlopenflags);
Martin v. Löwisf0473d52001-07-18 16:17:16 +0000787}
788
Martin v. Löwisa3fb4f72002-06-09 13:33:54 +0000789PyDoc_STRVAR(getdlopenflags_doc,
Martin v. Löwisf0473d52001-07-18 16:17:16 +0000790"getdlopenflags() -> int\n\
791\n\
Alexandre Vassalotti260484d2009-07-17 11:43:26 +0000792Return the current value of the flags that are used for dlopen calls.\n\
Andrew Kuchlingc61b9132013-06-21 10:58:41 -0400793The flag constants are defined in the os module.");
Alexandre Vassalotti260484d2009-07-17 11:43:26 +0000794
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000795#endif /* HAVE_DLOPEN */
Martin v. Löwisf0473d52001-07-18 16:17:16 +0000796
Guido van Rossum14b4adb1992-09-03 20:25:30 +0000797#ifdef USE_MALLOPT
798/* Link with -lmalloc (or -lmpc) on an SGI */
799#include <malloc.h>
800
Guido van Rossum65bf9f21997-04-29 18:33:38 +0000801static PyObject *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +0000802sys_mdebug(PyObject *self, PyObject *args)
Guido van Rossum14b4adb1992-09-03 20:25:30 +0000803{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000804 int flag;
805 if (!PyArg_ParseTuple(args, "i:mdebug", &flag))
806 return NULL;
807 mallopt(M_DEBUG, flag);
808 Py_INCREF(Py_None);
809 return Py_None;
Guido van Rossum14b4adb1992-09-03 20:25:30 +0000810}
811#endif /* USE_MALLOPT */
812
Guido van Rossum65bf9f21997-04-29 18:33:38 +0000813static PyObject *
Robert Schuppeniesfbe94c52008-07-14 10:13:31 +0000814sys_getsizeof(PyObject *self, PyObject *args, PyObject *kwds)
Martin v. Löwis00709aa2008-06-04 14:18:43 +0000815{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000816 PyObject *res = NULL;
Benjamin Petersonce798522012-01-22 11:24:29 -0500817 static PyObject *gc_head_size = NULL;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000818 static char *kwlist[] = {"object", "default", 0};
819 PyObject *o, *dflt = NULL;
820 PyObject *method;
Benjamin Petersonce798522012-01-22 11:24:29 -0500821 _Py_IDENTIFIER(__sizeof__);
Robert Schuppeniesfbe94c52008-07-14 10:13:31 +0000822
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000823 if (!PyArg_ParseTupleAndKeywords(args, kwds, "O|O:getsizeof",
824 kwlist, &o, &dflt))
825 return NULL;
Martin v. Löwis00709aa2008-06-04 14:18:43 +0000826
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000827 /* Initialize static variable for GC head size */
828 if (gc_head_size == NULL) {
829 gc_head_size = PyLong_FromSsize_t(sizeof(PyGC_Head));
830 if (gc_head_size == NULL)
831 return NULL;
832 }
Benjamin Petersona5758c02009-05-09 18:15:04 +0000833
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000834 /* Make sure the type is initialized. float gets initialized late */
835 if (PyType_Ready(Py_TYPE(o)) < 0)
836 return NULL;
Robert Schuppeniesfbe94c52008-07-14 10:13:31 +0000837
Benjamin Petersonce798522012-01-22 11:24:29 -0500838 method = _PyObject_LookupSpecial(o, &PyId___sizeof__);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000839 if (method == NULL) {
840 if (!PyErr_Occurred())
841 PyErr_Format(PyExc_TypeError,
842 "Type %.100s doesn't define __sizeof__",
843 Py_TYPE(o)->tp_name);
844 }
845 else {
846 res = PyObject_CallFunctionObjArgs(method, NULL);
847 Py_DECREF(method);
848 }
849
850 /* Has a default value been given */
851 if ((res == NULL) && (dflt != NULL) &&
852 PyErr_ExceptionMatches(PyExc_TypeError))
853 {
854 PyErr_Clear();
855 Py_INCREF(dflt);
856 return dflt;
857 }
858 else if (res == NULL)
859 return res;
860
861 /* add gc_head size */
862 if (PyObject_IS_GC(o)) {
863 PyObject *tmp = res;
864 res = PyNumber_Add(tmp, gc_head_size);
865 Py_DECREF(tmp);
866 }
867 return res;
Martin v. Löwis00709aa2008-06-04 14:18:43 +0000868}
869
870PyDoc_STRVAR(getsizeof_doc,
Robert Schuppeniesfbe94c52008-07-14 10:13:31 +0000871"getsizeof(object, default) -> int\n\
Martin v. Löwis00709aa2008-06-04 14:18:43 +0000872\n\
873Return the size of object in bytes.");
874
875static PyObject *
Fred Drakea7688822001-10-24 20:47:48 +0000876sys_getrefcount(PyObject *self, PyObject *arg)
Sjoerd Mullender6ec3c651995-08-29 09:18:14 +0000877{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000878 return PyLong_FromSsize_t(arg->ob_refcnt);
Sjoerd Mullender6ec3c651995-08-29 09:18:14 +0000879}
880
Tim Peters4be93d02002-07-07 19:59:50 +0000881#ifdef Py_REF_DEBUG
Mark Hammond440d8982000-06-20 08:12:48 +0000882static PyObject *
Martin v. Löwise3eb1f22001-08-16 13:15:00 +0000883sys_gettotalrefcount(PyObject *self)
Mark Hammond440d8982000-06-20 08:12:48 +0000884{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000885 return PyLong_FromSsize_t(_Py_GetRefTotal());
Mark Hammond440d8982000-06-20 08:12:48 +0000886}
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000887#endif /* Py_REF_DEBUG */
Mark Hammond440d8982000-06-20 08:12:48 +0000888
Martin v. Löwisa3fb4f72002-06-09 13:33:54 +0000889PyDoc_STRVAR(getrefcount_doc,
Guido van Rossumc3bc31e1998-06-27 19:43:25 +0000890"getrefcount(object) -> integer\n\
891\n\
Fred Drakeba3ff1b2002-06-20 21:36:19 +0000892Return the reference count of object. The count returned is generally\n\
893one higher than you might expect, because it includes the (temporary)\n\
894reference as an argument to getrefcount()."
Martin v. Löwisa3fb4f72002-06-09 13:33:54 +0000895);
Guido van Rossumc3bc31e1998-06-27 19:43:25 +0000896
Antoine Pitrouf9d0b122012-12-09 14:28:26 +0100897static PyObject *
898sys_getallocatedblocks(PyObject *self)
899{
900 return PyLong_FromSsize_t(_Py_GetAllocatedBlocks());
901}
902
903PyDoc_STRVAR(getallocatedblocks_doc,
904"getallocatedblocks() -> integer\n\
905\n\
906Return the number of memory blocks currently allocated, regardless of their\n\
907size."
908);
909
Sjoerd Mullender6ec3c651995-08-29 09:18:14 +0000910#ifdef COUNT_ALLOCS
911static PyObject *
Martin v. Löwise3eb1f22001-08-16 13:15:00 +0000912sys_getcounts(PyObject *self)
Sjoerd Mullender6ec3c651995-08-29 09:18:14 +0000913{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000914 extern PyObject *get_counts(void);
Sjoerd Mullender6ec3c651995-08-29 09:18:14 +0000915
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000916 return get_counts();
Sjoerd Mullender6ec3c651995-08-29 09:18:14 +0000917}
918#endif
919
Martin v. Löwisa3fb4f72002-06-09 13:33:54 +0000920PyDoc_STRVAR(getframe_doc,
Barry Warsawb6a54d22000-12-06 21:47:46 +0000921"_getframe([depth]) -> frameobject\n\
922\n\
923Return a frame object from the call stack. If optional integer depth is\n\
924given, return the frame object that many calls below the top of the stack.\n\
925If that is deeper than the call stack, ValueError is raised. The default\n\
926for depth is zero, returning the frame at the top of the call stack.\n\
927\n\
928This function should be used for internal and specialized\n\
Martin v. Löwisa3fb4f72002-06-09 13:33:54 +0000929purposes only."
930);
Barry Warsawb6a54d22000-12-06 21:47:46 +0000931
932static PyObject *
933sys_getframe(PyObject *self, PyObject *args)
934{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000935 PyFrameObject *f = PyThreadState_GET()->frame;
936 int depth = -1;
Barry Warsawb6a54d22000-12-06 21:47:46 +0000937
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000938 if (!PyArg_ParseTuple(args, "|i:_getframe", &depth))
939 return NULL;
Barry Warsawb6a54d22000-12-06 21:47:46 +0000940
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000941 while (depth > 0 && f != NULL) {
942 f = f->f_back;
943 --depth;
944 }
945 if (f == NULL) {
946 PyErr_SetString(PyExc_ValueError,
947 "call stack is not deep enough");
948 return NULL;
949 }
950 Py_INCREF(f);
951 return (PyObject*)f;
Barry Warsawb6a54d22000-12-06 21:47:46 +0000952}
953
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000954PyDoc_STRVAR(current_frames_doc,
955"_current_frames() -> dictionary\n\
956\n\
957Return a dictionary mapping each current thread T's thread id to T's\n\
958current stack frame.\n\
959\n\
960This function should be used for specialized purposes only."
961);
962
963static PyObject *
964sys_current_frames(PyObject *self, PyObject *noargs)
965{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000966 return _PyThread_CurrentFrames();
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000967}
968
Guido van Rossuma12fe4e2003-04-09 19:06:21 +0000969PyDoc_STRVAR(call_tracing_doc,
970"call_tracing(func, args) -> object\n\
971\n\
972Call func(*args), while tracing is enabled. The tracing state is\n\
973saved, and restored afterwards. This is intended to be called from\n\
974a debugger from a checkpoint, to recursively debug some other code."
975);
976
977static PyObject *
978sys_call_tracing(PyObject *self, PyObject *args)
979{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000980 PyObject *func, *funcargs;
981 if (!PyArg_ParseTuple(args, "OO!:call_tracing", &func, &PyTuple_Type, &funcargs))
982 return NULL;
983 return _PyEval_CallTracing(func, funcargs);
Guido van Rossuma12fe4e2003-04-09 19:06:21 +0000984}
985
Jeremy Hylton985eba52003-02-05 23:13:00 +0000986PyDoc_STRVAR(callstats_doc,
987"callstats() -> tuple of integers\n\
988\n\
989Return a tuple of function call statistics, if CALL_PROFILE was defined\n\
990when Python was built. Otherwise, return None.\n\
991\n\
992When enabled, this function returns detailed, implementation-specific\n\
993details about the number of function calls executed. The return value is\n\
994a 11-tuple where the entries in the tuple are counts of:\n\
9950. all function calls\n\
9961. calls to PyFunction_Type objects\n\
9972. PyFunction calls that do not create an argument tuple\n\
9983. PyFunction calls that do not create an argument tuple\n\
999 and bypass PyEval_EvalCodeEx()\n\
10004. PyMethod calls\n\
10015. PyMethod calls on bound methods\n\
10026. PyType calls\n\
10037. PyCFunction calls\n\
10048. generator calls\n\
10059. All other calls\n\
100610. Number of stack pops performed by call_function()"
1007);
Barry Warsawb6a54d22000-12-06 21:47:46 +00001008
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001009#ifdef __cplusplus
1010extern "C" {
1011#endif
1012
David Malcolm49526f42012-06-22 14:55:41 -04001013static PyObject *
1014sys_debugmallocstats(PyObject *self, PyObject *args)
1015{
1016#ifdef WITH_PYMALLOC
1017 _PyObject_DebugMallocStats(stderr);
1018 fputc('\n', stderr);
1019#endif
1020 _PyObject_DebugTypeStats(stderr);
1021
1022 Py_RETURN_NONE;
1023}
1024PyDoc_STRVAR(debugmallocstats_doc,
1025"_debugmallocstats()\n\
1026\n\
1027Print summary info to stderr about the state of\n\
1028pymalloc's structures.\n\
1029\n\
1030In Py_DEBUG mode, also perform some expensive internal consistency\n\
1031checks.\n\
1032");
1033
Guido van Rossum7f3f2c11996-05-23 22:45:41 +00001034#ifdef Py_TRACE_REFS
Guido van Rossumded690f1996-05-24 20:48:31 +00001035/* Defined in objects.c because it uses static globals if that file */
Tim Petersdbd9ba62000-07-09 03:09:57 +00001036extern PyObject *_Py_GetObjects(PyObject *, PyObject *);
Sjoerd Mullender6ec3c651995-08-29 09:18:14 +00001037#endif
Guido van Rossumded690f1996-05-24 20:48:31 +00001038
Guido van Rossum43f1b8d1997-01-24 04:07:45 +00001039#ifdef DYNAMIC_EXECUTION_PROFILE
1040/* Defined in ceval.c because it uses static globals if that file */
Tim Petersdbd9ba62000-07-09 03:09:57 +00001041extern PyObject *_Py_GetDXProfile(PyObject *, PyObject *);
Guido van Rossum43f1b8d1997-01-24 04:07:45 +00001042#endif
1043
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001044#ifdef __cplusplus
1045}
1046#endif
1047
Christian Heimes15ebc882008-02-04 18:48:49 +00001048static PyObject *
1049sys_clear_type_cache(PyObject* self, PyObject* args)
1050{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001051 PyType_ClearCache();
1052 Py_RETURN_NONE;
Christian Heimes15ebc882008-02-04 18:48:49 +00001053}
1054
1055PyDoc_STRVAR(sys_clear_type_cache__doc__,
1056"_clear_type_cache() -> None\n\
1057Clear the internal type lookup cache.");
1058
1059
Guido van Rossum65bf9f21997-04-29 18:33:38 +00001060static PyMethodDef sys_methods[] = {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001061 /* Might as well keep this in alphabetic order */
1062 {"callstats", (PyCFunction)PyEval_GetCallStats, METH_NOARGS,
1063 callstats_doc},
1064 {"_clear_type_cache", sys_clear_type_cache, METH_NOARGS,
1065 sys_clear_type_cache__doc__},
1066 {"_current_frames", sys_current_frames, METH_NOARGS,
1067 current_frames_doc},
1068 {"displayhook", sys_displayhook, METH_O, displayhook_doc},
1069 {"exc_info", sys_exc_info, METH_NOARGS, exc_info_doc},
1070 {"excepthook", sys_excepthook, METH_VARARGS, excepthook_doc},
1071 {"exit", sys_exit, METH_VARARGS, exit_doc},
1072 {"getdefaultencoding", (PyCFunction)sys_getdefaultencoding,
1073 METH_NOARGS, getdefaultencoding_doc},
Martin v. Löwisf0473d52001-07-18 16:17:16 +00001074#ifdef HAVE_DLOPEN
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001075 {"getdlopenflags", (PyCFunction)sys_getdlopenflags, METH_NOARGS,
1076 getdlopenflags_doc},
Martin v. Löwisf0473d52001-07-18 16:17:16 +00001077#endif
Antoine Pitrouf9d0b122012-12-09 14:28:26 +01001078 {"getallocatedblocks", (PyCFunction)sys_getallocatedblocks, METH_NOARGS,
1079 getallocatedblocks_doc},
Sjoerd Mullender6ec3c651995-08-29 09:18:14 +00001080#ifdef COUNT_ALLOCS
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001081 {"getcounts", (PyCFunction)sys_getcounts, METH_NOARGS},
Sjoerd Mullender6ec3c651995-08-29 09:18:14 +00001082#endif
Guido van Rossum43f1b8d1997-01-24 04:07:45 +00001083#ifdef DYNAMIC_EXECUTION_PROFILE
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001084 {"getdxp", _Py_GetDXProfile, METH_VARARGS},
Guido van Rossum43f1b8d1997-01-24 04:07:45 +00001085#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001086 {"getfilesystemencoding", (PyCFunction)sys_getfilesystemencoding,
1087 METH_NOARGS, getfilesystemencoding_doc},
Guido van Rossum7f3f2c11996-05-23 22:45:41 +00001088#ifdef Py_TRACE_REFS
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001089 {"getobjects", _Py_GetObjects, METH_VARARGS},
Tim Peters4be93d02002-07-07 19:59:50 +00001090#endif
1091#ifdef Py_REF_DEBUG
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001092 {"gettotalrefcount", (PyCFunction)sys_gettotalrefcount, METH_NOARGS},
Sjoerd Mullender6ec3c651995-08-29 09:18:14 +00001093#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001094 {"getrefcount", (PyCFunction)sys_getrefcount, METH_O, getrefcount_doc},
1095 {"getrecursionlimit", (PyCFunction)sys_getrecursionlimit, METH_NOARGS,
1096 getrecursionlimit_doc},
1097 {"getsizeof", (PyCFunction)sys_getsizeof,
1098 METH_VARARGS | METH_KEYWORDS, getsizeof_doc},
1099 {"_getframe", sys_getframe, METH_VARARGS, getframe_doc},
Mark Hammond8696ebc2002-10-08 02:44:31 +00001100#ifdef MS_WINDOWS
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001101 {"getwindowsversion", (PyCFunction)sys_getwindowsversion, METH_NOARGS,
1102 getwindowsversion_doc},
Mark Hammond8696ebc2002-10-08 02:44:31 +00001103#endif /* MS_WINDOWS */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001104 {"intern", sys_intern, METH_VARARGS, intern_doc},
Guido van Rossum14b4adb1992-09-03 20:25:30 +00001105#ifdef USE_MALLOPT
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001106 {"mdebug", sys_mdebug, METH_VARARGS},
Guido van Rossum14b4adb1992-09-03 20:25:30 +00001107#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001108 {"setcheckinterval", sys_setcheckinterval, METH_VARARGS,
1109 setcheckinterval_doc},
1110 {"getcheckinterval", sys_getcheckinterval, METH_NOARGS,
1111 getcheckinterval_doc},
Antoine Pitrou074e5ed2009-11-10 19:50:40 +00001112#ifdef WITH_THREAD
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001113 {"setswitchinterval", sys_setswitchinterval, METH_VARARGS,
1114 setswitchinterval_doc},
1115 {"getswitchinterval", sys_getswitchinterval, METH_NOARGS,
1116 getswitchinterval_doc},
Antoine Pitrou074e5ed2009-11-10 19:50:40 +00001117#endif
Martin v. Löwisf0473d52001-07-18 16:17:16 +00001118#ifdef HAVE_DLOPEN
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001119 {"setdlopenflags", sys_setdlopenflags, METH_VARARGS,
1120 setdlopenflags_doc},
Martin v. Löwisf0473d52001-07-18 16:17:16 +00001121#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001122 {"setprofile", sys_setprofile, METH_O, setprofile_doc},
1123 {"getprofile", sys_getprofile, METH_NOARGS, getprofile_doc},
1124 {"setrecursionlimit", sys_setrecursionlimit, METH_VARARGS,
1125 setrecursionlimit_doc},
Martin v. Löwisf30d60e2004-06-08 08:17:44 +00001126#ifdef WITH_TSC
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001127 {"settscdump", sys_settscdump, METH_VARARGS, settscdump_doc},
Martin v. Löwisf30d60e2004-06-08 08:17:44 +00001128#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001129 {"settrace", sys_settrace, METH_O, settrace_doc},
1130 {"gettrace", sys_gettrace, METH_NOARGS, gettrace_doc},
1131 {"call_tracing", sys_call_tracing, METH_VARARGS, call_tracing_doc},
David Malcolm49526f42012-06-22 14:55:41 -04001132 {"_debugmallocstats", sys_debugmallocstats, METH_VARARGS,
1133 debugmallocstats_doc},
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001134 {NULL, NULL} /* sentinel */
Guido van Rossum3f5da241990-12-20 15:06:42 +00001135};
1136
Guido van Rossum65bf9f21997-04-29 18:33:38 +00001137static PyObject *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00001138list_builtin_module_names(void)
Guido van Rossum34679b71993-01-26 13:33:44 +00001139{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001140 PyObject *list = PyList_New(0);
1141 int i;
1142 if (list == NULL)
1143 return NULL;
1144 for (i = 0; PyImport_Inittab[i].name != NULL; i++) {
1145 PyObject *name = PyUnicode_FromString(
1146 PyImport_Inittab[i].name);
1147 if (name == NULL)
1148 break;
1149 PyList_Append(list, name);
1150 Py_DECREF(name);
1151 }
1152 if (PyList_Sort(list) != 0) {
1153 Py_DECREF(list);
1154 list = NULL;
1155 }
1156 if (list) {
1157 PyObject *v = PyList_AsTuple(list);
1158 Py_DECREF(list);
1159 list = v;
1160 }
1161 return list;
Guido van Rossum34679b71993-01-26 13:33:44 +00001162}
1163
Guido van Rossum23fff912000-12-15 22:02:05 +00001164static PyObject *warnoptions = NULL;
1165
1166void
1167PySys_ResetWarnOptions(void)
1168{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001169 if (warnoptions == NULL || !PyList_Check(warnoptions))
1170 return;
1171 PyList_SetSlice(warnoptions, 0, PyList_GET_SIZE(warnoptions), NULL);
Guido van Rossum23fff912000-12-15 22:02:05 +00001172}
1173
1174void
Victor Stinner9ca9c252010-05-19 16:53:30 +00001175PySys_AddWarnOptionUnicode(PyObject *unicode)
Guido van Rossum23fff912000-12-15 22:02:05 +00001176{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001177 if (warnoptions == NULL || !PyList_Check(warnoptions)) {
1178 Py_XDECREF(warnoptions);
1179 warnoptions = PyList_New(0);
1180 if (warnoptions == NULL)
1181 return;
1182 }
Victor Stinner9ca9c252010-05-19 16:53:30 +00001183 PyList_Append(warnoptions, unicode);
1184}
1185
1186void
1187PySys_AddWarnOption(const wchar_t *s)
1188{
1189 PyObject *unicode;
1190 unicode = PyUnicode_FromWideChar(s, -1);
1191 if (unicode == NULL)
1192 return;
1193 PySys_AddWarnOptionUnicode(unicode);
1194 Py_DECREF(unicode);
Guido van Rossum23fff912000-12-15 22:02:05 +00001195}
1196
Christian Heimes33fe8092008-04-13 13:53:33 +00001197int
1198PySys_HasWarnOptions(void)
1199{
1200 return (warnoptions != NULL && (PyList_Size(warnoptions) > 0)) ? 1 : 0;
1201}
1202
Antoine Pitrou9583cac2010-10-21 13:42:28 +00001203static PyObject *xoptions = NULL;
1204
1205static PyObject *
1206get_xoptions(void)
1207{
1208 if (xoptions == NULL || !PyDict_Check(xoptions)) {
1209 Py_XDECREF(xoptions);
1210 xoptions = PyDict_New();
1211 }
1212 return xoptions;
1213}
1214
1215void
1216PySys_AddXOption(const wchar_t *s)
1217{
1218 PyObject *opts;
1219 PyObject *name = NULL, *value = NULL;
1220 const wchar_t *name_end;
Antoine Pitrou9583cac2010-10-21 13:42:28 +00001221
1222 opts = get_xoptions();
1223 if (opts == NULL)
1224 goto error;
1225
1226 name_end = wcschr(s, L'=');
1227 if (!name_end) {
1228 name = PyUnicode_FromWideChar(s, -1);
1229 value = Py_True;
1230 Py_INCREF(value);
1231 }
1232 else {
1233 name = PyUnicode_FromWideChar(s, name_end - s);
1234 value = PyUnicode_FromWideChar(name_end + 1, -1);
1235 }
1236 if (name == NULL || value == NULL)
1237 goto error;
Brett Cannonb94767f2011-02-22 20:15:44 +00001238 PyDict_SetItem(opts, name, value);
Antoine Pitrou9583cac2010-10-21 13:42:28 +00001239 Py_DECREF(name);
1240 Py_DECREF(value);
1241 return;
1242
1243error:
1244 Py_XDECREF(name);
1245 Py_XDECREF(value);
1246 /* No return value, therefore clear error state if possible */
1247 if (_Py_atomic_load_relaxed(&_PyThreadState_Current))
1248 PyErr_Clear();
1249}
1250
1251PyObject *
1252PySys_GetXOptions(void)
1253{
1254 return get_xoptions();
1255}
1256
Guido van Rossum40552d01998-08-06 03:34:39 +00001257/* XXX This doc string is too long to be a single string literal in VC++ 5.0.
1258 Two literals concatenated works just fine. If you have a K&R compiler
1259 or other abomination that however *does* understand longer strings,
1260 get rid of the !!! comment in the middle and the quotes that surround it. */
Martin v. Löwisa3fb4f72002-06-09 13:33:54 +00001261PyDoc_VAR(sys_doc) =
1262PyDoc_STR(
Guido van Rossumc3bc31e1998-06-27 19:43:25 +00001263"This module provides access to some objects used or maintained by the\n\
1264interpreter and to functions that interact strongly with the interpreter.\n\
1265\n\
1266Dynamic objects:\n\
1267\n\
1268argv -- command line arguments; argv[0] is the script pathname if known\n\
1269path -- module search path; path[0] is the script directory, else ''\n\
1270modules -- dictionary of loaded modules\n\
Ka-Ping Yeeb5c51322001-03-23 02:46:52 +00001271\n\
1272displayhook -- called to show results in an interactive session\n\
1273excepthook -- called to handle any uncaught exception other than SystemExit\n\
1274 To customize printing in an interactive session or to install a custom\n\
1275 top-level exception handler, assign other functions to replace these.\n\
1276\n\
Benjamin Peterson06157a42008-07-15 00:28:36 +00001277stdin -- standard input file object; used by input()\n\
Georg Brandl88fc6642007-02-09 21:28:07 +00001278stdout -- standard output file object; used by print()\n\
Guido van Rossumc3bc31e1998-06-27 19:43:25 +00001279stderr -- standard error object; used for error messages\n\
Ka-Ping Yeeb5c51322001-03-23 02:46:52 +00001280 By assigning other file objects (or objects that behave like files)\n\
1281 to these, it is possible to redirect all of the interpreter's I/O.\n\
Guido van Rossumc3bc31e1998-06-27 19:43:25 +00001282\n\
1283last_type -- type of last uncaught exception\n\
1284last_value -- value of last uncaught exception\n\
1285last_traceback -- traceback of last uncaught exception\n\
1286 These three are only available in an interactive session after a\n\
1287 traceback has been printed.\n\
Guido van Rossuma71b5f41999-01-14 19:07:00 +00001288"
Martin v. Löwisa3fb4f72002-06-09 13:33:54 +00001289)
Ka-Ping Yeeb5c51322001-03-23 02:46:52 +00001290/* concatenating string here */
Martin v. Löwisa3fb4f72002-06-09 13:33:54 +00001291PyDoc_STR(
Guido van Rossuma71b5f41999-01-14 19:07:00 +00001292"\n\
Guido van Rossumc3bc31e1998-06-27 19:43:25 +00001293Static objects:\n\
1294\n\
Victor Stinnerd5c355c2011-04-30 14:53:09 +02001295builtin_module_names -- tuple of module names built into this interpreter\n\
1296copyright -- copyright notice pertaining to this interpreter\n\
1297exec_prefix -- prefix used to find the machine-specific Python library\n\
Petri Lehtinen4b0eab62012-02-02 21:23:15 +02001298executable -- absolute path of the executable binary of the Python interpreter\n\
Victor Stinnerd5c355c2011-04-30 14:53:09 +02001299float_info -- a struct sequence with information about the float implementation.\n\
1300float_repr_style -- string indicating the style of repr() output for floats\n\
1301hexversion -- version information encoded as a single integer\n\
Barry Warsaw409da152012-06-03 16:18:47 -04001302implementation -- Python implementation information.\n\
Mark Dickinsonbd792642009-03-18 20:06:12 +00001303int_info -- a struct sequence with information about the int implementation.\n\
Thomas Woutersd2cf20e2007-08-30 22:57:53 +00001304maxsize -- the largest supported length of containers.\n\
Ezio Melotti48a2f8f2011-09-29 00:18:19 +03001305maxunicode -- the value of the largest Unicode codepoint\n\
Victor Stinnerd5c355c2011-04-30 14:53:09 +02001306platform -- platform identifier\n\
1307prefix -- prefix used to find the Python library\n\
1308thread_info -- a struct sequence with information about the thread implementation.\n\
Fred Drake801c08d2000-04-13 15:29:10 +00001309version -- the version of this interpreter as a string\n\
Eric Smith0e5b5622009-02-06 01:32:42 +00001310version_info -- version information as a named tuple\n\
Ka-Ping Yeeb5c51322001-03-23 02:46:52 +00001311"
Martin v. Löwisa3fb4f72002-06-09 13:33:54 +00001312)
Ka-Ping Yeeb5c51322001-03-23 02:46:52 +00001313#ifdef MS_WINDOWS
1314/* concatenating string here */
Martin v. Löwisa3fb4f72002-06-09 13:33:54 +00001315PyDoc_STR(
Ka-Ping Yeeb5c51322001-03-23 02:46:52 +00001316"dllhandle -- [Windows only] integer handle of the Python DLL\n\
Guido van Rossumc3bc31e1998-06-27 19:43:25 +00001317winver -- [Windows only] version number of the Python DLL\n\
Ka-Ping Yeeb5c51322001-03-23 02:46:52 +00001318"
Martin v. Löwisa3fb4f72002-06-09 13:33:54 +00001319)
Ka-Ping Yeeb5c51322001-03-23 02:46:52 +00001320#endif /* MS_WINDOWS */
Martin v. Löwisa3fb4f72002-06-09 13:33:54 +00001321PyDoc_STR(
Ka-Ping Yeeb5c51322001-03-23 02:46:52 +00001322"__stdin__ -- the original stdin; don't touch!\n\
1323__stdout__ -- the original stdout; don't touch!\n\
1324__stderr__ -- the original stderr; don't touch!\n\
1325__displayhook__ -- the original displayhook; don't touch!\n\
1326__excepthook__ -- the original excepthook; don't touch!\n\
Guido van Rossumc3bc31e1998-06-27 19:43:25 +00001327\n\
1328Functions:\n\
1329\n\
Georg Brandl1a3284e2007-12-02 09:40:06 +00001330displayhook() -- print an object to the screen, and save it in builtins._\n\
Ka-Ping Yeeb5c51322001-03-23 02:46:52 +00001331excepthook() -- print an exception and its traceback to sys.stderr\n\
Guido van Rossumc3bc31e1998-06-27 19:43:25 +00001332exc_info() -- return thread-safe information about the current exception\n\
1333exit() -- exit the interpreter by raising SystemExit\n\
Martin v. Löwisf0473d52001-07-18 16:17:16 +00001334getdlopenflags() -- returns flags to be used for dlopen() calls\n\
Christian Heimes9bd667a2008-01-20 15:14:11 +00001335getprofile() -- get the global profiling function\n\
Guido van Rossumc3bc31e1998-06-27 19:43:25 +00001336getrefcount() -- return the reference count for an object (plus one :-)\n\
Jeremy Hyltonee5adfb2000-08-31 19:23:01 +00001337getrecursionlimit() -- return the max recursion depth for the interpreter\n\
Martin v. Löwis00709aa2008-06-04 14:18:43 +00001338getsizeof() -- return the size of an object in bytes\n\
Christian Heimes9bd667a2008-01-20 15:14:11 +00001339gettrace() -- get the global debug tracing function\n\
Guido van Rossumc3bc31e1998-06-27 19:43:25 +00001340setcheckinterval() -- control how often the interpreter checks for events\n\
Martin v. Löwisf0473d52001-07-18 16:17:16 +00001341setdlopenflags() -- set the flags to be used for dlopen() calls\n\
Guido van Rossumc3bc31e1998-06-27 19:43:25 +00001342setprofile() -- set the global profiling function\n\
Jeremy Hyltonee5adfb2000-08-31 19:23:01 +00001343setrecursionlimit() -- set the max recursion depth for the interpreter\n\
Guido van Rossumc3bc31e1998-06-27 19:43:25 +00001344settrace() -- set the global debug tracing function\n\
Fred Drakeccede592000-08-14 20:59:57 +00001345"
Martin v. Löwisa3fb4f72002-06-09 13:33:54 +00001346)
Fred Drakeccede592000-08-14 20:59:57 +00001347/* end of sys_doc */ ;
Guido van Rossumc3bc31e1998-06-27 19:43:25 +00001348
Christian Heimesd32ed6f2008-01-14 18:49:24 +00001349
1350PyDoc_STRVAR(flags__doc__,
1351"sys.flags\n\
1352\n\
1353Flags provided through command line arguments or environment vars.");
1354
1355static PyTypeObject FlagsType;
1356
1357static PyStructSequence_Field flags_fields[] = {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001358 {"debug", "-d"},
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001359 {"inspect", "-i"},
1360 {"interactive", "-i"},
1361 {"optimize", "-O or -OO"},
1362 {"dont_write_bytecode", "-B"},
1363 {"no_user_site", "-s"},
1364 {"no_site", "-S"},
1365 {"ignore_environment", "-E"},
1366 {"verbose", "-v"},
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001367 /* {"unbuffered", "-u"}, */
1368 /* {"skip_first", "-x"}, */
Georg Brandl8aa7e992010-12-28 18:30:18 +00001369 {"bytes_warning", "-b"},
1370 {"quiet", "-q"},
Georg Brandl09a7c722012-02-20 21:31:46 +01001371 {"hash_randomization", "-R"},
Christian Heimesad73a9c2013-08-10 16:36:18 +02001372 {"isolated", "-I"},
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001373 {0}
Christian Heimesd32ed6f2008-01-14 18:49:24 +00001374};
1375
1376static PyStructSequence_Desc flags_desc = {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001377 "sys.flags", /* name */
1378 flags__doc__, /* doc */
1379 flags_fields, /* fields */
Christian Heimesad73a9c2013-08-10 16:36:18 +02001380 13
Christian Heimesd32ed6f2008-01-14 18:49:24 +00001381};
1382
1383static PyObject*
1384make_flags(void)
1385{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001386 int pos = 0;
1387 PyObject *seq;
Christian Heimesd32ed6f2008-01-14 18:49:24 +00001388
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001389 seq = PyStructSequence_New(&FlagsType);
1390 if (seq == NULL)
1391 return NULL;
Christian Heimesd32ed6f2008-01-14 18:49:24 +00001392
1393#define SetFlag(flag) \
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001394 PyStructSequence_SET_ITEM(seq, pos++, PyLong_FromLong(flag))
Christian Heimesd32ed6f2008-01-14 18:49:24 +00001395
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001396 SetFlag(Py_DebugFlag);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001397 SetFlag(Py_InspectFlag);
1398 SetFlag(Py_InteractiveFlag);
1399 SetFlag(Py_OptimizeFlag);
1400 SetFlag(Py_DontWriteBytecodeFlag);
1401 SetFlag(Py_NoUserSiteDirectory);
1402 SetFlag(Py_NoSiteFlag);
1403 SetFlag(Py_IgnoreEnvironmentFlag);
1404 SetFlag(Py_VerboseFlag);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001405 /* SetFlag(saw_unbuffered_flag); */
1406 /* SetFlag(skipfirstline); */
Christian Heimes33fe8092008-04-13 13:53:33 +00001407 SetFlag(Py_BytesWarningFlag);
Georg Brandl8aa7e992010-12-28 18:30:18 +00001408 SetFlag(Py_QuietFlag);
Georg Brandl2daf6ae2012-02-20 19:54:16 +01001409 SetFlag(Py_HashRandomizationFlag);
Christian Heimesad73a9c2013-08-10 16:36:18 +02001410 SetFlag(Py_IsolatedFlag);
Christian Heimesd32ed6f2008-01-14 18:49:24 +00001411#undef SetFlag
1412
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001413 if (PyErr_Occurred()) {
1414 return NULL;
1415 }
1416 return seq;
Christian Heimesd32ed6f2008-01-14 18:49:24 +00001417}
1418
Eric Smith0e5b5622009-02-06 01:32:42 +00001419PyDoc_STRVAR(version_info__doc__,
1420"sys.version_info\n\
1421\n\
1422Version information as a named tuple.");
1423
1424static PyTypeObject VersionInfoType;
1425
1426static PyStructSequence_Field version_info_fields[] = {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001427 {"major", "Major release number"},
1428 {"minor", "Minor release number"},
1429 {"micro", "Patch release number"},
1430 {"releaselevel", "'alpha', 'beta', 'candidate', or 'release'"},
1431 {"serial", "Serial release number"},
1432 {0}
Eric Smith0e5b5622009-02-06 01:32:42 +00001433};
1434
1435static PyStructSequence_Desc version_info_desc = {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001436 "sys.version_info", /* name */
1437 version_info__doc__, /* doc */
1438 version_info_fields, /* fields */
1439 5
Eric Smith0e5b5622009-02-06 01:32:42 +00001440};
1441
1442static PyObject *
1443make_version_info(void)
1444{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001445 PyObject *version_info;
1446 char *s;
1447 int pos = 0;
Eric Smith0e5b5622009-02-06 01:32:42 +00001448
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001449 version_info = PyStructSequence_New(&VersionInfoType);
1450 if (version_info == NULL) {
1451 return NULL;
1452 }
Eric Smith0e5b5622009-02-06 01:32:42 +00001453
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001454 /*
1455 * These release level checks are mutually exclusive and cover
1456 * the field, so don't get too fancy with the pre-processor!
1457 */
Eric Smith0e5b5622009-02-06 01:32:42 +00001458#if PY_RELEASE_LEVEL == PY_RELEASE_LEVEL_ALPHA
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001459 s = "alpha";
Eric Smith0e5b5622009-02-06 01:32:42 +00001460#elif PY_RELEASE_LEVEL == PY_RELEASE_LEVEL_BETA
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001461 s = "beta";
Eric Smith0e5b5622009-02-06 01:32:42 +00001462#elif PY_RELEASE_LEVEL == PY_RELEASE_LEVEL_GAMMA
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001463 s = "candidate";
Eric Smith0e5b5622009-02-06 01:32:42 +00001464#elif PY_RELEASE_LEVEL == PY_RELEASE_LEVEL_FINAL
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001465 s = "final";
Eric Smith0e5b5622009-02-06 01:32:42 +00001466#endif
1467
1468#define SetIntItem(flag) \
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001469 PyStructSequence_SET_ITEM(version_info, pos++, PyLong_FromLong(flag))
Eric Smith0e5b5622009-02-06 01:32:42 +00001470#define SetStrItem(flag) \
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001471 PyStructSequence_SET_ITEM(version_info, pos++, PyUnicode_FromString(flag))
Eric Smith0e5b5622009-02-06 01:32:42 +00001472
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001473 SetIntItem(PY_MAJOR_VERSION);
1474 SetIntItem(PY_MINOR_VERSION);
1475 SetIntItem(PY_MICRO_VERSION);
1476 SetStrItem(s);
1477 SetIntItem(PY_RELEASE_SERIAL);
Eric Smith0e5b5622009-02-06 01:32:42 +00001478#undef SetIntItem
1479#undef SetStrItem
1480
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001481 if (PyErr_Occurred()) {
1482 Py_CLEAR(version_info);
1483 return NULL;
1484 }
1485 return version_info;
Eric Smith0e5b5622009-02-06 01:32:42 +00001486}
1487
Brett Cannon3adc7b72012-07-09 14:22:12 -04001488/* sys.implementation values */
1489#define NAME "cpython"
1490const char *_PySys_ImplName = NAME;
1491#define QUOTE(arg) #arg
1492#define STRIFY(name) QUOTE(name)
1493#define MAJOR STRIFY(PY_MAJOR_VERSION)
1494#define MINOR STRIFY(PY_MINOR_VERSION)
1495#define TAG NAME "-" MAJOR MINOR;
1496const char *_PySys_ImplCacheTag = TAG;
1497#undef NAME
1498#undef QUOTE
1499#undef STRIFY
1500#undef MAJOR
1501#undef MINOR
1502#undef TAG
1503
Barry Warsaw409da152012-06-03 16:18:47 -04001504static PyObject *
1505make_impl_info(PyObject *version_info)
1506{
1507 int res;
1508 PyObject *impl_info, *value, *ns;
1509
1510 impl_info = PyDict_New();
1511 if (impl_info == NULL)
1512 return NULL;
1513
1514 /* populate the dict */
1515
Brett Cannon3adc7b72012-07-09 14:22:12 -04001516 value = PyUnicode_FromString(_PySys_ImplName);
Barry Warsaw409da152012-06-03 16:18:47 -04001517 if (value == NULL)
1518 goto error;
1519 res = PyDict_SetItemString(impl_info, "name", value);
1520 Py_DECREF(value);
1521 if (res < 0)
1522 goto error;
1523
Brett Cannon3adc7b72012-07-09 14:22:12 -04001524 value = PyUnicode_FromString(_PySys_ImplCacheTag);
Barry Warsaw409da152012-06-03 16:18:47 -04001525 if (value == NULL)
1526 goto error;
1527 res = PyDict_SetItemString(impl_info, "cache_tag", value);
1528 Py_DECREF(value);
1529 if (res < 0)
1530 goto error;
Barry Warsaw409da152012-06-03 16:18:47 -04001531
1532 res = PyDict_SetItemString(impl_info, "version", version_info);
1533 if (res < 0)
1534 goto error;
1535
1536 value = PyLong_FromLong(PY_VERSION_HEX);
1537 if (value == NULL)
1538 goto error;
1539 res = PyDict_SetItemString(impl_info, "hexversion", value);
1540 Py_DECREF(value);
1541 if (res < 0)
1542 goto error;
1543
1544 /* dict ready */
1545
1546 ns = _PyNamespace_New(impl_info);
1547 Py_DECREF(impl_info);
1548 return ns;
1549
1550error:
1551 Py_CLEAR(impl_info);
1552 return NULL;
1553}
1554
Martin v. Löwis1a214512008-06-11 05:26:20 +00001555static struct PyModuleDef sysmodule = {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001556 PyModuleDef_HEAD_INIT,
1557 "sys",
1558 sys_doc,
1559 -1, /* multiple "initialization" just copies the module dict. */
1560 sys_methods,
1561 NULL,
1562 NULL,
1563 NULL,
1564 NULL
Martin v. Löwis1a214512008-06-11 05:26:20 +00001565};
1566
Guido van Rossum25ce5661997-08-02 03:10:38 +00001567PyObject *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00001568_PySys_Init(void)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001569{
Victor Stinner58049602013-07-22 22:40:00 +02001570 PyObject *m, *sysdict, *version_info;
Guido van Rossum25ce5661997-08-02 03:10:38 +00001571
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001572 m = PyModule_Create(&sysmodule);
1573 if (m == NULL)
1574 return NULL;
1575 sysdict = PyModule_GetDict(m);
Victor Stinner58049602013-07-22 22:40:00 +02001576#define SET_SYS_FROM_STRING(key, value) \
1577 do { \
1578 int res; \
1579 PyObject *v = (value); \
1580 if (v == NULL) \
1581 return NULL; \
1582 res = PyDict_SetItemString(sysdict, key, v); \
1583 if (res < 0) { \
1584 Py_DECREF(v); \
1585 return NULL; \
1586 } \
1587 } while (0)
Guido van Rossum25ce5661997-08-02 03:10:38 +00001588
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001589 /* Check that stdin is not a directory
1590 Using shell redirection, you can redirect stdin to a directory,
1591 crashing the Python interpreter. Catch this common mistake here
1592 and output a useful error message. Note that under MS Windows,
1593 the shell already prevents that. */
Martin v. Löwisec59d042009-01-12 07:59:10 +00001594#if !defined(MS_WINDOWS)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001595 {
1596 struct stat sb;
1597 if (fstat(fileno(stdin), &sb) == 0 &&
1598 S_ISDIR(sb.st_mode)) {
1599 /* There's nothing more we can do. */
1600 /* Py_FatalError() will core dump, so just exit. */
1601 PySys_WriteStderr("Python error: <stdin> is a directory, cannot continue\n");
1602 exit(EXIT_FAILURE);
1603 }
1604 }
Martin v. Löwisec59d042009-01-12 07:59:10 +00001605#endif
Neal Norwitz11bd1192005-10-03 00:54:56 +00001606
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001607 /* stdin/stdout/stderr are now set by pythonrun.c */
Martin v. Löwis5467d4c2003-05-10 07:10:12 +00001608
Victor Stinner58049602013-07-22 22:40:00 +02001609 SET_SYS_FROM_STRING("__displayhook__",
1610 PyDict_GetItemString(sysdict, "displayhook"));
1611 SET_SYS_FROM_STRING("__excepthook__",
1612 PyDict_GetItemString(sysdict, "excepthook"));
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001613 SET_SYS_FROM_STRING("version",
1614 PyUnicode_FromString(Py_GetVersion()));
1615 SET_SYS_FROM_STRING("hexversion",
1616 PyLong_FromLong(PY_VERSION_HEX));
Georg Brandl1ca2e792011-03-05 20:51:24 +01001617 SET_SYS_FROM_STRING("_mercurial",
1618 Py_BuildValue("(szz)", "CPython", _Py_hgidentifier(),
1619 _Py_hgversion()));
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001620 SET_SYS_FROM_STRING("dont_write_bytecode",
1621 PyBool_FromLong(Py_DontWriteBytecodeFlag));
1622 SET_SYS_FROM_STRING("api_version",
1623 PyLong_FromLong(PYTHON_API_VERSION));
1624 SET_SYS_FROM_STRING("copyright",
1625 PyUnicode_FromString(Py_GetCopyright()));
1626 SET_SYS_FROM_STRING("platform",
1627 PyUnicode_FromString(Py_GetPlatform()));
1628 SET_SYS_FROM_STRING("executable",
1629 PyUnicode_FromWideChar(
1630 Py_GetProgramFullPath(), -1));
1631 SET_SYS_FROM_STRING("prefix",
1632 PyUnicode_FromWideChar(Py_GetPrefix(), -1));
1633 SET_SYS_FROM_STRING("exec_prefix",
1634 PyUnicode_FromWideChar(Py_GetExecPrefix(), -1));
Vinay Sajip7ded1f02012-05-26 03:45:29 +01001635 SET_SYS_FROM_STRING("base_prefix",
1636 PyUnicode_FromWideChar(Py_GetPrefix(), -1));
1637 SET_SYS_FROM_STRING("base_exec_prefix",
1638 PyUnicode_FromWideChar(Py_GetExecPrefix(), -1));
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001639 SET_SYS_FROM_STRING("maxsize",
1640 PyLong_FromSsize_t(PY_SSIZE_T_MAX));
1641 SET_SYS_FROM_STRING("float_info",
1642 PyFloat_GetInfo());
1643 SET_SYS_FROM_STRING("int_info",
1644 PyLong_GetInfo());
Mark Dickinsondc787d22010-05-23 13:33:13 +00001645 /* initialize hash_info */
Victor Stinner1c8f0592013-07-22 22:24:54 +02001646 if (Hash_InfoType.tp_name == NULL) {
1647 if (PyStructSequence_InitType2(&Hash_InfoType, &hash_info_desc) < 0)
1648 return NULL;
1649 }
Mark Dickinsondc787d22010-05-23 13:33:13 +00001650 SET_SYS_FROM_STRING("hash_info",
1651 get_hash_info());
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001652 SET_SYS_FROM_STRING("maxunicode",
Ezio Melotti48a2f8f2011-09-29 00:18:19 +03001653 PyLong_FromLong(0x10FFFF));
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001654 SET_SYS_FROM_STRING("builtin_module_names",
1655 list_builtin_module_names());
Christian Heimes743e0cd2012-10-17 23:52:17 +02001656#if PY_BIG_ENDIAN
1657 SET_SYS_FROM_STRING("byteorder",
1658 PyUnicode_FromString("big"));
1659#else
1660 SET_SYS_FROM_STRING("byteorder",
1661 PyUnicode_FromString("little"));
1662#endif
Fred Drake099325e2000-08-14 15:47:03 +00001663
Guido van Rossum8b9ea871996-08-23 18:14:47 +00001664#ifdef MS_COREDLL
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001665 SET_SYS_FROM_STRING("dllhandle",
1666 PyLong_FromVoidPtr(PyWin_DLLhModule));
1667 SET_SYS_FROM_STRING("winver",
1668 PyUnicode_FromString(PyWin_DLLVersionString));
Guido van Rossumc606fe11996-04-09 02:37:57 +00001669#endif
Barry Warsaw8cf4eae2010-10-16 01:04:07 +00001670#ifdef ABIFLAGS
1671 SET_SYS_FROM_STRING("abiflags",
1672 PyUnicode_FromString(ABIFLAGS));
1673#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001674 if (warnoptions == NULL) {
1675 warnoptions = PyList_New(0);
Victor Stinner58049602013-07-22 22:40:00 +02001676 if (warnoptions == NULL)
1677 return NULL;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001678 }
1679 else {
1680 Py_INCREF(warnoptions);
1681 }
Victor Stinner58049602013-07-22 22:40:00 +02001682 SET_SYS_FROM_STRING("warnoptions", warnoptions);
Tim Peters216b78b2006-01-06 02:40:53 +00001683
Victor Stinner58049602013-07-22 22:40:00 +02001684 SET_SYS_FROM_STRING("_xoptions", get_xoptions());
Antoine Pitrou9583cac2010-10-21 13:42:28 +00001685
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001686 /* version_info */
Victor Stinner1c8f0592013-07-22 22:24:54 +02001687 if (VersionInfoType.tp_name == NULL) {
1688 if (PyStructSequence_InitType2(&VersionInfoType,
1689 &version_info_desc) < 0)
1690 return NULL;
1691 }
Barry Warsaw409da152012-06-03 16:18:47 -04001692 version_info = make_version_info();
1693 SET_SYS_FROM_STRING("version_info", version_info);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001694 /* prevent user from creating new instances */
1695 VersionInfoType.tp_init = NULL;
1696 VersionInfoType.tp_new = NULL;
Eric Smith0e5b5622009-02-06 01:32:42 +00001697
Barry Warsaw409da152012-06-03 16:18:47 -04001698 /* implementation */
1699 SET_SYS_FROM_STRING("implementation", make_impl_info(version_info));
1700
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001701 /* flags */
Victor Stinner1c8f0592013-07-22 22:24:54 +02001702 if (FlagsType.tp_name == 0) {
1703 if (PyStructSequence_InitType2(&FlagsType, &flags_desc) < 0)
1704 return NULL;
1705 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001706 SET_SYS_FROM_STRING("flags", make_flags());
1707 /* prevent user from creating new instances */
1708 FlagsType.tp_init = NULL;
1709 FlagsType.tp_new = NULL;
Christian Heimesd32ed6f2008-01-14 18:49:24 +00001710
Eric Smithf7bb5782010-01-27 00:44:57 +00001711
1712#if defined(MS_WINDOWS)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001713 /* getwindowsversion */
1714 if (WindowsVersionType.tp_name == 0)
Victor Stinner1c8f0592013-07-22 22:24:54 +02001715 if (PyStructSequence_InitType2(&WindowsVersionType,
1716 &windows_version_desc) < 0)
1717 return NULL;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001718 /* prevent user from creating new instances */
1719 WindowsVersionType.tp_init = NULL;
1720 WindowsVersionType.tp_new = NULL;
Eric Smithf7bb5782010-01-27 00:44:57 +00001721#endif
1722
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001723 /* float repr style: 0.03 (short) vs 0.029999999999999999 (legacy) */
Mark Dickinsonb08a53a2009-04-16 19:52:09 +00001724#ifndef PY_NO_SHORT_FLOAT_REPR
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001725 SET_SYS_FROM_STRING("float_repr_style",
1726 PyUnicode_FromString("short"));
Mark Dickinsonb08a53a2009-04-16 19:52:09 +00001727#else
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001728 SET_SYS_FROM_STRING("float_repr_style",
1729 PyUnicode_FromString("legacy"));
Mark Dickinsonb08a53a2009-04-16 19:52:09 +00001730#endif
1731
Victor Stinnerd5c355c2011-04-30 14:53:09 +02001732#ifdef WITH_THREAD
1733 SET_SYS_FROM_STRING("thread_info", PyThread_GetInfo());
1734#endif
1735
Christian Heimes7b3ce6a2008-01-31 14:31:45 +00001736#undef SET_SYS_FROM_STRING
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001737 if (PyErr_Occurred())
1738 return NULL;
1739 return m;
Guido van Rossum5b3138b1990-11-18 17:41:40 +00001740}
1741
Guido van Rossum65bf9f21997-04-29 18:33:38 +00001742static PyObject *
Martin v. Löwis790465f2008-04-05 20:41:37 +00001743makepathobject(const wchar_t *path, wchar_t delim)
Guido van Rossum5b3138b1990-11-18 17:41:40 +00001744{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001745 int i, n;
1746 const wchar_t *p;
1747 PyObject *v, *w;
Tim Peters216b78b2006-01-06 02:40:53 +00001748
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001749 n = 1;
1750 p = path;
1751 while ((p = wcschr(p, delim)) != NULL) {
1752 n++;
1753 p++;
1754 }
1755 v = PyList_New(n);
1756 if (v == NULL)
1757 return NULL;
1758 for (i = 0; ; i++) {
1759 p = wcschr(path, delim);
1760 if (p == NULL)
1761 p = path + wcslen(path); /* End of string */
1762 w = PyUnicode_FromWideChar(path, (Py_ssize_t)(p - path));
1763 if (w == NULL) {
1764 Py_DECREF(v);
1765 return NULL;
1766 }
1767 PyList_SetItem(v, i, w);
1768 if (*p == '\0')
1769 break;
1770 path = p+1;
1771 }
1772 return v;
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001773}
1774
1775void
Martin v. Löwis790465f2008-04-05 20:41:37 +00001776PySys_SetPath(const wchar_t *path)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001777{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001778 PyObject *v;
1779 if ((v = makepathobject(path, DELIM)) == NULL)
1780 Py_FatalError("can't create sys.path");
1781 if (PySys_SetObject("path", v) != 0)
1782 Py_FatalError("can't assign sys.path");
1783 Py_DECREF(v);
Guido van Rossum3f5da241990-12-20 15:06:42 +00001784}
1785
Guido van Rossum65bf9f21997-04-29 18:33:38 +00001786static PyObject *
Martin v. Löwis790465f2008-04-05 20:41:37 +00001787makeargvobject(int argc, wchar_t **argv)
Guido van Rossum3f5da241990-12-20 15:06:42 +00001788{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001789 PyObject *av;
1790 if (argc <= 0 || argv == NULL) {
1791 /* Ensure at least one (empty) argument is seen */
1792 static wchar_t *empty_argv[1] = {L""};
1793 argv = empty_argv;
1794 argc = 1;
1795 }
1796 av = PyList_New(argc);
1797 if (av != NULL) {
1798 int i;
1799 for (i = 0; i < argc; i++) {
Martin v. Löwisc16f3bd2003-05-03 09:14:54 +00001800#ifdef __VMS
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001801 PyObject *v;
Martin v. Löwisc16f3bd2003-05-03 09:14:54 +00001802
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001803 /* argv[0] is the script pathname if known */
1804 if (i == 0) {
1805 char* fn = decc$translate_vms(argv[0]);
1806 if ((fn == (char *)0) || fn == (char *)-1)
1807 v = PyUnicode_FromString(argv[0]);
1808 else
1809 v = PyUnicode_FromString(
1810 decc$translate_vms(argv[0]));
1811 } else
1812 v = PyUnicode_FromString(argv[i]);
Martin v. Löwisc16f3bd2003-05-03 09:14:54 +00001813#else
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001814 PyObject *v = PyUnicode_FromWideChar(argv[i], -1);
Martin v. Löwisc16f3bd2003-05-03 09:14:54 +00001815#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001816 if (v == NULL) {
1817 Py_DECREF(av);
1818 av = NULL;
1819 break;
1820 }
1821 PyList_SetItem(av, i, v);
1822 }
1823 }
1824 return av;
Guido van Rossum3f5da241990-12-20 15:06:42 +00001825}
1826
Nick Coghland26c18a2010-08-17 13:06:11 +00001827#define _HAVE_SCRIPT_ARGUMENT(argc, argv) \
1828 (argc > 0 && argv0 != NULL && \
1829 wcscmp(argv0, L"-c") != 0 && wcscmp(argv0, L"-m") != 0)
Victor Stinnerc08ec9f2010-10-06 22:44:06 +00001830
1831static void
1832sys_update_path(int argc, wchar_t **argv)
Guido van Rossum3f5da241990-12-20 15:06:42 +00001833{
Victor Stinnerc08ec9f2010-10-06 22:44:06 +00001834 wchar_t *argv0;
1835 wchar_t *p = NULL;
1836 Py_ssize_t n = 0;
1837 PyObject *a;
1838 PyObject *path;
1839#ifdef HAVE_READLINK
Victor Stinnerc08ec9f2010-10-06 22:44:06 +00001840 wchar_t link[MAXPATHLEN+1];
1841 wchar_t argv0copy[2*MAXPATHLEN+1];
1842 int nr = 0;
1843#endif
Guido van Rossum162e38c2003-02-19 15:25:10 +00001844#if defined(HAVE_REALPATH)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001845 wchar_t fullpath[MAXPATHLEN];
Martin v. Löwisec59d042009-01-12 07:59:10 +00001846#elif defined(MS_WINDOWS) && !defined(MS_WINCE)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001847 wchar_t fullpath[MAX_PATH];
Thomas Heller27bb71e2003-01-08 14:33:48 +00001848#endif
Victor Stinnerc08ec9f2010-10-06 22:44:06 +00001849
1850 path = PySys_GetObject("path");
1851 if (path == NULL)
1852 return;
1853
Victor Stinnerc08ec9f2010-10-06 22:44:06 +00001854 argv0 = argv[0];
1855
1856#ifdef HAVE_READLINK
1857 if (_HAVE_SCRIPT_ARGUMENT(argc, argv))
1858 nr = _Py_wreadlink(argv0, link, MAXPATHLEN);
1859 if (nr > 0) {
1860 /* It's a symlink */
1861 link[nr] = '\0';
1862 if (link[0] == SEP)
1863 argv0 = link; /* Link to absolute path */
1864 else if (wcschr(link, SEP) == NULL)
1865 ; /* Link without path */
1866 else {
1867 /* Must join(dirname(argv0), link) */
1868 wchar_t *q = wcsrchr(argv0, SEP);
1869 if (q == NULL)
1870 argv0 = link; /* argv0 without path */
1871 else {
Christian Heimes60a60672013-07-22 12:53:32 +02001872 /* Must make a copy, argv0copy has room for 2 * MAXPATHLEN */
1873 wcsncpy(argv0copy, argv0, MAXPATHLEN);
Victor Stinnerc08ec9f2010-10-06 22:44:06 +00001874 q = wcsrchr(argv0copy, SEP);
Christian Heimes60a60672013-07-22 12:53:32 +02001875 wcsncpy(q+1, link, MAXPATHLEN);
1876 q[MAXPATHLEN + 1] = L'\0';
Victor Stinnerc08ec9f2010-10-06 22:44:06 +00001877 argv0 = argv0copy;
1878 }
1879 }
1880 }
1881#endif /* HAVE_READLINK */
1882#if SEP == '\\' /* Special case for MS filename syntax */
1883 if (_HAVE_SCRIPT_ARGUMENT(argc, argv)) {
1884 wchar_t *q;
1885#if defined(MS_WINDOWS) && !defined(MS_WINCE)
1886 /* This code here replaces the first element in argv with the full
1887 path that it represents. Under CE, there are no relative paths so
1888 the argument must be the full path anyway. */
1889 wchar_t *ptemp;
1890 if (GetFullPathNameW(argv0,
Victor Stinner63941882011-09-29 00:42:28 +02001891 Py_ARRAY_LENGTH(fullpath),
Victor Stinnerc08ec9f2010-10-06 22:44:06 +00001892 fullpath,
1893 &ptemp)) {
1894 argv0 = fullpath;
1895 }
1896#endif
1897 p = wcsrchr(argv0, SEP);
1898 /* Test for alternate separator */
1899 q = wcsrchr(p ? p : argv0, '/');
1900 if (q != NULL)
1901 p = q;
1902 if (p != NULL) {
1903 n = p + 1 - argv0;
1904 if (n > 1 && p[-1] != ':')
1905 n--; /* Drop trailing separator */
1906 }
1907 }
1908#else /* All other filename syntaxes */
1909 if (_HAVE_SCRIPT_ARGUMENT(argc, argv)) {
1910#if defined(HAVE_REALPATH)
Victor Stinner015f4d82010-10-07 22:29:53 +00001911 if (_Py_wrealpath(argv0, fullpath, PATH_MAX)) {
Victor Stinnerc08ec9f2010-10-06 22:44:06 +00001912 argv0 = fullpath;
1913 }
1914#endif
1915 p = wcsrchr(argv0, SEP);
1916 }
1917 if (p != NULL) {
1918 n = p + 1 - argv0;
1919#if SEP == '/' /* Special case for Unix filename syntax */
1920 if (n > 1)
1921 n--; /* Drop trailing separator */
1922#endif /* Unix */
1923 }
1924#endif /* All others */
1925 a = PyUnicode_FromWideChar(argv0, n);
1926 if (a == NULL)
1927 Py_FatalError("no mem for sys.path insertion");
1928 if (PyList_Insert(path, 0, a) < 0)
1929 Py_FatalError("sys.path.insert(0) failed");
1930 Py_DECREF(a);
1931}
1932
1933void
1934PySys_SetArgvEx(int argc, wchar_t **argv, int updatepath)
1935{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001936 PyObject *av = makeargvobject(argc, argv);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001937 if (av == NULL)
1938 Py_FatalError("no mem for sys.argv");
1939 if (PySys_SetObject("argv", av) != 0)
1940 Py_FatalError("can't assign sys.argv");
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001941 Py_DECREF(av);
Victor Stinnerc08ec9f2010-10-06 22:44:06 +00001942 if (updatepath)
1943 sys_update_path(argc, argv);
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001944}
Guido van Rossuma890e681998-05-12 14:59:24 +00001945
Antoine Pitrouf978fac2010-05-21 17:25:34 +00001946void
1947PySys_SetArgv(int argc, wchar_t **argv)
1948{
Christian Heimesad73a9c2013-08-10 16:36:18 +02001949 PySys_SetArgvEx(argc, argv, Py_IsolatedFlag == 0);
Antoine Pitrouf978fac2010-05-21 17:25:34 +00001950}
1951
Victor Stinner14284c22010-04-23 12:02:30 +00001952/* Reimplementation of PyFile_WriteString() no calling indirectly
1953 PyErr_CheckSignals(): avoid the call to PyObject_Str(). */
1954
1955static int
Victor Stinner79766632010-08-16 17:36:42 +00001956sys_pyfile_write_unicode(PyObject *unicode, PyObject *file)
Victor Stinner14284c22010-04-23 12:02:30 +00001957{
Victor Stinner79766632010-08-16 17:36:42 +00001958 PyObject *writer = NULL, *args = NULL, *result = NULL;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001959 int err;
Martin v. Löwisbd928fe2011-10-14 10:20:37 +02001960 _Py_IDENTIFIER(write);
Victor Stinner14284c22010-04-23 12:02:30 +00001961
Victor Stinnerecccc4f2010-06-08 20:46:00 +00001962 if (file == NULL)
1963 return -1;
1964
Martin v. Löwis1ee1b6f2011-10-10 18:11:30 +02001965 writer = _PyObject_GetAttrId(file, &PyId_write);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001966 if (writer == NULL)
1967 goto error;
Victor Stinner14284c22010-04-23 12:02:30 +00001968
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001969 args = PyTuple_Pack(1, unicode);
1970 if (args == NULL)
1971 goto error;
Victor Stinner14284c22010-04-23 12:02:30 +00001972
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001973 result = PyEval_CallObject(writer, args);
1974 if (result == NULL) {
1975 goto error;
1976 } else {
1977 err = 0;
1978 goto finally;
1979 }
Victor Stinner14284c22010-04-23 12:02:30 +00001980
1981error:
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001982 err = -1;
Victor Stinner14284c22010-04-23 12:02:30 +00001983finally:
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001984 Py_XDECREF(writer);
1985 Py_XDECREF(args);
1986 Py_XDECREF(result);
1987 return err;
Victor Stinner14284c22010-04-23 12:02:30 +00001988}
1989
Victor Stinner79766632010-08-16 17:36:42 +00001990static int
1991sys_pyfile_write(const char *text, PyObject *file)
1992{
1993 PyObject *unicode = NULL;
1994 int err;
1995
1996 if (file == NULL)
1997 return -1;
1998
1999 unicode = PyUnicode_FromString(text);
2000 if (unicode == NULL)
2001 return -1;
2002
2003 err = sys_pyfile_write_unicode(unicode, file);
2004 Py_DECREF(unicode);
2005 return err;
2006}
Guido van Rossuma890e681998-05-12 14:59:24 +00002007
2008/* APIs to write to sys.stdout or sys.stderr using a printf-like interface.
2009 Adapted from code submitted by Just van Rossum.
2010
2011 PySys_WriteStdout(format, ...)
2012 PySys_WriteStderr(format, ...)
2013
2014 The first function writes to sys.stdout; the second to sys.stderr. When
2015 there is a problem, they write to the real (C level) stdout or stderr;
Guido van Rossum8442af31998-10-12 18:22:10 +00002016 no exceptions are raised.
Guido van Rossuma890e681998-05-12 14:59:24 +00002017
Victor Stinner14284c22010-04-23 12:02:30 +00002018 PyErr_CheckSignals() is not called to avoid the execution of the Python
Victor Stinner79766632010-08-16 17:36:42 +00002019 signal handlers: they may raise a new exception whereas sys_write()
2020 ignores all exceptions.
Victor Stinner14284c22010-04-23 12:02:30 +00002021
Guido van Rossuma890e681998-05-12 14:59:24 +00002022 Both take a printf-style format string as their first argument followed
2023 by a variable length argument list determined by the format string.
2024
2025 *** WARNING ***
2026
2027 The format should limit the total size of the formatted output string to
2028 1000 bytes. In particular, this means that no unrestricted "%s" formats
2029 should occur; these should be limited using "%.<N>s where <N> is a
2030 decimal number calculated so that <N> plus the maximum size of other
2031 formatted text does not exceed 1000 bytes. Also watch out for "%f",
2032 which can print hundreds of digits for very large numbers.
2033
2034 */
2035
2036static void
Victor Stinner79766632010-08-16 17:36:42 +00002037sys_write(char *name, FILE *fp, const char *format, va_list va)
Guido van Rossuma890e681998-05-12 14:59:24 +00002038{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002039 PyObject *file;
2040 PyObject *error_type, *error_value, *error_traceback;
2041 char buffer[1001];
2042 int written;
Guido van Rossuma890e681998-05-12 14:59:24 +00002043
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002044 PyErr_Fetch(&error_type, &error_value, &error_traceback);
2045 file = PySys_GetObject(name);
2046 written = PyOS_vsnprintf(buffer, sizeof(buffer), format, va);
2047 if (sys_pyfile_write(buffer, file) != 0) {
2048 PyErr_Clear();
2049 fputs(buffer, fp);
2050 }
2051 if (written < 0 || (size_t)written >= sizeof(buffer)) {
2052 const char *truncated = "... truncated";
Victor Stinner79766632010-08-16 17:36:42 +00002053 if (sys_pyfile_write(truncated, file) != 0)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002054 fputs(truncated, fp);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002055 }
2056 PyErr_Restore(error_type, error_value, error_traceback);
Guido van Rossuma890e681998-05-12 14:59:24 +00002057}
2058
2059void
Guido van Rossuma890e681998-05-12 14:59:24 +00002060PySys_WriteStdout(const char *format, ...)
Guido van Rossuma890e681998-05-12 14:59:24 +00002061{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002062 va_list va;
Guido van Rossuma890e681998-05-12 14:59:24 +00002063
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002064 va_start(va, format);
Victor Stinner79766632010-08-16 17:36:42 +00002065 sys_write("stdout", stdout, format, va);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002066 va_end(va);
Guido van Rossuma890e681998-05-12 14:59:24 +00002067}
2068
2069void
Guido van Rossuma890e681998-05-12 14:59:24 +00002070PySys_WriteStderr(const char *format, ...)
Guido van Rossuma890e681998-05-12 14:59:24 +00002071{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002072 va_list va;
Guido van Rossuma890e681998-05-12 14:59:24 +00002073
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002074 va_start(va, format);
Victor Stinner79766632010-08-16 17:36:42 +00002075 sys_write("stderr", stderr, format, va);
2076 va_end(va);
2077}
2078
2079static void
2080sys_format(char *name, FILE *fp, const char *format, va_list va)
2081{
2082 PyObject *file, *message;
2083 PyObject *error_type, *error_value, *error_traceback;
2084 char *utf8;
2085
2086 PyErr_Fetch(&error_type, &error_value, &error_traceback);
2087 file = PySys_GetObject(name);
2088 message = PyUnicode_FromFormatV(format, va);
2089 if (message != NULL) {
2090 if (sys_pyfile_write_unicode(message, file) != 0) {
2091 PyErr_Clear();
2092 utf8 = _PyUnicode_AsString(message);
2093 if (utf8 != NULL)
2094 fputs(utf8, fp);
2095 }
2096 Py_DECREF(message);
2097 }
2098 PyErr_Restore(error_type, error_value, error_traceback);
2099}
2100
2101void
2102PySys_FormatStdout(const char *format, ...)
2103{
2104 va_list va;
2105
2106 va_start(va, format);
2107 sys_format("stdout", stdout, format, va);
2108 va_end(va);
2109}
2110
2111void
2112PySys_FormatStderr(const char *format, ...)
2113{
2114 va_list va;
2115
2116 va_start(va, format);
2117 sys_format("stderr", stderr, format, va);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002118 va_end(va);
Guido van Rossuma890e681998-05-12 14:59:24 +00002119}