django icon indicating copy to clipboard operation
django copied to clipboard

The Web framework for perfectionists with deadlines.

Results 294 django issues
Sort by recently updated
recently updated
newest added

Hi Django Team, I am picking up where @jdufresne [[PR](https://github.com/django/django/pull/13763)] left off on ticket [#28821](https://code.djangoproject.com/ticket/28821). My recent commits introduce the initial steps towards enabling `QuerySet.bulk_create` to support multi-table inheritance. This...

[ticket_34806](https://code.djangoproject.com/ticket/34806) I have added a MemoryError handling to ensure that it doesn't crash and logged the issue to let the user know.

[Read the guidelines in HTML](https://django-docs-preview.netlify.app/internals/contributing/writing-documentation#accessibility-in-documentation). Builds upon #17338. Please ignore the new content in `/writing-code/` and review it in #17338 – only the changes in [writing-documentation.txt](https://github.com/django/django/compare/main...thibaudcolas:django:accessibility-documentation-guidelines?expand=1#diff-02de6414e64dc44e54a76d70d9f1f0ccec53c6b4ccf24a6b6c25428472b7dcc2) are specific to this...

My attempt at a patch to allow GIS tests to pass with Oracle 23c. The change to `LayerMapping` is due to Oracle 23c changing "MULTI" geometries containing one value to...

Ticket [35090](https://code.djangoproject.com/ticket/35090)

Follow up to ticket-34983 and #17498. On deprecating `django.utils.itercompat.is_iterable()` in favour of `isinstance(…, collections.abc.Iterable)`, it was noticed that we have other checks using try-`iter(…)`-except or `hasattr(…, "__iter__")`. Cases of try-`iter(…)`-except:...

ticket-34233 Now that we're on Python 3.10+ we can use the `strict` flag for the `zip()` builtin. Using the `strict=True` can help avoid any potential bugs as a result of...

Hi @smithdc1, @carltongibson, As discussed, created a PR which will tackle the project from the other end. Started with changing `request.META` to `request.meta` in the first commit. (changed `request.GET` to...