﻿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
3733	django.utils.text.smart_split() does not properly handle unmatched quotes	ivan.chelubeev@…	Adrian Holovaty	"django.utils.text.smart_split() does not properly handle unmatched quotes.

smart_split() eats up last character of the word that begins with an unmatched quote and that quote character itself:

{{{
>> text.smart_split(""one 'two three"")
['one', 'tw', 'three']
}}}

Of course unmatched quote in a tag argument string most probably is an error. But result produced by smart_split() ({{{""'two"" -> ""tw""}}}) doesn't leave chances to notice or detect this error until actual use at render time (and may be even further).

Also smart_split()'s doctest still produce syntax error (in spite of #3035)."		closed	Core (Other)	dev		fixed		serg@…	Ready for checkin	1	0	0	0	0	0
