Re: protocol buffers not repeating items marked repeated

2008-10-20 Thread Kenton Varda
I don't see any obvious problems. Try printing the whole message just before serializing and just after parsing to see if they are both as you expect. On Sat, Oct 18, 2008 at 11:24 PM, comsatcat <[EMAIL PROTECTED]> wrote: > > I have a simple client server in python... I have the following > prot

protocol buffers not repeating items marked repeated

2008-10-18 Thread comsatcat
I have a simple client server in python... I have the following protobuf definition: message NodeListData { enum State { FALSE = 0; TRUE = 1; } required string node = 1; required string folder = 2; required State pendingcsr =