MCPcopy
hub / github.com/KhronosGroup/Vulkan-Docs / write

Function write

scripts/reflib.py:27–31  ·  view source on GitHub ↗
(*args, **kwargs )

Source from the content-addressed store, hash-verified

25 return s.replace('\\\'', '\'')
26
27def write(*args, **kwargs ):
28 file = kwargs.pop('file',sys.stdout)
29 end = kwargs.pop('end','\n')
30 file.write(' '.join(str(arg) for arg in args))
31 file.write(end)
32
33def setLogSourcefile(filename):
34 """Metadata which may be printed (if not None) for diagnostic messages"""

Callers 2

beginFileMethod · 0.50
endFileMethod · 0.50

Calls 1

writeMethod · 0.45

Tested by

no test coverage detected