()
| 11 | |
| 12 | |
| 13 | def all_pickle_protocols(): |
| 14 | assert pickle.HIGHEST_PROTOCOL >= 0 |
| 15 | return range(pickle.HIGHEST_PROTOCOL + 1) |
| 16 | |
| 17 | |
| 18 | @pytest.mark.parametrize("protocol", all_pickle_protocols()) |
nothing calls this directly
no outgoing calls
no test coverage detected