palm icon indicating copy to clipboard operation
palm copied to clipboard

Protobufs Are Lightweight Messages

Results 9 palm issues
Sort by recently updated
recently updated
newest added

Google's protoc can compile the following just fine as the duplicate `message X`s are in different enclosing messages: ``` protobuf message A { optional B b = 1; optional C...

It would be handy to integrate into Google's protoc tool to simplify usage and integrate with cross-platform projects more easily. Plugins are as "simple" as a binary named `protoc-gen-$NAME`: ```...

data is a common field name in protocol buffers, we should avoid using it in the constructor for ProtoBase because it means you can't set that field using the generated...

Attempting to `pip install palm` fails with: Could not install requirement palm because of HTTP error HTTP Error 404: 404 NOT FOUND for URL http://bu.mp/static/oss/palm/palm-0.1.2.tar.gz (from http://pypi.python.org/simple/palm/)

The proto file `t.proto`: ``` message M { repeated string a = 0; } ``` It'd be nice to be able to set the `a` field from a list during...

``` protobuf enum Foo { a = 1; }; ``` Is valid in Google's protoc 2.4.1 compiler but not palm. It doesn't change the generated code to remove, so this...

I'm not worried about palmc generating service code for me, but it'd be nice if the parser didn't break when it encountered service definitions like: ``` service RemoteService { rpc...

Ignoring package directives seems sensible since Python doesn't use it. I'll see if I can't figure it out, but I've never used SimpleParse.