On Ter, 2006-09-26 at 11:01 +0100, Magnus Therning wrote: > I copy-pasted your code into three files here and noticed the same > behaviour. I then went to the PyORBit doc I keep around [1] and tried > the Account example. I got that to work by moving the "import CORBA" to > after the call to "ORBit.load_file". So there shouldn't be something > inherently preventing you from using attributes.
You should always import ORBit before CORBA is imported for the first time. The reason is that "import CORBA" first just imports whatever the default ORB in your system is.. could be omniorb or something like that. If you import ORBit first, pyorbit then provides its own replacement CORBA module. > PS I keep on getting the following warning: > > cc1: note: obsolete option -I- used, please use -iquote instead > > Is that well-known? Should I raise a bug on it? I think it's well known. -- Gustavo J. A. M. Carneiro <[EMAIL PROTECTED]> <[EMAIL PROTECTED]> The universe is always one step beyond logic. _______________________________________________ pygtk mailing list [email protected] http://www.daa.com.au/mailman/listinfo/pygtk Read the PyGTK FAQ: http://www.async.com.br/faq/pygtk/
