Return multiline description of `self`.
( self, indent='')
| 189 | raise Exception( f'Unable to find Visual Studio {year=} {grade=} {version=} {cpu=} {directory=}') from e |
| 190 | |
| 191 | def description_ml( self, indent=''): |
| 192 | ''' |
| 193 | Return multiline description of `self`. |
| 194 | ''' |
| 195 | ret = textwrap.dedent(f''' |
| 196 | year: {self.year} |
| 197 | grade: {self.grade} |
| 198 | version: {self.version} |
| 199 | directory: {self.directory} |
| 200 | vcvars: {self.vcvars} |
| 201 | cl: {self.cl} |
| 202 | link: {self.link} |
| 203 | csc: {self.csc} |
| 204 | msbuild: {self.msbuild} |
| 205 | devenv: {self.devenv} |
| 206 | cpu: {self.cpu} |
| 207 | ''') |
| 208 | return textwrap.indent( ret, indent) |
| 209 | |
| 210 | def __repr__( self): |
| 211 | items = list() |
no outgoing calls
no test coverage detected