mirror of
https://github.com/boostorg/build.git
synced 2026-02-19 14:22:10 +00:00
Internal Boost Build testing system cleanup - removed an unused BoostBuild.Tester.mul() member function.
[SVN r79826]
This commit is contained in:
@@ -768,25 +768,6 @@ class Tester(TestCmd.TestCmd):
|
||||
print("Set environmental variable 'DO_DIFF' to examine the "
|
||||
"difference.")
|
||||
|
||||
# Helpers.
|
||||
def mul(self, *arguments):
|
||||
if len(arguments) == 0:
|
||||
return None
|
||||
|
||||
here = arguments[0]
|
||||
if type(here) == type(""):
|
||||
here = [here]
|
||||
|
||||
if len(arguments) > 1:
|
||||
there = apply(self.mul, arguments[1:])
|
||||
result = []
|
||||
for i in here:
|
||||
for j in there:
|
||||
result.append(i + j)
|
||||
return result
|
||||
|
||||
return here
|
||||
|
||||
# Internal methods.
|
||||
def adjust_lib_name(self, name):
|
||||
global lib_prefix
|
||||
|
||||
Reference in New Issue
Block a user