assert v.to_python(u'value (comment)') == [(u'value', u'comment')]
assert v.to_python(u'value1 (comment); value2') == [(u'value1', u'comment'), (u'value2', None)]
assert v.to_python(u'value1 (comment1); value2; value3 (comment3)') == [(u'value1', u'comment1'), (u'value2', None), ('value3', 'comment3')]
- assert v.to_python(u'value1 (comment1); value2 (test (not easy))') == [(u'value1', u'comment1'), (u'value2', u'test (not easy)')]
+ assert v.to_python(u'value1 (comment1); [[link (linkcomment)]] (not easy)') == [(u'value1', u'comment1'), (u'[[link (linkcomment)]]', u'not easy')]
def test_UrlNeinNone():