Thilo von Neumann

Results 124 comments of Thilo von Neumann

I just noticed that doing it like shown above: ```python class A: @ex.capture @classmethod def config(cls): # ... ``` does not work, because the classmethod is not bound to any...

The thing with decorating the classmethod directly is very complicated, especially when dealing with subclasses. What should be the value of `classname` for this example? ```python class A: @ex.config @classmethod...

@kirk86 I'm not sure how useful this is anymore. I solved my use case now differently. Do you need this feature?

I agree, an update on PyPi would be a good idea. Many issues have been fixed since the last version (which is already over a year old). But before publishing...

I'm talking about the hanging tests of the `QueuedMongoObserver`. The `QueueObserver`, introduced in #471, contains a `while True` loop which just just hangs the whole script forever when the called...

Found a new issue with Python 3.10 and mongomock: mongomock/mongomock#758. So, we have to wait until this issue is fixed in mongomock before we can fix the testcases for Python...

@lucasdavid right, I didn't even get an answer to the question when the next release will be published. I actually already started preparing a release by simply deactivating the pymongo...

I just published the 0.8.3 release on GitHub (and I hope that I didn't forget anything). @Qwlouse, can you push the release to PyPI?

I think your problem is different from the one answered above. The above question is: How to find the name and ID of the current run? If I understood you...

We might want to think about the exact syntax for this. Some cases are obvious, but some other might confuse the users, like discussed in the rejected PEP 258 (https://www.python.org/dev/peps/pep-0258/#attribute-docstrings)....