Home
last modified time | relevance | path

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

/external/python/cpython3/Modules/_xxtestfuzz/
Dfuzzer.c339 PyObject* csv_module = NULL; variable
344 csv_module = PyImport_ImportModule("csv"); in init_csv_reader()
345 if (csv_module == NULL) { in init_csv_reader()
348 csv_error = PyObject_GetAttrString(csv_module, "Error"); in init_csv_reader()
376 PyObject* reader = PyObject_CallMethod(csv_module, "reader", "N", lines); in fuzz_csv_reader()