﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
27173	Permit import statements to be longer than 80 characters	Chris Jerdonek	nobody	"Currently, Django's use of [https://github.com/timothycrosley/isort isort] converts lines like this (81 characters):

{{{#!python
from django.db.backends.mysql.base import DatabaseWrapper as MySQLDatabaseWrapper
}}}

to this:

{{{#!python
from django.db.backends.mysql.base import \
    DatabaseWrapper as MySQLDatabaseWrapper
}}}

This looks uglier and is less convenient when searching (e.g. for occurrences of DatabaseWrapper in this example).  It would be nice to configure isort to conform to [https://docs.djangoproject.com/en/dev/internals/contributing/writing-code/coding-style/#python-style Django's coding style] of permitting up to 119 characters.

isort [https://github.com/timothycrosley/isort#configuring-isort does seem to have] a `line_length` setting, which would make this ticket easy to resolve.
"	Cleanup/optimization	closed	Core (Other)	1.10	Normal	wontfix			Unreviewed	0	0	0	0	0	0
