()
| 670 | |
| 671 | #[test] |
| 672 | fn test_compatible_size() { |
| 673 | // for the cast in PyBuffer::shape() |
| 674 | assert_eq!( |
| 675 | std::mem::size_of::<crate::Py_ssize_t>(), |
| 676 | std::mem::size_of::<usize>() |
| 677 | ); |
| 678 | } |
| 679 | |
| 680 | #[test] |
| 681 | fn test_bytes_buffer() { |
nothing calls this directly
no outgoing calls
no test coverage detected