Taylor Burmeister
Taylor Burmeister
Just ran into this myself, but was able to work around this by importing `line_profiler` in my script and creating a `LineProfiler` manually, which then gets copied to each child...
Hi @alkorolyov, I have stopped contributing to this project and don't really have the time to continue supporting it. I would consider Pyrobuf essentially dead, though you are free to...
Thanks! Looks pretty good but... 1. We should add a test 2. I think this only partially works, based on the example in the language guide: ``` message Foo {...
This is great! Going to request some changes, but overall I think this looks good.
This branch is failing `tests/test_imported_enums.py`, `tests/test_items.py`, `tests/test_merge_from.py`, and `tests/test_parser/test_oneof.py` for me. Should probably add a unit test for proper comment parsing as well.
You need to add the flag `--proto3` when running pyrobuf on proto3 specs.
Good catch @thisch ! I just merged in a fix.
You can find my benchmarking test here: https://github.com/appnexus/pyrobuf/blob/master/tests/performances.py
Cython is not required to use compiled pyrobuf modules, however, when you run `pyrobuf --install /path/to/proto/specs` pyrobuf generates Cython code for the messages your are compiling, which Cython then compiles...
I just uploaded version 0.8.5 to PyPI. Before releasing, I also merged in some changes to simplify testing so that now you can just run `python setup.py test` or `py.test`...