Christos Lamprakos
Christos Lamprakos
> What is LIBREADEN? Where does it come from? Please write documentation. I am sorry, this is my first open-source contribution ever. I tried to be instructive in this PR's...
> @cappadokes I love this feature but same as @vstinner comment, Can you please leave a link related to `LIBREADEN`, it would help to review this PR :) OK, I...
> The documentation source lives in the doc/ subdirectory and is rendered at: https://pyperf.readthedocs.io/ And should I directly edit the .rst files in doc/ ? Are they a result of...
Hi all. I have now updated the documentation so as to include `--track-energy`. I have started the analogous PR on the `pyperformance` side: https://github.com/python/pyperformance/pull/140 There is nothing more to be...
> This PR's title doesn't match what the code does (it seems to be adding a `--track-energy` flag). To be precise, the code both fixes the `--inherit-environ` issue and it...
> @cappadokes, please put the `--track-energy` addition in a separate PR. We will merge the fix for `--inherit-environ` first. @ericsnowcurrently done. `--inherit-environ` is [here](https://github.com/python/pyperformance/pull/188) now.
Update: I have found the problem to be line 256 in pyperformance/_benchmark.py. The line is part of the `_resolve_restricted_opts` function: ```python resolved.append(opt.partition('=')[-2]) ``` Replacing -2 with -1 resolves the issue....