On 2007-08-07, Steven W. Orr <[EMAIL PROTECTED]> wrote:
> I have a structure I need to pack. I call struct.pack about a dozen times
> and each call takes about 53 arguments.
>
> I create a sequence of the arguments:
> a1 = 1
> a2 = 2
> a3 = 3
> etc...
> a54 = 88
> myseq = (a1, a2, a3, a4 etc... a5
I have a structure I need to pack. I call struct.pack about a dozen times
and each call takes about 53 arguments.
I create a sequence of the arguments:
a1 = 1
a2 = 2
a3 = 3
etc...
a54 = 88
myseq = (a1, a2, a3, a4 etc... a53)
Also I made
def mpack ( fmt, *ss ):
print type(ss)
for ii in