[omniORB] octet sequence

Gary Duzan gduzan@bbn.com
Tue May 28 15:47:02 2002


In Message <TFSSVEMV@essnet.se> ,
   sandor.kopanyi@essnet.se wrote:

=>Just one more question: how do I send in an octet "matrix" (i.e. a sequence
=>of sequence)? As a list of strings?

   Correct. By the way, if you already have a list of characters, you
can build a string from it easily enough:

>>> import string
>>> string.join(('a','b','c'), "")
'abc'
>>> 

   or using more modern Python syntax:

>>> "".join(('a','b','c'))
'abc'
>>> 

					Gary Duzan
					BBN Technologies
					A Verizon Company