| 87 | |
| 88 | private: |
| 89 | void print_python_version_once() { |
| 90 | if (printed_) { |
| 91 | return; |
| 92 | } |
| 93 | printed_ = true; |
| 94 | auto &os = Catch::cout(); |
| 95 | os << "[ PYTHON ] " << Py_GetVersion() << '\n'; |
| 96 | os.flush(); |
| 97 | } |
| 98 | |
| 99 | bool printed_ = false; |
| 100 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected