[protobuf] Re: Issue 278 in protobuf: SerializeToString fail if nested types all field is empty

2011-04-26 Thread protobuf
Updates: Status: WorkingAsIntended Comment #1 on issue 278 by liuj...@google.com: SerializeToString fail if nested types all field is empty http://code.google.com/p/protobuf/issues/detail?id=278 The has bit in python is set lazily. in your case, the child message is initialized

[protobuf] Re: Python Client: pickling error

2011-04-26 Thread vish
So far what I've found is python protocol buffer objects are not serializable using Pickle. On Apr 25, 3:55 pm, vish vishi...@gmail.com wrote: Environment: CentOS 64bit Python 2.6 Protocol Buffers 2.4.0.a Python client with Native C++ support python protocol buffers installed to ~/protobuf

[protobuf] Re: Issue 166 in protobuf: by_symbol_.insert(iter, make_pair(name, value)); fails with Sun Studio 12

2011-04-26 Thread protobuf
Comment #7 on issue 166 by james.de...@gmail.com: by_symbol_.insert(iter, make_pair(name, value)); fails with Sun Studio 12 http://code.google.com/p/protobuf/issues/detail?id=166 make_pairstring, string is not compatible with C++0x. You probably want pairstring, string as a workaround for