summaryrefslogtreecommitdiffstats
path: root/Include
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2010-05-21 17:22:43 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2010-05-21 17:22:43 (GMT)
commit52ca516cacf75b430d399d638c1e00b49b0bb564 (patch)
tree95b1f0eacea0a7bc72024ce5c1cf42cfd31f9642 /Include
parent0a3b69ef0a8aa075bc0391f05b268095a77cda87 (diff)
downloadcpython-52ca516cacf75b430d399d638c1e00b49b0bb564.zip
cpython-52ca516cacf75b430d399d638c1e00b49b0bb564.tar.gz
cpython-52ca516cacf75b430d399d638c1e00b49b0bb564.tar.bz2
Merged revisions 81398 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r81398 | antoine.pitrou | 2010-05-21 19:12:38 +0200 (ven., 21 mai 2010) | 6 lines Issue #5753: A new C API function, :cfunc:`PySys_SetArgvEx`, allows embedders of the interpreter to set sys.argv without also modifying sys.path. This helps fix `CVE-2008-5983 <http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2008-5983>`_. ........
Diffstat (limited to 'Include')
-rw-r--r--Include/sysmodule.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/Include/sysmodule.h b/Include/sysmodule.h
index 536a180..16af119 100644
--- a/Include/sysmodule.h
+++ b/Include/sysmodule.h
@@ -11,6 +11,7 @@ PyAPI_FUNC(PyObject *) PySys_GetObject(char *);
PyAPI_FUNC(int) PySys_SetObject(char *, PyObject *);
PyAPI_FUNC(FILE *) PySys_GetFile(char *, FILE *);
PyAPI_FUNC(void) PySys_SetArgv(int, char **);
+PyAPI_FUNC(void) PySys_SetArgvEx(int, char **, int);
PyAPI_FUNC(void) PySys_SetPath(char *);
PyAPI_FUNC(void) PySys_WriteStdout(const char *format, ...)