mirror of
				https://github.com/python/cpython.git
				synced 2025-11-03 23:21:29 +00:00 
			
		
		
		
	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>`_. ........
		
			
				
	
	
		
			31 lines
		
	
	
	
		
			921 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
	
		
			921 B
		
	
	
	
		
			C
		
	
	
	
	
	
 | 
						|
/* System module interface */
 | 
						|
 | 
						|
#ifndef Py_SYSMODULE_H
 | 
						|
#define Py_SYSMODULE_H
 | 
						|
#ifdef __cplusplus
 | 
						|
extern "C" {
 | 
						|
#endif
 | 
						|
 | 
						|
PyAPI_FUNC(PyObject *) PySys_GetObject(const char *);
 | 
						|
PyAPI_FUNC(int) PySys_SetObject(const char *, PyObject *);
 | 
						|
PyAPI_FUNC(void) PySys_SetArgv(int, wchar_t **);
 | 
						|
PyAPI_FUNC(void) PySys_SetArgvEx(int, wchar_t **, int);
 | 
						|
PyAPI_FUNC(void) PySys_SetPath(const wchar_t *);
 | 
						|
 | 
						|
PyAPI_FUNC(void) PySys_WriteStdout(const char *format, ...)
 | 
						|
			Py_GCC_ATTRIBUTE((format(printf, 1, 2)));
 | 
						|
PyAPI_FUNC(void) PySys_WriteStderr(const char *format, ...)
 | 
						|
			Py_GCC_ATTRIBUTE((format(printf, 1, 2)));
 | 
						|
 | 
						|
PyAPI_DATA(PyObject *) _PySys_TraceFunc, *_PySys_ProfileFunc;
 | 
						|
 | 
						|
PyAPI_FUNC(void) PySys_ResetWarnOptions(void);
 | 
						|
PyAPI_FUNC(void) PySys_AddWarnOption(const wchar_t *);
 | 
						|
PyAPI_FUNC(void) PySys_AddWarnOptionUnicode(PyObject *);
 | 
						|
PyAPI_FUNC(int) PySys_HasWarnOptions(void);
 | 
						|
 | 
						|
#ifdef __cplusplus
 | 
						|
}
 | 
						|
#endif
 | 
						|
#endif /* !Py_SYSMODULE_H */
 |