wxWidgets 3.0, Python 3.3 기준이다. http://docs.python.org/3.4/faq/extending.html여기 나온 코드를 기반으로 개조해서 만들었다. #pragma once#ifndef PYTHONCONSOLE_H#define PYTHONCONSOLE_H #include #include class PythonConsole{public:PythonConsole();virtual ~PythonConsole(); public :void feed_line( const char *line );const char *get_output(); // Public varspublic :const char *prompt;const char *error_msg; private:const ch..