Thomas Güttler
Thomas Güttler
I read this in the README: > When running in an hypervisor with SSD disks, detection is not accurate. I guess you are trying to detect if there are SSD...
If I run one test via PyCharm I see the migrations output twice: ``` /home/guettli/projects/lala-env/bin/python /snap/pycharm-professional/230/plugins/python/helpers/pycharm/_jb_pytest_runner.py --target test_models.py::test_address_is_complete Testing started at 11:42 ... Launching pytest with arguments test_models.py::test_address_is_complete in /home/guettli/projects/lala-env/src/lala/lala/tests...
Please elaborate the docs, and tell us how to install if you use ms-windows: https://python-gtk-3-tutorial.readthedocs.io/en/latest/install.html Thank you very much.
It would be nice if you could extend the docs. I got it installed, but what's next? An introduction to what I just installed, and how to use it would...
Unfortunately `event.stdlib` is True in my case, although the code is not from stdlib. Here is a simple way to reproduce it: ``` python3 -m venv hunter-env cd hunter-env ....
I would like to call hunter-trace like this: hunter-trace my-script.py args-for-my-script Is there a reason why this is not implemented up to now?
Out of curiosity I asked if there is a language neutral trace format: https://stackoverflow.com/questions/54330099/language-neutral-trace-format There are interesting answers. It would be very nice, if python-hunter could export a format which...
I my trace output I see lines like this: [...]/src/foo/foo/Foo.py:1048 call => touch(self=) Unfortunately the memory address does not tell me much. My object has `__repr__()` implemented. It would be...
It would be very nice, if I could ignore all lines which are executing during importing a module. Unfortunately I think it is hard to tell if a line gets...
In my virtualenv my code is installed editable in $VENV/src and framework code (django) is installed in $VENV/lib. I tried to find a way to include/exclude lines according to the...