Opened 14 years ago

Closed 14 years ago

#12391 closed (wontfix)

Not used import in django.db

Reported by: vorushin Owned by: nobody
Component: Database layer (models, ORM) Version: dev
Severity: Keywords:
Cc: Triage Stage: Unreviewed
Has patch: yes Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

I found in django/db/init.py import that is not used there at the moment:

from django.utils.functional import curry

I applied removed this sting and ran django tests - everything worked without errors. Patch, removing this unused import, is attached to this ticket.

Attachments (1)

patch.diff (487 bytes ) - added by vorushin 14 years ago.

Download all attachments as: .zip

Change History (2)

by vorushin, 14 years ago

Attachment: patch.diff added

comment:1 by Jacob, 14 years ago

Resolution: wontfix
Status: newclosed

Generally, cleanup patches like this aren't accepted because they just introduce code churn. We'll fix this the next time someone's in that file; it's not worth keeping a ticket around for.

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