( parm, formatter )
| 129 | formatter.unindent() |
| 130 | |
| 131 | def __formatCompoundParameter( parm, formatter ) : |
| 132 | |
| 133 | __formatParameter( parm, formatter ) |
| 134 | formatter.heading( "Members" ) |
| 135 | formatter.indent() |
| 136 | for p in parm.values() : |
| 137 | formatParameterHelp( p, formatter ) |
| 138 | formatter.unindent() |
| 139 | |
| 140 | def __formatParameter( parm, formatter ) : |
| 141 |
nothing calls this directly
no test coverage detected