module documentation

Undocumented

Class MSVCCompiler Undocumented
Function _merge Concatenate two environment paths avoiding repeats.
def _merge(old, new): (source)

Concatenate two environment paths avoiding repeats.

Here old is the environment string before the base class initialize function is called and new is the string after the call. The new string will be a fixed string if it is not obtained from the current environment, or the same as the old string if obtained from the same environment. The aim here is not to append the new string if it is already contained in the old string so as to limit the growth of the environment string.

Parameters
old:stringPrevious environment string.
new:stringNew environment string.
Returns
stringret - Updated environment string.