HomeSort by relevance Sort by last modified time
    Searched refs:unicode_char (Results 1 - 3 of 3) sorted by null

  /external/python/cpython3/PC/clinic/
msvcrtmodule.c.h 332 "putwch($module, unicode_char, /)\n"
341 msvcrt_putwch_impl(PyObject *module, int unicode_char);
347 int unicode_char; local
349 if (!PyArg_Parse(arg, "C:putwch", &unicode_char)) {
352 return_value = msvcrt_putwch_impl(module, unicode_char);
390 "ungetwch($module, unicode_char, /)\n"
399 msvcrt_ungetwch_impl(PyObject *module, int unicode_char);
405 int unicode_char; local
407 if (!PyArg_Parse(arg, "C:ungetwch", &unicode_char)) {
410 return_value = msvcrt_ungetwch_impl(module, unicode_char);
    [all...]
  /external/python/cpython3/PC/
msvcrtmodule.c 321 unicode_char: int(accept={str})
328 msvcrt_putwch_impl(PyObject *module, int unicode_char)
332 _putwch(unicode_char);
369 unicode_char: int(accept={str})
376 msvcrt_ungetwch_impl(PyObject *module, int unicode_char)
382 res = _ungetwch(unicode_char);
  /external/python/cpython3/Objects/
unicodeobject.c 1965 unicode_char(Py_UCS4 ch) function
    [all...]

Completed in 89 milliseconds