Hi, I'm looking for a way to insert anonymous fixed values into an Any - from OmniORBPy. In C++ we have: CORBA::Fixed f = "1234.56"; CORBA::Any any; any <<= CORBA::Any::from_fixed(f, f.fixed_digits(), f.fixed_scale()); What about the equivalent in python ? I need to build a TypeCode for that, but CORBA.ORB is missing method create_fixed_tc(). Thanks, Renzo Tomaselli