( self, text )
| 62 | return self |
| 63 | |
| 64 | def paragraph( self, text ) : |
| 65 | |
| 66 | self.__blankLine() |
| 67 | lines = IECore.StringUtil.wrap( str( text ).rstrip(), self.__wrapWidth ).split( "\n" ) |
| 68 | for line in lines : |
| 69 | self.__indent() |
| 70 | self.__output( line + "\n" ) |
| 71 | |
| 72 | def indent( self ) : |
| 73 |
nothing calls this directly
no test coverage detected