mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-06-03 06:12:43 -06:00
11 lines
95 B
Text
11 lines
95 B
Text
#include "Python.h"
|
|
|
|
INITBLOCK
|
|
{
|
|
Py_Initialize();
|
|
}
|
|
|
|
EXITBLOCK
|
|
{
|
|
Py_Finalize();
|
|
}
|