MCPcopy Index your code
hub / github.com/pymupdf/PyMuPDF / description_ml

Method description_ml

wdev.py:191–208  ·  view source on GitHub ↗

Return multiline description of `self`.

( self, indent='')

Source from the content-addressed store, hash-verified

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()

Callers 3

handle_argvMethod · 0.95
windows_vs_multipleFunction · 0.95
build_mupdf_windowsFunction · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected