Jim Kring

Results 125 comments of Jim Kring

I was just testing and ran into this same issue, I think. I'm not doing anything fancy, just trying to set the initial state of when loaded. I expected that...

@kayhayen @Maxwell175 Hi All. Thanks for doing a little work on this issue. I did a test of trying to just build a very simple module (not stand-alone). Here's the...

Thanks @kayhayen. Do I need to do anything special to test or will nuitka detect nogil now? I did a quick test of a module build (not stand-alone) and I...

@kayhayen and here's an error when trying to build stand-alone: ```shellsession Step 9/10 : RUN python -m nuitka --experimental=nogil --standalone main.py ---> Running in af4f6764cfc9 Nuitka-Options:INFO: Used command line options:...

OK, Thanks @kayhayen. There’s not a big hurry on this.

Yes! I’d be happy to learn how to contribute to the use case docs. I’ll see if I can figure it out, and please let me know if you have...

Thanks @danirus! That's a very helpful pointer and should get me going in the right direction.

One more question -- just a thought? Is it possible to get the `app_label` and `model` names programmatically from the `Story` class that's passed in, so that this function could...

@danirus I was thinking that this would be a great use case to document: https://github.com/danirus/django-comments-xtd/issues/197

@danirus Update: I was able to generize this a little by getting the model name (in lowercase) programmatically using: `sender.__name__.lower()` ``` @receiver(post_delete, sender=Idea) def delete_comments(sender, instance, **kwargs): ct = ContentType.objects.get(app_label="myapp",...