We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Pyrobuf does not support package resolution when resolving type names.
When processing a line like:
optional package.enumtype fieldname = 4;
the parser returns:
Exception: Unexpected character '.' on line 35: ' optional package.enumtype fieldname = 4;'
This looks like it could be an easyish fix.
First step would be adding a . to the regex here https://github.com/appnexus/pyrobuf/blob/master/pyrobuf/parse_proto.py#L23
.
Then would need to work out how to resolve the packages based on the field type strings.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Pyrobuf does not support package resolution when resolving type names.
When processing a line like:
the parser returns:
This looks like it could be an easyish fix.
First step would be adding a
.
to the regex here https://github.com/appnexus/pyrobuf/blob/master/pyrobuf/parse_proto.py#L23Then would need to work out how to resolve the packages based on the field type strings.
The text was updated successfully, but these errors were encountered: