summaryrefslogtreecommitdiff
path: root/tests/richstring_test.py
AgeCommit message (Collapse)Author
2013-08-13Use six.text_type in richstring_testpython2Martin Vilcans
2013-08-13Use unittest2 if available but don't require it.Martin Vilcans
The features of unittest2 are already in Python >=2.7.
2013-08-13Removed dependency on unittest2Martin Vilcans
I think I don't use its features and it doesn't exist under that name in Python 3.
2012-07-08PEP8 compliance.Martin Vilcans
Especially get rid of the "E128 continuation line under-indented for visual indent" which is new in later versions of the pep8 program.
2011-12-16Possible to escape stars (\*) so they aren't parsed as emphasis.Martin Vilcans
2011-12-16Fixed some problems with old RichString tests.Martin Vilcans
Sometimes the segments of the RichString objects became RichString objects instead of Segment. That's what you get for dynamic typing I guess...
2011-11-28Added licensing information (MIT license)Martin Vilcans
2011-11-26Some code style changesMartin Vilcans
2011-11-22Fix incorrectly parsing when mixing italic and bold. Thx, Stu!Martin Vilcans
2011-11-10Made RichString non-hierarchical (simpler).Martin Vilcans
Also: FDX output should have correct line breaks now.
2011-09-26Use rich strings for all content.Martin Vilcans
2011-09-21PEP8 compliance.Martin Vilcans
2011-09-21Parse bold, italic and underline (no output yet).Martin Vilcans