Jacob Zhong
Jacob Zhong
Oh cool, I didn't know `Enter` can navigate for me. And yeah, the problem for the icon is that it will have white border in dark theme
I have created several crates based on `num`, namely [`num-prime`](https://crates.io/crates/num-prime), [`num-modular`](https://crates.io/crates/num-modular) and [`num-irrational`](https://crates.io/crates/num-irrational). Although they are not heavily tested, most major functionalities are working. If you're interested, you can browse...
:) Thanks for your interest. I guess you didn't notice these crates because they are not directly dependent on `num`, but on sub crates like `num-integer`, etc. I'm still actively...
I used [easy_profiler](https://github.com/yse/easy_profiler) in C++, and it can capture the performance in multi-threaded environment. Maybe this could be a reference?
Thanks for your work! I tried using `--tool=callgrind` flag but unfortunately it seems that callgrind doesn't support XML output: ``` error: invalid valgrind usage: valgrind: Bad option: --xml=yes valgrind: Callgrind...
Quote from the Python docs: > The category argument is a warning category (see below) or NULL; the message argument is a UTF-8 encoded string. stack_level is a positive number...
Thanks for pointing that out! Maybe we can add a section in the GIL page to organize possible ways to acquire the `py` by referring to here? And the description...
The first page I looked at is the [GIL page](https://pyo3.rs/v0.15.1/types.html) because I know the `Python` is related to the GIL lock. This page is also where the `Python` object is...
And maybe the title of that page can be changed to **GIL, mutability and object representations**? I was expecting to see the docs of builtin Python types (`PyLong`, `PyDict`, etc)...
@weavage Thanks for the solution! I guess it would work for me! Nevertheless I still hope that there's an option to enable this is the segment settings :)