Staging
v0.5.1
https://github.com/python/cpython
Revision 2e11ab396141293b4f9175569909416acf485f62 authored by Amaury Forgeot d'Arc on 18 June 2009, 22:42:43 UTC, committed by Amaury Forgeot d'Arc on 18 June 2009, 22:42:43 UTC
........
  r73472 | amaury.forgeotdarc | 2009-06-19 00:32:50 +0200 (ven., 19 juin 2009) | 5 lines

  #6189: The subprocess.py module should be kept compatible with python 2.2

  (On windows, you still have to change one line to use pywin32
  instead of the _subprocess helper module)
........
1 parent 722d8c3
Raw File
Tip revision: 2e11ab396141293b4f9175569909416acf485f62 authored by Amaury Forgeot d'Arc on 18 June 2009, 22:42:43 UTC
Blocked revisions 73472 via svnmerge
Tip revision: 2e11ab3
sysmodule.h

/* 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_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_DATA(int) _PySys_CheckInterval;

PyAPI_FUNC(void) PySys_ResetWarnOptions(void);
PyAPI_FUNC(void) PySys_AddWarnOption(const wchar_t *);
PyAPI_FUNC(int) PySys_HasWarnOptions(void);

#ifdef __cplusplus
}
#endif
#endif /* !Py_SYSMODULE_H */
back to top