Nils Vu
Nils Vu
Records printed to the console could possibly get mixed up when logging from different operation queues, in particular for asynchronous calls. This should be investigated at first, but can be...
With the prepended slash, minimatch will never actually return an object with `negate: true`, so it's impossible to ignore files in `clean` operations. Please review this change and consider implications...
Exceptions from subprocesses raised by 'multiprocessing' don't include a traceback, so rich doesn't currently print them. They contain important information though, so this PR enables printing the exception without the...
I think it could be quite useful to add a "fold code block" feature. We could annotate a code block as "folded" in Doxygen somehow, and then hide it behind...
I took the liberty to duplicate @MarkDunne 's issue https://github.com/jupyter/notebook/issues/2023 over, since it appears the problem lies within the IPython kernel and not the Jupyter notebook. To reproduce, simply note...
Installing `charm4py` in a new environment fails on my macOS 12.5 machine with Python 3.9.13: ```sh $ python3 -m pip install charm4py Collecting charm4py Using cached charm4py-1.0.tar.gz (3.4 MB) Preparing...
This is a proposal to support CMake targets for linking Charm++, as opposed to using the `charmc` compiler wrapper. In our numerical relativity code SpECTRE (https://github.com/sxs-collaboration/spectre) that is based on...
Doxygen v1.9.5 added some webkit scrollbar styling that conflicts with the doxygen-awesome style: https://github.com/doxygen/doxygen/commit/260f2fadf8b780d824cba2e490d119e759ada101 If it's unclear what's broken I'm happy to add some screenshots, but I think it's quite...
The Catch2 documentation states that any custom stream operators (or equality operators) must be declared before including Catch2 (https://github.com/catchorg/Catch2/blob/devel/docs/tostring.md#top). My question is how to accomplish this best while following other...