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

Function call_jam_function

v2/util/__init__.py:73–80  ·  view source on GitHub ↗
(name, *args)

Source from the content-addressed store, hash-verified

71
72
73def call_jam_function(name, *args):
74
75 m = _extract_jamfile_and_rule.match(name)
76 if m:
77 args = ("call-in-module", m.group(1), m.group(2)) + args
78 return bjam.call(*args)
79 else:
80 return bjam.call(*((name,) + args))
81
82__value_id = 0
83__python_to_jam = {}

Callers 1

callFunction · 0.90

Calls 1

matchMethod · 0.80

Tested by

no test coverage detected