(
mut shebang: &[u8],
)
| 440 | |
| 441 | #[test_case(&[0x23, 0x21, 0xc0, 0xaf] => None ; "invalid UTF-8")] |
| 442 | fn parse_python_sheban_include_invalid_bytes_tests( |
| 443 | mut shebang: &[u8], |
| 444 | ) -> Option<RequestedVersion> { |
| 445 | parse_python_shebang(&mut shebang) |
| 446 | } |
| 447 | } |
nothing calls this directly
no test coverage detected