Opened 12 years ago

Closed 12 years ago

Last modified 12 years ago

#18791 closed Cleanup/optimization (fixed)

[py3] Double import of six in django.forms.widgets

Reported by: Alexey Boriskin Owned by: nobody
Component: Python 3 Version: dev
Severity: Normal Keywords:
Cc: Triage Stage: Unreviewed
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: yes UI/UX: no

Description

There is a double import in django.forms.widgets:

from django.utils import six
from django.utils import datetime_safe, formats
from django.utils import six

Change History (4)

comment:2 by Alexey Boriskin <sun.void@…>, 12 years ago

Resolution: fixed
Status: newclosed

In [abc4038b0b47e41bb2d75a37944bbb1699806922]:

Fixed #18791: [py3] Double import of six in django.forms.widgets

comment:3 by Andrew Godwin <andrew@…>, 12 years ago

In [1758bf76e4a108ef65a6d5d30196b005e4b302e7]:

Merge pull request #287 from uruz/ticket18791

Fixed #18791: [py3] Double import of six in django.forms.widgets

comment:4 by Aymeric Augustin <aymeric.augustin@…>, 12 years ago

In [5301a9d7b1c2151e9b0496c7e244e8ceb6d273c1]:

[py3] Removed duplicate imports.

Fixed #18837. Refs #18791.

Note: See TracTickets for help on using tickets.
Back to Top