##// END OF EJS Templates
Merging everyones bug fixes into trunk....
Merging everyones bug fixes into trunk. This is a host of bug fixes done by in various branches that fix IPython on Python 2.4.

File last commit:

r1333:933b1e98
r1723:df49db56 merge
Show More
test_tools_utils.txt
17 lines | 542 B | text/plain | TextLexer
=========================================
Doctests for the ``tools.utils`` module
=========================================
The way doctest loads these, the entire document is applied as a single test
rather than multiple individual ones, unfortunately::
>>> from IPython.tools import utils
# Some other tests for utils
>>> utils.marquee('Testing marquee')
'****************************** Testing marquee ******************************'
>>> utils.marquee('Another test',30,'.')
'........ Another test ........'