| 354 | } |
| 355 | |
| 356 | string StringToPython(const string& str) { |
| 357 | return strings::StrCat("\"", absl::CEscape(str), "\""); |
| 358 | } |
| 359 | |
| 360 | string DataTypeToPython(DataType dtype, const string& dtype_module) { |
| 361 | return strings::StrCat(dtype_module, PythonDataTypeString(dtype)); |
no test coverage detected