Opened 15 years ago

Closed 15 years ago

#10001 closed (duplicate)

smart_split should be more versatile

Reported by: Paul O’Shannessy Owned by: nobody
Component: Core (Other) 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

smart_split should accept input such that the following is true:

>>> list(smart_split(r"A variable='value' should work."))
[u'A', u"variable='value'" u'should' u'work']
>>> list(smart_split(r"A variable='value with spaces' should also work."))
[u'A', u"variable='value with spaces'", u'should', u'also', u'work.']

With this, multiple word strings can be passed to variables in a template.

Attachments (1)

ticket10001-0.1.patch (2.5 KB ) - added by Paul O’Shannessy 15 years ago.
Patch v0.1

Download all attachments as: .zip

Change History (2)

by Paul O’Shannessy, 15 years ago

Attachment: ticket10001-0.1.patch added

Patch v0.1

comment:1 by dc, 15 years ago

Resolution: duplicate
Status: newclosed

Duplicate of #6271

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