Lines Matching defs:str
717 mode: str
745 const char *str;
827 str = _Py_SourceAsString(source, "compile", "string, bytes or AST", &cf, &source_copy);
828 if (str == NULL)
831 result = Py_CompileStringObject(str, filename, start[compile_mode], &cf, optimize);
909 const char *str;
962 str = _Py_SourceAsString(source, "eval", "string, bytes or code", &cf, &source_copy);
963 if (str == NULL)
966 while (*str == ' ' || *str == '\t')
967 str++;
970 result = PyRun_StringFlags(str, Py_eval_input, globals, locals, &cf);
1093 const char *str;
1096 str = _Py_SourceAsString(source, "exec",
1099 if (str == NULL)
1102 v = PyRun_StringFlags(str, Py_file_input, globals,
1105 v = PyRun_String(str, Py_file_input, globals, locals);
3081 SETBUILTIN("str", &PyUnicode_Type);