I doubt we can really do anything about this, but may as well have an issue filed in case anyone wants to try and fix it upstream:
>>> import operator
>>> import numpy as np
>>> operator.concat(np.arange(3), np.arange(3))
array([0, 2, 4])
Here, operator.concat is just performing addition.