_testconsole.c.h 2.44 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13
/*[clinic input]
preserve
[clinic start generated code]*/

#if defined(MS_WINDOWS)

PyDoc_STRVAR(_testconsole_write_input__doc__,
"write_input($module, /, file, s)\n"
"--\n"
"\n"
"Writes UTF-16-LE encoded bytes to the console as if typed by a user.");

#define _TESTCONSOLE_WRITE_INPUT_METHODDEF    \
14
    {"write_input", (PyCFunction)_testconsole_write_input, METH_FASTCALL|METH_KEYWORDS, _testconsole_write_input__doc__},
15 16 17 18 19 20

static PyObject *
_testconsole_write_input_impl(PyObject *module, PyObject *file,
                              PyBytesObject *s);

static PyObject *
21
_testconsole_write_input(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)
22 23 24 25 26 27 28
{
    PyObject *return_value = NULL;
    static const char * const _keywords[] = {"file", "s", NULL};
    static _PyArg_Parser _parser = {"OS:write_input", _keywords, 0};
    PyObject *file;
    PyBytesObject *s;

29
    if (!_PyArg_ParseStackAndKeywords(args, nargs, kwnames, &_parser,
30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
        &file, &s)) {
        goto exit;
    }
    return_value = _testconsole_write_input_impl(module, file, s);

exit:
    return return_value;
}

#endif /* defined(MS_WINDOWS) */

#if defined(MS_WINDOWS)

PyDoc_STRVAR(_testconsole_read_output__doc__,
"read_output($module, /, file)\n"
"--\n"
"\n"
"Reads a str from the console as written to stdout.");

#define _TESTCONSOLE_READ_OUTPUT_METHODDEF    \
50
    {"read_output", (PyCFunction)_testconsole_read_output, METH_FASTCALL|METH_KEYWORDS, _testconsole_read_output__doc__},
51 52 53 54 55

static PyObject *
_testconsole_read_output_impl(PyObject *module, PyObject *file);

static PyObject *
56
_testconsole_read_output(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)
57 58 59 60 61 62
{
    PyObject *return_value = NULL;
    static const char * const _keywords[] = {"file", NULL};
    static _PyArg_Parser _parser = {"O:read_output", _keywords, 0};
    PyObject *file;

63
    if (!_PyArg_ParseStackAndKeywords(args, nargs, kwnames, &_parser,
64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81
        &file)) {
        goto exit;
    }
    return_value = _testconsole_read_output_impl(module, file);

exit:
    return return_value;
}

#endif /* defined(MS_WINDOWS) */

#ifndef _TESTCONSOLE_WRITE_INPUT_METHODDEF
    #define _TESTCONSOLE_WRITE_INPUT_METHODDEF
#endif /* !defined(_TESTCONSOLE_WRITE_INPUT_METHODDEF) */

#ifndef _TESTCONSOLE_READ_OUTPUT_METHODDEF
    #define _TESTCONSOLE_READ_OUTPUT_METHODDEF
#endif /* !defined(_TESTCONSOLE_READ_OUTPUT_METHODDEF) */
82
/*[clinic end generated code: output=e7dd05a60463c5f0 input=a9049054013a1b77]*/