MCPcopy Create free account
hub / github.com/boostorg/build / stdout

Method stdout

test/TestCmd.py:443–458  ·  view source on GitHub ↗

Returns the standard output from the specified run number. If there is no specified run number, then returns the standard output of the last run. If the run number is less than zero, then returns the standard output from that many runs back from the current run.

(self, run=None)

Source from the content-addressed store, hash-verified

441 return self._stderr[run]
442
443 def stdout(self, run=None):
444 """
445 Returns the standard output from the specified run number. If there
446 is no specified run number, then returns the standard output of the
447 last run. If the run number is less than zero, then returns the
448 standard output from that many runs back from the current run.
449
450 """
451 if not run:
452 run = len(self._stdout)
453 elif run < 0:
454 run = len(self._stdout) + run
455 run -= 1
456 if run < 0:
457 return ''
458 return self._stdout[run]
459
460 def subdir(self, *subdirs):
461 """

Callers 15

_getExternalValuesFunction · 0.80
_getJamVersionInfoFunction · 0.80
test_update_file_linkFunction · 0.80
test_basicFunction · 0.80
build_dir.pyFile · 0.80
default_build.pyFile · 0.80
notfile.pyFile · 0.80
library_order.pyFile · 0.80
_getExternalEnvFunction · 0.80
inherit_toolset.pyFile · 0.80
searched_lib.pyFile · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected