Alright so, I'm embedding python 3.3 into a c++ application. I'm looking to dynamically create a python class on the c++ side exactly like if I was doing the following in python:
my_type = type("MyType", (object,), dict())
I know I could always import the "builtins" module but I'm trying to avoid imports on the c++ side in general.
Thanks!