(self)
| 722 | |
| 723 | |
| 724 | def test_fill(self): |
| 725 | # Test the fill() method |
| 726 | |
| 727 | expect = '''\ |
| 728 | This paragraph will be filled, first |
| 729 | without any indentation, and then with |
| 730 | some (including a hanging indent).''' |
| 731 | |
| 732 | result = fill(self.text, 40) |
| 733 | self.check(result, expect) |
| 734 | |
| 735 | |
| 736 | def test_initial_indent(self): |