| 10 | } |
| 11 | |
| 12 | std::streamsize PythonStreamBuffer::xsputn(const char* s, std::streamsize n) { |
| 13 | this->write_function(std::string(s, n)); |
| 14 | return n; |
| 15 | } |
| 16 | |
| 17 | int PythonStreamBuffer::overflow(int c) { |
| 18 | if (c != EOF) { |
nothing calls this directly
no outgoing calls
no test coverage detected