Lines Matching defs:script
6 "eval($self, script, /)\n"
14 _tkinter_tkapp_eval_impl(TkappObject *self, const char *script);
20 const char *script;
27 script = PyUnicode_AsUTF8AndSize(arg, &script_length);
28 if (script == NULL) {
31 if (strlen(script) != (size_t)script_length) {
35 return_value = _tkinter_tkapp_eval_impl(self, script);
78 "record($self, script, /)\n"
86 _tkinter_tkapp_record_impl(TkappObject *self, const char *script);
92 const char *script;
99 script = PyUnicode_AsUTF8AndSize(arg, &script_length);
100 if (script == NULL) {
103 if (strlen(script) != (size_t)script_length) {
107 return_value = _tkinter_tkapp_record_impl(self, script);