(vm: &VirtualMachine, msg: impl Into<Wtf8Buf>)
| 51 | static GLOBAL_FIELD_LIMIT: LazyLock<Mutex<isize>> = LazyLock::new(|| Mutex::new(131072)); |
| 52 | |
| 53 | fn new_csv_error(vm: &VirtualMachine, msg: impl Into<Wtf8Buf>) -> PyBaseExceptionRef { |
| 54 | vm.new_exception_msg(super::_csv::error(vm), msg.into()) |
| 55 | } |
| 56 | |
| 57 | #[pyattr] |
| 58 | #[pyclass(module = "csv", name = "Dialect")] |
no test coverage detected