How to transfer python objects between PyROOT and CINT?

I want to transfer a python dict object to CINT, but don’t know how to. Any example?

Hi,

passing a python dict would only work if CINT would know about it. Passing it as a general python object could work, but you wouldn’t be able to manipulate it in CINT (unless you’d bind the python C-API with a dictionary for use in CINT, which is possible).

Cheers,
Wim

P.S. For reference, general passing of objects from python into CINT is documented here: http://root.cern.ch/root/html526/TPython.html