Lines Matching refs:test_string
59 PyObject *test_string; in pyobject_print_noref_object() local
64 test_string = PyUnicode_FromString("Spam spam spam"); in pyobject_print_noref_object()
66 Py_SET_REFCNT(test_string, 0); in pyobject_print_noref_object()
69 Py_REFCNT(test_string), (void *)test_string); in pyobject_print_noref_object()
77 if (PyObject_Print(test_string, fp, 0) < 0){ in pyobject_print_noref_object()
79 Py_SET_REFCNT(test_string, 1); in pyobject_print_noref_object()
80 Py_DECREF(test_string); in pyobject_print_noref_object()
86 Py_SET_REFCNT(test_string, 1); in pyobject_print_noref_object()
87 Py_DECREF(test_string); in pyobject_print_noref_object()
95 PyObject *test_string; in pyobject_print_os_error() local
99 test_string = PyUnicode_FromString("Spam spam spam"); in pyobject_print_os_error()
108 if (PyObject_Print(test_string, fp, 0) < 0) { in pyobject_print_os_error()
110 Py_DECREF(test_string); in pyobject_print_os_error()
115 Py_DECREF(test_string); in pyobject_print_os_error()