Re: CPython and C++ object GC

2009-04-05 Thread Aahz
[posted & e-mailed] In article <4425af5f-b188-4c3e-9114-eb7673165...@r33g2000yqn.googlegroups.com>, wrote: > >I would like to use a C++ gui library with the following (simplified) >interface in Python. Given the lack of responses on c.l.py, try the capi-sig mailing list. -- Aahz (a...@pythoncr

CPython and C++ object GC

2009-03-30 Thread csaba . balazs
Hello Everybody, I would like to use a C++ gui library with the following (simplified) interface in Python. #include class Gui; class GuiObject { public: GuiObject(Gui *Gui) {printf("creating GuiObject(gui: %X)\n", Gui);} ~GuiObject() {printf("deleting GuiObject\n");} v