2015-05-13 03:22:32 -03:00
|
|
|
/*[clinic input]
|
|
|
|
preserve
|
|
|
|
[clinic start generated code]*/
|
|
|
|
|
|
|
|
PyDoc_STRVAR(msvcrt_heapmin__doc__,
|
|
|
|
"heapmin($module, /)\n"
|
|
|
|
"--\n"
|
|
|
|
"\n"
|
|
|
|
"Minimize the malloc() heap.\n"
|
|
|
|
"\n"
|
|
|
|
"Force the malloc() heap to clean itself up and return unused blocks\n"
|
|
|
|
"to the operating system. On failure, this raises OSError.");
|
|
|
|
|
|
|
|
#define MSVCRT_HEAPMIN_METHODDEF \
|
|
|
|
{"heapmin", (PyCFunction)msvcrt_heapmin, METH_NOARGS, msvcrt_heapmin__doc__},
|
|
|
|
|
|
|
|
static PyObject *
|
|
|
|
msvcrt_heapmin_impl(PyModuleDef *module);
|
|
|
|
|
|
|
|
static PyObject *
|
|
|
|
msvcrt_heapmin(PyModuleDef *module, PyObject *Py_UNUSED(ignored))
|
|
|
|
{
|
|
|
|
return msvcrt_heapmin_impl(module);
|
|
|
|
}
|
|
|
|
|
|
|
|
PyDoc_STRVAR(msvcrt_locking__doc__,
|
|
|
|
"locking($module, fd, mode, nbytes, /)\n"
|
|
|
|
"--\n"
|
|
|
|
"\n"
|
|
|
|
"Lock part of a file based on file descriptor fd from the C runtime.\n"
|
|
|
|
"\n"
|
|
|
|
"Raises IOError on failure. The locked region of the file extends from\n"
|
|
|
|
"the current file position for nbytes bytes, and may continue beyond\n"
|
|
|
|
"the end of the file. mode must be one of the LK_* constants listed\n"
|
|
|
|
"below. Multiple regions in a file may be locked at the same time, but\n"
|
|
|
|
"may not overlap. Adjacent regions are not merged; they must be unlocked\n"
|
|
|
|
"individually.");
|
|
|
|
|
|
|
|
#define MSVCRT_LOCKING_METHODDEF \
|
|
|
|
{"locking", (PyCFunction)msvcrt_locking, METH_VARARGS, msvcrt_locking__doc__},
|
|
|
|
|
|
|
|
static PyObject *
|
|
|
|
msvcrt_locking_impl(PyModuleDef *module, int fd, int mode, long nbytes);
|
|
|
|
|
|
|
|
static PyObject *
|
|
|
|
msvcrt_locking(PyModuleDef *module, PyObject *args)
|
|
|
|
{
|
|
|
|
PyObject *return_value = NULL;
|
|
|
|
int fd;
|
|
|
|
int mode;
|
|
|
|
long nbytes;
|
|
|
|
|
2015-05-13 12:58:35 -03:00
|
|
|
if (!PyArg_ParseTuple(args, "iil:locking",
|
2015-05-13 03:22:32 -03:00
|
|
|
&fd, &mode, &nbytes))
|
|
|
|
goto exit;
|
|
|
|
return_value = msvcrt_locking_impl(module, fd, mode, nbytes);
|
|
|
|
|
|
|
|
exit:
|
|
|
|
return return_value;
|
|
|
|
}
|
|
|
|
|
|
|
|
PyDoc_STRVAR(msvcrt_setmode__doc__,
|
|
|
|
"setmode($module, fd, mode, /)\n"
|
|
|
|
"--\n"
|
|
|
|
"\n"
|
|
|
|
"Set the line-end translation mode for the file descriptor fd.\n"
|
|
|
|
"\n"
|
|
|
|
"To set it to text mode, flags should be os.O_TEXT; for binary, it\n"
|
|
|
|
"should be os.O_BINARY.\n"
|
|
|
|
"\n"
|
|
|
|
"Return value is the previous mode.");
|
|
|
|
|
|
|
|
#define MSVCRT_SETMODE_METHODDEF \
|
|
|
|
{"setmode", (PyCFunction)msvcrt_setmode, METH_VARARGS, msvcrt_setmode__doc__},
|
|
|
|
|
|
|
|
static long
|
|
|
|
msvcrt_setmode_impl(PyModuleDef *module, int fd, int flags);
|
|
|
|
|
|
|
|
static PyObject *
|
|
|
|
msvcrt_setmode(PyModuleDef *module, PyObject *args)
|
|
|
|
{
|
|
|
|
PyObject *return_value = NULL;
|
|
|
|
int fd;
|
|
|
|
int flags;
|
|
|
|
long _return_value;
|
|
|
|
|
2015-05-13 12:58:35 -03:00
|
|
|
if (!PyArg_ParseTuple(args, "ii:setmode",
|
2015-05-13 03:22:32 -03:00
|
|
|
&fd, &flags))
|
|
|
|
goto exit;
|
|
|
|
_return_value = msvcrt_setmode_impl(module, fd, flags);
|
|
|
|
if ((_return_value == -1) && PyErr_Occurred())
|
|
|
|
goto exit;
|
|
|
|
return_value = PyLong_FromLong(_return_value);
|
|
|
|
|
|
|
|
exit:
|
|
|
|
return return_value;
|
|
|
|
}
|
|
|
|
|
|
|
|
PyDoc_STRVAR(msvcrt_open_osfhandle__doc__,
|
|
|
|
"open_osfhandle($module, handle, flags, /)\n"
|
|
|
|
"--\n"
|
|
|
|
"\n"
|
|
|
|
"Create a C runtime file descriptor from the file handle handle.\n"
|
|
|
|
"\n"
|
|
|
|
"The flags parameter should be a bitwise OR of os.O_APPEND, os.O_RDONLY,\n"
|
|
|
|
"and os.O_TEXT. The returned file descriptor may be used as a parameter\n"
|
|
|
|
"to os.fdopen() to create a file object.");
|
|
|
|
|
|
|
|
#define MSVCRT_OPEN_OSFHANDLE_METHODDEF \
|
|
|
|
{"open_osfhandle", (PyCFunction)msvcrt_open_osfhandle, METH_VARARGS, msvcrt_open_osfhandle__doc__},
|
|
|
|
|
|
|
|
static long
|
2015-05-13 12:58:35 -03:00
|
|
|
msvcrt_open_osfhandle_impl(PyModuleDef *module, Py_intptr_t handle,
|
|
|
|
int flags);
|
2015-05-13 03:22:32 -03:00
|
|
|
|
|
|
|
static PyObject *
|
|
|
|
msvcrt_open_osfhandle(PyModuleDef *module, PyObject *args)
|
|
|
|
{
|
|
|
|
PyObject *return_value = NULL;
|
|
|
|
Py_intptr_t handle;
|
|
|
|
int flags;
|
|
|
|
long _return_value;
|
|
|
|
|
2015-05-13 12:58:35 -03:00
|
|
|
if (!PyArg_ParseTuple(args, ""_Py_PARSE_INTPTR"i:open_osfhandle",
|
2015-05-13 03:22:32 -03:00
|
|
|
&handle, &flags))
|
|
|
|
goto exit;
|
|
|
|
_return_value = msvcrt_open_osfhandle_impl(module, handle, flags);
|
|
|
|
if ((_return_value == -1) && PyErr_Occurred())
|
|
|
|
goto exit;
|
|
|
|
return_value = PyLong_FromLong(_return_value);
|
|
|
|
|
|
|
|
exit:
|
|
|
|
return return_value;
|
|
|
|
}
|
|
|
|
|
|
|
|
PyDoc_STRVAR(msvcrt_get_osfhandle__doc__,
|
|
|
|
"get_osfhandle($module, fd, /)\n"
|
|
|
|
"--\n"
|
|
|
|
"\n"
|
|
|
|
"Return the file handle for the file descriptor fd.\n"
|
|
|
|
"\n"
|
|
|
|
"Raises IOError if fd is not recognized.");
|
|
|
|
|
|
|
|
#define MSVCRT_GET_OSFHANDLE_METHODDEF \
|
|
|
|
{"get_osfhandle", (PyCFunction)msvcrt_get_osfhandle, METH_O, msvcrt_get_osfhandle__doc__},
|
|
|
|
|
|
|
|
static Py_intptr_t
|
|
|
|
msvcrt_get_osfhandle_impl(PyModuleDef *module, int fd);
|
|
|
|
|
|
|
|
static PyObject *
|
|
|
|
msvcrt_get_osfhandle(PyModuleDef *module, PyObject *arg)
|
|
|
|
{
|
|
|
|
PyObject *return_value = NULL;
|
|
|
|
int fd;
|
|
|
|
Py_intptr_t _return_value;
|
|
|
|
|
2015-05-13 12:58:35 -03:00
|
|
|
if (!PyArg_Parse(arg, "i:get_osfhandle", &fd))
|
2015-05-13 03:22:32 -03:00
|
|
|
goto exit;
|
|
|
|
_return_value = msvcrt_get_osfhandle_impl(module, fd);
|
|
|
|
if ((_return_value == -1) && PyErr_Occurred())
|
|
|
|
goto exit;
|
|
|
|
return_value = PyLong_FromVoidPtr((void *)_return_value);
|
|
|
|
|
|
|
|
exit:
|
|
|
|
return return_value;
|
|
|
|
}
|
|
|
|
|
|
|
|
PyDoc_STRVAR(msvcrt_kbhit__doc__,
|
|
|
|
"kbhit($module, /)\n"
|
|
|
|
"--\n"
|
|
|
|
"\n"
|
|
|
|
"Return true if a keypress is waiting to be read.");
|
|
|
|
|
|
|
|
#define MSVCRT_KBHIT_METHODDEF \
|
|
|
|
{"kbhit", (PyCFunction)msvcrt_kbhit, METH_NOARGS, msvcrt_kbhit__doc__},
|
|
|
|
|
|
|
|
static long
|
|
|
|
msvcrt_kbhit_impl(PyModuleDef *module);
|
|
|
|
|
|
|
|
static PyObject *
|
|
|
|
msvcrt_kbhit(PyModuleDef *module, PyObject *Py_UNUSED(ignored))
|
|
|
|
{
|
|
|
|
PyObject *return_value = NULL;
|
|
|
|
long _return_value;
|
|
|
|
|
|
|
|
_return_value = msvcrt_kbhit_impl(module);
|
|
|
|
if ((_return_value == -1) && PyErr_Occurred())
|
|
|
|
goto exit;
|
|
|
|
return_value = PyLong_FromLong(_return_value);
|
|
|
|
|
|
|
|
exit:
|
|
|
|
return return_value;
|
|
|
|
}
|
|
|
|
|
|
|
|
PyDoc_STRVAR(msvcrt_getch__doc__,
|
|
|
|
"getch($module, /)\n"
|
|
|
|
"--\n"
|
|
|
|
"\n"
|
|
|
|
"Read a keypress and return the resulting character as a byte string.\n"
|
|
|
|
"\n"
|
|
|
|
"Nothing is echoed to the console. This call will block if a keypress is\n"
|
|
|
|
"not already available, but will not wait for Enter to be pressed. If the\n"
|
|
|
|
"pressed key was a special function key, this will return \'\\000\' or\n"
|
|
|
|
"\'\\xe0\'; the next call will return the keycode. The Control-C keypress\n"
|
|
|
|
"cannot be read with this function.");
|
|
|
|
|
|
|
|
#define MSVCRT_GETCH_METHODDEF \
|
|
|
|
{"getch", (PyCFunction)msvcrt_getch, METH_NOARGS, msvcrt_getch__doc__},
|
|
|
|
|
|
|
|
static int
|
|
|
|
msvcrt_getch_impl(PyModuleDef *module);
|
|
|
|
|
|
|
|
static PyObject *
|
|
|
|
msvcrt_getch(PyModuleDef *module, PyObject *Py_UNUSED(ignored))
|
|
|
|
{
|
|
|
|
PyObject *return_value = NULL;
|
|
|
|
char s[1];
|
|
|
|
|
|
|
|
s[0] = msvcrt_getch_impl(module);
|
|
|
|
return_value = PyBytes_FromStringAndSize(s, 1);
|
|
|
|
|
|
|
|
return return_value;
|
|
|
|
}
|
|
|
|
|
|
|
|
PyDoc_STRVAR(msvcrt_getwch__doc__,
|
|
|
|
"getwch($module, /)\n"
|
|
|
|
"--\n"
|
|
|
|
"\n"
|
|
|
|
"Wide char variant of getch(), returning a Unicode value.");
|
|
|
|
|
|
|
|
#define MSVCRT_GETWCH_METHODDEF \
|
|
|
|
{"getwch", (PyCFunction)msvcrt_getwch, METH_NOARGS, msvcrt_getwch__doc__},
|
|
|
|
|
|
|
|
static wchar_t
|
|
|
|
msvcrt_getwch_impl(PyModuleDef *module);
|
|
|
|
|
|
|
|
static PyObject *
|
|
|
|
msvcrt_getwch(PyModuleDef *module, PyObject *Py_UNUSED(ignored))
|
|
|
|
{
|
|
|
|
PyObject *return_value = NULL;
|
|
|
|
wchar_t _return_value;
|
|
|
|
|
|
|
|
_return_value = msvcrt_getwch_impl(module);
|
|
|
|
return_value = PyUnicode_FromOrdinal(_return_value);
|
|
|
|
|
|
|
|
return return_value;
|
|
|
|
}
|
|
|
|
|
|
|
|
PyDoc_STRVAR(msvcrt_getche__doc__,
|
|
|
|
"getche($module, /)\n"
|
|
|
|
"--\n"
|
|
|
|
"\n"
|
|
|
|
"Similar to getch(), but the keypress will be echoed if possible.");
|
|
|
|
|
|
|
|
#define MSVCRT_GETCHE_METHODDEF \
|
|
|
|
{"getche", (PyCFunction)msvcrt_getche, METH_NOARGS, msvcrt_getche__doc__},
|
|
|
|
|
|
|
|
static int
|
|
|
|
msvcrt_getche_impl(PyModuleDef *module);
|
|
|
|
|
|
|
|
static PyObject *
|
|
|
|
msvcrt_getche(PyModuleDef *module, PyObject *Py_UNUSED(ignored))
|
|
|
|
{
|
|
|
|
PyObject *return_value = NULL;
|
|
|
|
char s[1];
|
|
|
|
|
|
|
|
s[0] = msvcrt_getche_impl(module);
|
|
|
|
return_value = PyBytes_FromStringAndSize(s, 1);
|
|
|
|
|
|
|
|
return return_value;
|
|
|
|
}
|
|
|
|
|
|
|
|
PyDoc_STRVAR(msvcrt_getwche__doc__,
|
|
|
|
"getwche($module, /)\n"
|
|
|
|
"--\n"
|
|
|
|
"\n"
|
|
|
|
"Wide char variant of getche(), returning a Unicode value.");
|
|
|
|
|
|
|
|
#define MSVCRT_GETWCHE_METHODDEF \
|
|
|
|
{"getwche", (PyCFunction)msvcrt_getwche, METH_NOARGS, msvcrt_getwche__doc__},
|
|
|
|
|
|
|
|
static wchar_t
|
|
|
|
msvcrt_getwche_impl(PyModuleDef *module);
|
|
|
|
|
|
|
|
static PyObject *
|
|
|
|
msvcrt_getwche(PyModuleDef *module, PyObject *Py_UNUSED(ignored))
|
|
|
|
{
|
|
|
|
PyObject *return_value = NULL;
|
|
|
|
wchar_t _return_value;
|
|
|
|
|
|
|
|
_return_value = msvcrt_getwche_impl(module);
|
|
|
|
return_value = PyUnicode_FromOrdinal(_return_value);
|
|
|
|
|
|
|
|
return return_value;
|
|
|
|
}
|
|
|
|
|
|
|
|
PyDoc_STRVAR(msvcrt_putch__doc__,
|
|
|
|
"putch($module, char, /)\n"
|
|
|
|
"--\n"
|
|
|
|
"\n"
|
|
|
|
"Print the byte string char to the console without buffering.");
|
|
|
|
|
|
|
|
#define MSVCRT_PUTCH_METHODDEF \
|
|
|
|
{"putch", (PyCFunction)msvcrt_putch, METH_O, msvcrt_putch__doc__},
|
|
|
|
|
|
|
|
static PyObject *
|
|
|
|
msvcrt_putch_impl(PyModuleDef *module, char char_value);
|
|
|
|
|
|
|
|
static PyObject *
|
|
|
|
msvcrt_putch(PyModuleDef *module, PyObject *arg)
|
|
|
|
{
|
|
|
|
PyObject *return_value = NULL;
|
|
|
|
char char_value;
|
|
|
|
|
2015-05-13 12:58:35 -03:00
|
|
|
if (!PyArg_Parse(arg, "c:putch", &char_value))
|
2015-05-13 03:22:32 -03:00
|
|
|
goto exit;
|
|
|
|
return_value = msvcrt_putch_impl(module, char_value);
|
|
|
|
|
|
|
|
exit:
|
|
|
|
return return_value;
|
|
|
|
}
|
|
|
|
|
|
|
|
PyDoc_STRVAR(msvcrt_putwch__doc__,
|
|
|
|
"putwch($module, unicode_char, /)\n"
|
|
|
|
"--\n"
|
|
|
|
"\n"
|
|
|
|
"Wide char variant of putch(), accepting a Unicode value.");
|
|
|
|
|
|
|
|
#define MSVCRT_PUTWCH_METHODDEF \
|
|
|
|
{"putwch", (PyCFunction)msvcrt_putwch, METH_O, msvcrt_putwch__doc__},
|
|
|
|
|
|
|
|
static PyObject *
|
|
|
|
msvcrt_putwch_impl(PyModuleDef *module, int unicode_char);
|
|
|
|
|
|
|
|
static PyObject *
|
|
|
|
msvcrt_putwch(PyModuleDef *module, PyObject *arg)
|
|
|
|
{
|
|
|
|
PyObject *return_value = NULL;
|
|
|
|
int unicode_char;
|
|
|
|
|
2015-05-13 12:58:35 -03:00
|
|
|
if (!PyArg_Parse(arg, "C:putwch", &unicode_char))
|
2015-05-13 03:22:32 -03:00
|
|
|
goto exit;
|
|
|
|
return_value = msvcrt_putwch_impl(module, unicode_char);
|
|
|
|
|
|
|
|
exit:
|
|
|
|
return return_value;
|
|
|
|
}
|
|
|
|
|
|
|
|
PyDoc_STRVAR(msvcrt_ungetch__doc__,
|
|
|
|
"ungetch($module, char, /)\n"
|
|
|
|
"--\n"
|
|
|
|
"\n"
|
|
|
|
"Opposite of getch.\n"
|
|
|
|
"\n"
|
|
|
|
"Cause the byte string char to be \"pushed back\" into the\n"
|
|
|
|
"console buffer; it will be the next character read by\n"
|
|
|
|
"getch() or getche().");
|
|
|
|
|
|
|
|
#define MSVCRT_UNGETCH_METHODDEF \
|
|
|
|
{"ungetch", (PyCFunction)msvcrt_ungetch, METH_O, msvcrt_ungetch__doc__},
|
|
|
|
|
|
|
|
static PyObject *
|
|
|
|
msvcrt_ungetch_impl(PyModuleDef *module, char char_value);
|
|
|
|
|
|
|
|
static PyObject *
|
|
|
|
msvcrt_ungetch(PyModuleDef *module, PyObject *arg)
|
|
|
|
{
|
|
|
|
PyObject *return_value = NULL;
|
|
|
|
char char_value;
|
|
|
|
|
2015-05-13 12:58:35 -03:00
|
|
|
if (!PyArg_Parse(arg, "c:ungetch", &char_value))
|
2015-05-13 03:22:32 -03:00
|
|
|
goto exit;
|
|
|
|
return_value = msvcrt_ungetch_impl(module, char_value);
|
|
|
|
|
|
|
|
exit:
|
|
|
|
return return_value;
|
|
|
|
}
|
|
|
|
|
|
|
|
PyDoc_STRVAR(msvcrt_ungetwch__doc__,
|
|
|
|
"ungetwch($module, unicode_char, /)\n"
|
|
|
|
"--\n"
|
|
|
|
"\n"
|
|
|
|
"Wide char variant of ungetch(), accepting a Unicode value.");
|
|
|
|
|
|
|
|
#define MSVCRT_UNGETWCH_METHODDEF \
|
|
|
|
{"ungetwch", (PyCFunction)msvcrt_ungetwch, METH_O, msvcrt_ungetwch__doc__},
|
|
|
|
|
|
|
|
static PyObject *
|
|
|
|
msvcrt_ungetwch_impl(PyModuleDef *module, int unicode_char);
|
|
|
|
|
|
|
|
static PyObject *
|
|
|
|
msvcrt_ungetwch(PyModuleDef *module, PyObject *arg)
|
|
|
|
{
|
|
|
|
PyObject *return_value = NULL;
|
|
|
|
int unicode_char;
|
|
|
|
|
2015-05-13 12:58:35 -03:00
|
|
|
if (!PyArg_Parse(arg, "C:ungetwch", &unicode_char))
|
2015-05-13 03:22:32 -03:00
|
|
|
goto exit;
|
|
|
|
return_value = msvcrt_ungetwch_impl(module, unicode_char);
|
|
|
|
|
|
|
|
exit:
|
|
|
|
return return_value;
|
|
|
|
}
|
|
|
|
|
|
|
|
#if defined(_DEBUG)
|
|
|
|
|
|
|
|
PyDoc_STRVAR(msvcrt_CrtSetReportFile__doc__,
|
|
|
|
"CrtSetReportFile($module, type, file, /)\n"
|
|
|
|
"--\n"
|
|
|
|
"\n"
|
|
|
|
"Wrapper around _CrtSetReportFile.\n"
|
|
|
|
"\n"
|
|
|
|
"Only available on Debug builds.");
|
|
|
|
|
|
|
|
#define MSVCRT_CRTSETREPORTFILE_METHODDEF \
|
|
|
|
{"CrtSetReportFile", (PyCFunction)msvcrt_CrtSetReportFile, METH_VARARGS, msvcrt_CrtSetReportFile__doc__},
|
|
|
|
|
|
|
|
static long
|
|
|
|
msvcrt_CrtSetReportFile_impl(PyModuleDef *module, int type, int file);
|
|
|
|
|
|
|
|
static PyObject *
|
|
|
|
msvcrt_CrtSetReportFile(PyModuleDef *module, PyObject *args)
|
|
|
|
{
|
|
|
|
PyObject *return_value = NULL;
|
|
|
|
int type;
|
|
|
|
int file;
|
|
|
|
long _return_value;
|
|
|
|
|
2015-05-13 12:58:35 -03:00
|
|
|
if (!PyArg_ParseTuple(args, "ii:CrtSetReportFile",
|
2015-05-13 03:22:32 -03:00
|
|
|
&type, &file))
|
|
|
|
goto exit;
|
|
|
|
_return_value = msvcrt_CrtSetReportFile_impl(module, type, file);
|
|
|
|
if ((_return_value == -1) && PyErr_Occurred())
|
|
|
|
goto exit;
|
|
|
|
return_value = PyLong_FromLong(_return_value);
|
|
|
|
|
|
|
|
exit:
|
|
|
|
return return_value;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* defined(_DEBUG) */
|
|
|
|
|
|
|
|
#if defined(_DEBUG)
|
|
|
|
|
|
|
|
PyDoc_STRVAR(msvcrt_CrtSetReportMode__doc__,
|
|
|
|
"CrtSetReportMode($module, type, mode, /)\n"
|
|
|
|
"--\n"
|
|
|
|
"\n"
|
|
|
|
"Wrapper around _CrtSetReportMode.\n"
|
|
|
|
"\n"
|
|
|
|
"Only available on Debug builds.");
|
|
|
|
|
|
|
|
#define MSVCRT_CRTSETREPORTMODE_METHODDEF \
|
|
|
|
{"CrtSetReportMode", (PyCFunction)msvcrt_CrtSetReportMode, METH_VARARGS, msvcrt_CrtSetReportMode__doc__},
|
|
|
|
|
|
|
|
static long
|
|
|
|
msvcrt_CrtSetReportMode_impl(PyModuleDef *module, int type, int mode);
|
|
|
|
|
|
|
|
static PyObject *
|
|
|
|
msvcrt_CrtSetReportMode(PyModuleDef *module, PyObject *args)
|
|
|
|
{
|
|
|
|
PyObject *return_value = NULL;
|
|
|
|
int type;
|
|
|
|
int mode;
|
|
|
|
long _return_value;
|
|
|
|
|
2015-05-13 12:58:35 -03:00
|
|
|
if (!PyArg_ParseTuple(args, "ii:CrtSetReportMode",
|
2015-05-13 03:22:32 -03:00
|
|
|
&type, &mode))
|
|
|
|
goto exit;
|
|
|
|
_return_value = msvcrt_CrtSetReportMode_impl(module, type, mode);
|
|
|
|
if ((_return_value == -1) && PyErr_Occurred())
|
|
|
|
goto exit;
|
|
|
|
return_value = PyLong_FromLong(_return_value);
|
|
|
|
|
|
|
|
exit:
|
|
|
|
return return_value;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* defined(_DEBUG) */
|
|
|
|
|
|
|
|
#if defined(_DEBUG)
|
|
|
|
|
|
|
|
PyDoc_STRVAR(msvcrt_set_error_mode__doc__,
|
|
|
|
"set_error_mode($module, mode, /)\n"
|
|
|
|
"--\n"
|
|
|
|
"\n"
|
|
|
|
"Wrapper around _set_error_mode.\n"
|
|
|
|
"\n"
|
|
|
|
"Only available on Debug builds.");
|
|
|
|
|
|
|
|
#define MSVCRT_SET_ERROR_MODE_METHODDEF \
|
|
|
|
{"set_error_mode", (PyCFunction)msvcrt_set_error_mode, METH_O, msvcrt_set_error_mode__doc__},
|
|
|
|
|
|
|
|
static long
|
|
|
|
msvcrt_set_error_mode_impl(PyModuleDef *module, int mode);
|
|
|
|
|
|
|
|
static PyObject *
|
|
|
|
msvcrt_set_error_mode(PyModuleDef *module, PyObject *arg)
|
|
|
|
{
|
|
|
|
PyObject *return_value = NULL;
|
|
|
|
int mode;
|
|
|
|
long _return_value;
|
|
|
|
|
2015-05-13 12:58:35 -03:00
|
|
|
if (!PyArg_Parse(arg, "i:set_error_mode", &mode))
|
2015-05-13 03:22:32 -03:00
|
|
|
goto exit;
|
|
|
|
_return_value = msvcrt_set_error_mode_impl(module, mode);
|
|
|
|
if ((_return_value == -1) && PyErr_Occurred())
|
|
|
|
goto exit;
|
|
|
|
return_value = PyLong_FromLong(_return_value);
|
|
|
|
|
|
|
|
exit:
|
|
|
|
return return_value;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* defined(_DEBUG) */
|
|
|
|
|
|
|
|
PyDoc_STRVAR(msvcrt_SetErrorMode__doc__,
|
|
|
|
"SetErrorMode($module, mode, /)\n"
|
|
|
|
"--\n"
|
|
|
|
"\n"
|
|
|
|
"Wrapper around SetErrorMode.");
|
|
|
|
|
|
|
|
#define MSVCRT_SETERRORMODE_METHODDEF \
|
|
|
|
{"SetErrorMode", (PyCFunction)msvcrt_SetErrorMode, METH_O, msvcrt_SetErrorMode__doc__},
|
|
|
|
|
|
|
|
static PyObject *
|
|
|
|
msvcrt_SetErrorMode_impl(PyModuleDef *module, unsigned int mode);
|
|
|
|
|
|
|
|
static PyObject *
|
|
|
|
msvcrt_SetErrorMode(PyModuleDef *module, PyObject *arg)
|
|
|
|
{
|
|
|
|
PyObject *return_value = NULL;
|
|
|
|
unsigned int mode;
|
|
|
|
|
2015-05-13 12:58:35 -03:00
|
|
|
if (!PyArg_Parse(arg, "I:SetErrorMode", &mode))
|
2015-05-13 03:22:32 -03:00
|
|
|
goto exit;
|
|
|
|
return_value = msvcrt_SetErrorMode_impl(module, mode);
|
|
|
|
|
|
|
|
exit:
|
|
|
|
return return_value;
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifndef MSVCRT_CRTSETREPORTFILE_METHODDEF
|
|
|
|
#define MSVCRT_CRTSETREPORTFILE_METHODDEF
|
|
|
|
#endif /* !defined(MSVCRT_CRTSETREPORTFILE_METHODDEF) */
|
|
|
|
|
|
|
|
#ifndef MSVCRT_CRTSETREPORTMODE_METHODDEF
|
|
|
|
#define MSVCRT_CRTSETREPORTMODE_METHODDEF
|
|
|
|
#endif /* !defined(MSVCRT_CRTSETREPORTMODE_METHODDEF) */
|
|
|
|
|
|
|
|
#ifndef MSVCRT_SET_ERROR_MODE_METHODDEF
|
|
|
|
#define MSVCRT_SET_ERROR_MODE_METHODDEF
|
|
|
|
#endif /* !defined(MSVCRT_SET_ERROR_MODE_METHODDEF) */
|
2015-05-13 23:35:49 -03:00
|
|
|
/*[clinic end generated code: output=16613d3119a1fd44 input=a9049054013a1b77]*/
|