| 66 | namespace { // unnamed |
| 67 | |
| 68 | struct ParsedPyVersion |
| 69 | { |
| 70 | int major; |
| 71 | int minor; |
| 72 | int patch; |
| 73 | const char* release_level; |
| 74 | int serial; |
| 75 | }; |
| 76 | |
| 77 | std::ostream& |
| 78 | operator<<(std::ostream& out, const ParsedPyVersion& version) |
nothing calls this directly
no outgoing calls
no test coverage detected