[protobuf] java_multiple_files option

2011-01-20 Thread Antoine DESSAIGNE
Hi everyone, First I want to say thank you for creating Protobuf, it truely makes my life easier. And I'm always thankful for that kind of thing :) I'm currently going deeper and deeper in Protobuf in order to learn how to use it more efficiently. I found the java_multiple_files option that is

[protobuf] Problem with accents in python while unpacking a message

2011-01-20 Thread Louhike
Hi, I'm using Google Protobuf with python on a project. My problem is I get an error while my program tries to build an instance with the function google.protobuf.text_format.merge() if the message contains accents (“utf-8 can't decode the byte \xe9” with the character 'é' for example). I need to

Re: [protobuf] Dealing with Corrupted Protocol Buffers

2011-01-20 Thread Evan Jones
On Jan 20, 2011, at 2:48 , julius-schorzman wrote: My question is -- can anything be done to retrieve part of the file? It would be nice to know at which point in the file the problematic message occurred, and then I could crop to that point or do some manual exception -- but unfortunately this

Re: [protobuf] Dealing with Corrupted Protocol Buffers

2011-01-20 Thread Julius Schorzman
Thanks for the tip on CodedInputStream Evan! I will explore it and if I get anything out of it will report back my findings for anyone else dealing with this issue. On Thu, Jan 20, 2011 at 6:27 PM, Evan Jones ev...@mit.edu wrote: On Jan 20, 2011, at 2:48 , julius-schorzman wrote: My question