Rich Rauenzahn

Results 39 issues of Rich Rauenzahn

I wonder if you might want to document this alternative when using values()? Even though this isn't really django-polymorphic specific, I think you're the one adding in the ctype. In...

I'll start with I don't know WHY the Q object has a _thread.lock object in it ... but ... I think this is caused by this code, and the deepcopy...

When incorporating this into a Django 1.9 project, I get the following error: django.core.exceptions.AppRegistryNotReady: Apps aren't loaded yet. ``` Traceback (most recent call last): File "./manage.py", line 14, in execute_from_command_line(sys.argv)...

I have an odd problem which is that after generating my report, a lot of my sub directories end up showing up as top level directories in the report. In...

class Connection(BaseConnection): def **init**(self, _args, *_kwargs): cache = kwargs.pop('cache', None) timeout = kwargs.pop('cache', None)

I can't reproduce this with the CLI. When adding labels= to my containers.run() api call, I get leftover garbage: ``` CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES 9f6eaa552464 5782210c54f7...

I've found an issue with renaming a field that has an existing constraint. I think this is because the DROP/ADD of the constraint due to the rename is done before...

It would be nice to support CREATE UNIQUE INDEX for the use case discussed in this stack exchange question: https://stackoverflow.com/questions/33307892/django-unique-together-with-nullable-foreignkey i.e., special indexes like: ``` CREATE UNIQUE INDEX model_b_2col_uni_idx ON...