Thomas Kemmer

Results 158 comments of Thomas Kemmer

@jodal: Thanks for clarifying. I think the question here is whether `get_config_dir()` _should_ even try to create the directory, or if the user or for example the extension's Debian package...

+1 for making a clever educated guess what I was up to with Mopidy-Podcast and `get_config_dir()` ;-) I don't have a strong opinion about raising an error or returning `None`,...

After briefly studying the pygtk docs, I guess this is what I want instead of using `threading.Timer` in Mopidy-Podcast for periodically updating configured feeds ;-) Since I haven't heard of...

@jodal: I don't know. I never really got the motivation behind the `source` attribute, and I don't see any use case for that in Mopidy-Mobile. At least none that can't...

And I think this kind of "branding" stuff is generally a bad idea, because as a client developer I don't want to have to keep up with all the new...

@adamcik to the rescue again ;-) Having a call for retrieving meta information for the backend(s) given a set of URIs might indeed be useful for MoMo too. Maybe we...

I agree with @jcass77 that getting more "meta information" about a model's backend would be desirable. Another use case I can think of would be dissecting search results from multiple...

Note that chaining descriptors, i.e. using descriptors with `@classmethod` was deprecated in [Python 3.11](https://docs.python.org/3/whatsnew/3.11.html#language-builtins) and removed in [Python 3.13](https://docs.python.org/3.13/library/functions.html#classmethod). So, eventually, a seperate `@cachedclassmethod` decorator might make sense?