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

Function call_jam_function

src/util/__init__.py:215–222  ·  view source on GitHub ↗
(name, *args)

Source from the content-addressed store, hash-verified

213
214
215def call_jam_function(name, *args):
216
217 m = _extract_jamfile_and_rule.match(name)
218 if m:
219 args = ("call-in-module", m.group(1), m.group(2)) + args
220 return bjam.call(*args)
221 else:
222 return bjam.call(*((name,) + args))
223
224__value_id = 0
225__python_to_jam = {}

Callers 1

callFunction · 0.90

Calls 1

matchMethod · 0.80

Tested by

no test coverage detected