Home
last modified time | relevance | path

Searched refs:bytesobj (Results 1 – 2 of 2) sorted by relevance

/third_party/python/Modules/
D_cursesmodule.c819 PyObject *bytesobj = NULL; in _curses_window_addstr_impl() local
828 strtype = PyCurses_ConvertToString(self, str, &bytesobj, &wstr); in _curses_window_addstr_impl()
830 strtype = PyCurses_ConvertToString(self, str, &bytesobj, NULL); in _curses_window_addstr_impl()
851 const char *str = PyBytes_AS_STRING(bytesobj); in _curses_window_addstr_impl()
857 Py_DECREF(bytesobj); in _curses_window_addstr_impl()
902 PyObject *bytesobj = NULL; in _curses_window_addnstr_impl() local
911 strtype = PyCurses_ConvertToString(self, str, &bytesobj, &wstr); in _curses_window_addnstr_impl()
913 strtype = PyCurses_ConvertToString(self, str, &bytesobj, NULL); in _curses_window_addnstr_impl()
934 const char *str = PyBytes_AS_STRING(bytesobj); in _curses_window_addnstr_impl()
940 Py_DECREF(bytesobj); in _curses_window_addnstr_impl()
[all …]
/third_party/python/Lib/test/
Dtest_marshal.py424 bytesobj = b"abcde"*3
425 self.helper(bytesobj)
426 self.helper3(bytesobj)