(key: u64, source: PyBytesRef)
| 340 | |
| 341 | #[pyfunction] |
| 342 | fn source_hash(key: u64, source: PyBytesRef) -> Vec<u8> { |
| 343 | let hash: u64 = crate::common::hash::keyed_hash(key, source.as_bytes()); |
| 344 | hash.to_le_bytes().to_vec() |
| 345 | } |
| 346 | } |
| 347 | |
| 348 | fn update_code_filenames( |
nothing calls this directly
no test coverage detected