Re: [protobuf] Protobuf python packaging conflicts with AppEngine packaging

2016-03-03 Thread 'Adrian Wan' via Protocol Buffers
For the reference of others encountering this, the GitHub issue is https://github.com/google/protobuf/issues/1153 I'd be thankful for an update :) On Tuesday, January 19, 2016 at 2:04:05 PM UTC-8, Feng Xiao wrote: > > Could you submit this as a github issue? >

Re: [protobuf] Putting compiled protobufs into a python package

2016-03-03 Thread 'Adrian Wan' via Protocol Buffers
I believe I ran into this issue as well - https://github.com/google/protobuf/issues/881? On Monday, March 29, 2010 at 11:59:01 AM UTC-7, Kenton Varda wrote: > > Yeah, there's really no way to accomplish this without editing the .proto > files you are importing. This is an issue in regular old

[protobuf] Compiling into relocatable Python packages

2016-03-03 Thread 'Adrian Wan' via Protocol Buffers
Relates to my (awan1) comment on this issue . I am struggling with including a Python package generated from a protobuf package, because the way protobuf compiles an import statement is import "a/b/c.proto"->from a.b import c_pb2 and